hg: jdk8/tl/jdk: 8009636: JARSigner including TimeStamp PolicyID (TSAPolicyID) as defined in RFC3161

2013-04-19 Thread weijun . wang
Changeset: 778b16225d85 Author:weijun Date: 2013-04-19 15:41 +0800 URL: http://hg.openjdk.java.net/jdk8/tl/jdk/rev/778b16225d85 8009636: JARSigner including TimeStamp PolicyID (TSAPolicyID) as defined in RFC3161 Reviewed-by: mullan ! src/share/classes/com/sun/jarsigner/ContentSign

hg: jdk8/tl/jdk: 8010505: HTTP DIGEST implementation incorrectly quotes header values, fails auth

2013-04-19 Thread chris . hegarty
Changeset: 90b03f9a2e77 Author:jzavgren Date: 2013-04-17 11:47 -0400 URL: http://hg.openjdk.java.net/jdk8/tl/jdk/rev/90b03f9a2e77 8010505: HTTP DIGEST implementation incorrectly quotes header values, fails auth Summary: The extraneous quotes were removed. Reviewed-by: chegar ! src/

Re: SocketImplFactory

2013-04-19 Thread Alan Bateman
On 18/04/2013 22:31, Salter, Thomas A wrote: Are there any real-life examples of using SocketImplFactory? I was hoping to find a way to redirect selected sockets, by IP address, to a different implementation of sockets that could take advantage of a high-speed connection. For this to work, I'

Re: RFR-JDK8012108

2013-04-19 Thread Chris Hegarty
On 18/04/2013 22:11, Dmitry Samersoff wrote: John, I see bad realloc pattern here. Could you fix it as well? Yes, please. Otherwise the changes look fine. -Chris. e.g. 93 adapterInfo = (IP_ADAPTER_ADDRESSES *) realloc (adapterInfo, len); -Dmitry On 2013-04-19 00:56, John Zavgren wro

hg: jdk8/tl/jaxp: 8005954: JAXP Plugability Layer should use java.util.ServiceLoader

2013-04-19 Thread daniel . fuchs
Changeset: fad6560cb32a Author:dfuchs Date: 2013-04-17 15:23 +0200 URL: http://hg.openjdk.java.net/jdk8/tl/jaxp/rev/fad6560cb32a 8005954: JAXP Plugability Layer should use java.util.ServiceLoader Summary: This fix replaces manual processing of files under META-INF/services in JAXP

hg: jdk8/tl/jaxp: 8010495: Update JAXP NetBeans project - add support for generating javadoc

2013-04-19 Thread daniel . fuchs
Changeset: 1c2079d11a79 Author:dfuchs Date: 2013-04-19 17:22 +0200 URL: http://hg.openjdk.java.net/jdk8/tl/jaxp/rev/1c2079d11a79 8010495: Update JAXP NetBeans project - add support for generating javadoc Summary: Make it possible to use NetBeans to edit the jaxp sources and to gene

hg: jdk8/tl/langtools: 8012661: remove langtools Makefile-classic

2013-04-19 Thread jonathan . gibbons
Changeset: d59730bd3162 Author:jjg Date: 2013-04-19 11:10 -0700 URL: http://hg.openjdk.java.net/jdk8/tl/langtools/rev/d59730bd3162 8012661: remove langtools Makefile-classic Reviewed-by: erikj, tbell - make/Makefile-classic

hg: jdk8/tl/jdk: 8008670: Initial java.util.stream putback -- internal API classes

2013-04-19 Thread mike . duigou
Changeset: 6139f8fb0137 Author:mduigou Date: 2013-04-16 22:50 -0400 URL: http://hg.openjdk.java.net/jdk8/tl/jdk/rev/6139f8fb0137 8008670: Initial java.util.stream putback -- internal API classes Reviewed-by: mduigou, dholmes Contributed-by: Brian Goetz , Doug Lea , Paul Sandoz +

RE: SocketImplFactory

2013-04-19 Thread Salter, Thomas A
I expected that to be the case when the references on the Oracle web site talked about the changes from 1.0 to 1.1. Is there any talk, rumor or hint that Sockets might one day be extendable in same sort of way that file systems are with the Java 7 NIO features? Tom -Original Message-

Re: RFR-JDK8012108

2013-04-19 Thread John Zavgren
Greetings: I fixed the bad realloc pattern. Please let me know what you think. http://cr.openjdk.java.net/~jzavgren/8012108/webrev.02/ Thanks! John Z - Original Message - From: chris.hega...@oracle.com To: net-dev@openjdk.java.net, john.zavg...@oracle.com Cc: dmitry.samers...@oracle.com

Re: RFR-JDK8012108

2013-04-19 Thread Kurchi Subhra Hazra
Hi John, Minor nit, the formatting around line 101 looks off, How about something like this: if { // remains same } else { adapterInfo = adapterInfoTemp; } - Kurchi On 4/19/13 2:33 PM, John Zavgren wrote: Greetings: I fixed the bad realloc pattern. Please let me know what you think

hg: jdk8/tl/jdk: 8010939: Deadlock in LogManager

2013-04-19 Thread mandy . chung
Changeset: e8f1dc6d0c0c Author:jgish Date: 2013-04-19 16:50 -0700 URL: http://hg.openjdk.java.net/jdk8/tl/jdk/rev/e8f1dc6d0c0c 8010939: Deadlock in LogManager Summary: re-order locks to avoid deadlock Reviewed-by: mchung ! src/share/classes/java/util/logging/LogManager.java + test/

Re: SocketImplFactory

2013-04-19 Thread Chris Hegarty
On 04/19/2013 09:24 PM, Salter, Thomas A wrote: I expected that to be the case when the references on the Oracle web site talked about the changes from 1.0 to 1.1. Is there any talk, rumor or hint that Sockets might one day be extendable in same sort of way that file systems are with the Java