Re: RFR(jdk10/jaxp) 8163121: BCEL: update to the latest 6.0 release

2017-08-09 Thread huizhe wang
On 8/9/2017 6:30 AM, Daniel Fuchs wrote: Hi Joe, This not an easy patch to review ;-) Indeed, took several minutes just to copy the webrevs :-) Thanks for explaining how you arrived at the final result. The method you used as described below seems right. I haven't clicked through all the

Re: RFR: JDK-8185994: Fix a11y and HTML issues in the java.base/java.io and java.base/java.nio packages

2017-08-09 Thread Stuart Marks
On 8/9/17 5:14 PM, Jonathan Gibbons wrote: Please review this proposed change to address accessibility and HTML issues in the java.base java.io and java.nio[.*] packages. In general, the changes consist of * update tables to add scope=row|col as appropriate. In some cases, slightly more

Re: RFR: JDK-8186052: Fix a11y and HTML issues in the java.base/java.lang[.*] packages

2017-08-09 Thread Jonathan Gibbons
On 08/09/2017 06:28 PM, Stuart Marks wrote: On 8/9/17 5:11 PM, Jonathan Gibbons wrote: Please review this proposed change to address accessibility and HTML issues in the java.base java.lang[.*] packages. In general, the changes consist of * update tables to add scope=row|col as appropriate.

Re: RFR: JDK-8186052: Fix a11y and HTML issues in the java.base/java.lang[.*] packages

2017-08-09 Thread Stuart Marks
On 8/9/17 5:11 PM, Jonathan Gibbons wrote: Please review this proposed change to address accessibility and HTML issues in the java.base java.lang[.*] packages. In general, the changes consist of * update tables to add scope=row|col as appropriate. In some cases, slightly more surgery was

RFR: JDK-8185994: Fix a11y and HTML issues in the java.base/java.io and java.base/java.nio packages

2017-08-09 Thread Jonathan Gibbons
Please review this proposed change to address accessibility and HTML issues in the java.base java.io and java.nio[.*] packages. In general, the changes consist of * update tables to add scope=row|col as appropriate. In some cases, slightly more surgery was needed on the table * fix issues

RFR: JDK-8186052: Fix a11y and HTML issues in the java.base/java.lang[.*] packages

2017-08-09 Thread Jonathan Gibbons
Please review this proposed change to address accessibility and HTML issues in the java.base java.lang[.*] packages. In general, the changes consist of * update tables to add scope=row|col as appropriate. In some cases, slightly more surgery was needed on the table * fix issues reported by

Re: [10] RFR 8134512 : provide Alpha-Numeric (logical) Comparator

2017-08-09 Thread Stuart Marks
On 8/1/17 11:56 PM, Ivan Gerasimov wrote: I've tried to go one step further and created even more abstract comparator: It uses a supplied predicate to decompose the input sequences into odd/even subsequences (e.g. alpha/numeric) and then uses two separate comparator to compare them.

JDK 9 jar tool issues - "isolated nested class" and creation of a corrupt jar

2017-08-09 Thread Tom Hood
Hi, I'm having a couple issues with the jar tool. Version: JDK 9 build 181 SPARC64 Since I'm typing this in, beware of typos. I cannot copy and paste output as my Solaris 10 box isn't permitted to access the internet. (1) isolated nested classes trying to create a multi-release jar In my test

Re: Greek characters in java.lang.String

2017-08-09 Thread Roger Riggs
+1, I conjecture that originally, the fonts didn't consistently include Greek. Roger On 8/9/2017 5:12 PM, Naoto Sato wrote: +1 Naoto On 8/9/17 1:54 PM, Jonathan Gibbons wrote: The method String.toLowerCase(Locale) contains some Greek letters in its doc comment. But the characters are

Re: Greek characters in java.lang.String

2017-08-09 Thread Naoto Sato
+1 Naoto On 8/9/17 1:54 PM, Jonathan Gibbons wrote: The method String.toLowerCase(Locale) contains some Greek letters in its doc comment. But the characters are presented with images, instead of native Unicode characters. See

Greek characters in java.lang.String

2017-08-09 Thread Jonathan Gibbons
The method String.toLowerCase(Locale) contains some Greek letters in its doc comment. But the characters are presented with images, instead of native Unicode characters. See http://download.java.net/java/jdk9/docs/api/java/lang/String.html#toLowerCase-java.util.Locale- Has the time come to

Re: RFR(jdk10/jaxp) 8163121: BCEL: update to the latest 6.0 release

2017-08-09 Thread Daniel Fuchs
Hi Joe, This not an easy patch to review ;-) Thanks for explaining how you arrived at the final result. The method you used as described below seems right. I haven't clicked through all the files, but instead I had a look at all the JIRA issues revealed by: hg log -k

Patch a DLL in JDK?

2017-08-09 Thread Weijun Wang
It's possible to patch classes with --patch-module but how do I shadow a DLL? I don't want to overwrite the existing one. I am talking about bin/w2k_lsa_auth.dll, which belongs to java.security.jgss. Thanks Max