Re: [cp-patches] RFC: Datatypes library

2006-02-02 Thread Arnaud Vandyck
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Chris Burdess wrote: This patch adds the RELAX NG pluggable datatypes library to Classpath. This API, and an implementation of it, will be used by the W3C XML Schema and RELAX NG JAXP validators currently in development. [...] Please let me know

Re: [cp-patches] Use gnu.java.security.jce.sig.DSSKeyPairGeneratorSpi for DSS/DSA

2006-02-02 Thread Raif S. Naffah
On Thursday 02 February 2006 02:42, Casey Marshall wrote: On Jan 30, 2006, at 3:55 AM, Mark Wielaard wrote: Hi Raif, On Mon, 2006-01-30 at 19:57 +1100, Raif S. Naffah wrote: this patch designates gnu.java.security.jce.sig.DSSKeyPairGeneratorSpi as the implementation of DSS (alias

[cp-patches] FYI: Make AbstractCollection.toString() more robust

2006-02-02 Thread Mark Wielaard
Hi, This makes AbstractCollection.toString() more robust by only using the Iterator (in case some subclass has a strange or expensive size() implementation) and deals with collections directly containing themselves. 2006-02-02 Mark Wielaard [EMAIL PROTECTED] Fixes bug #25769 reported by

Re: [cp-patches] RFC: Datatypes library

2006-02-02 Thread Mark Wielaard
Hi Chris, On Tue, 2006-01-31 at 20:07 +, Chris Burdess wrote: This patch adds the RELAX NG pluggable datatypes library to Classpath. This API, and an implementation of it, will be used by the W3C XML Schema and RELAX NG JAXP validators currently in development. Please let me know

[cp-patches] default PRNG

2006-02-02 Thread Raif S. Naffah
hello there, this patch (except for gnu/java/security/key/dss/DSSKeyPairGenerator) replaces the new SecureRandom() occurrences with the use of an instance field (or in two cases where the class has only static methods, with a class field) set to an instance of a default PRNG (a seeded

Re: [cp-patches] RFC: Datatypes library

2006-02-02 Thread Chris Burdess
Mark Wielaard wrote: This patch adds the RELAX NG pluggable datatypes library to Classpath. This API, and an implementation of it, will be used by the W3C XML Schema and RELAX NG JAXP validators currently in development. Please let me know how you feel about this. Could you explain a bit more

[cp-patches] RFC: gnu.regexp.RETokenNamedProperty: Unicode block supported

2006-02-02 Thread Ito Kazumitsu
ChangeLog 2006-02-02 Ito Kazumitsu [EMAIL PROTECTED] * gnu/regexp/RETokenNamedProperty.java(getHandler): Check for a Unicode block if the name starts with In. (UnicodeBlockHandler): New inner class. Index: classpath/gnu/regexp/RETokenNamedProperty.java

[cp-patches] Patch: DefaultStyledDocument

2006-02-02 Thread Lillian Angel
Another fix for DefaultStyledDocument. These functions still need more work. 2006-02-02 Lillian Angel [EMAIL PROTECTED] * javax/swing/text/DefaultStyledDocument.java (insertUpdate): Rewrote code for Originate. This prevents leaves being created multiple times. If it is

[cp-patches] Patch: DefaultStyledDocument

2006-02-02 Thread Lillian Angel
Another small fix. DefaultStyledDocument.ElementBuffer is working a whole lot better now. There is two cases that still need to be fixed. I hope to be done this by the weekend!!! 2006-02-02 Lillian Angel [EMAIL PROTECTED] * javax/swing/text/DefaultStyledDocument.java

Re: [cp-patches] java/security/KeyPairGenerator.java

2006-02-02 Thread Mark Wielaard
On Thu, 2006-02-02 at 21:41 +1100, Raif S. Naffah wrote: Currently KeyPairGenerator extends KeyPairGeneratorSpi, but the if statement was testing for instanceof KeyPairGeneratorSpi before KeyPairGenerator, and handling them differently (in terms of wrapper classes). the patch corrects the

[cp-patches] FYI: RepaintManager optimization

2006-02-02 Thread Roman Kennke
I once more optimized the Swing RepaintManager to limit the amount of painting work that is carried out by Swing. While observing painting behaviour I noticed that sometimes (especially with overlapping components) the painting is carried out in a 2-step manner, which results in strange artifacts

[cp-testresults] FAIL: regressions for mauve-jamvm on Thu Feb 2 11:27:50 UTC 2006

2006-02-02 Thread cpdev
Baseline from: Sun Jan 29 02:20:28 UTC 2006 Regressions: FAIL: gnu.testlet.javax.swing.event.SwingPropertyChangeSupport.removePropertyChangeListener: (String, PropertyChangeListener) (number 4) FAIL: gnu.testlet.javax.swing.text.DefaultStyledDocument.ElementBuffer.ElementStructure8: create

[cp-testresults] FAIL: mauve serialization tests on Thu Feb 2 11:35:47 UTC 2006

2006-02-02 Thread cpdev
___ Classpath-testresults mailing list Classpath-testresults@gnu.org http://lists.gnu.org/mailman/listinfo/classpath-testresults

[cp-testresults] FAIL: mauve serialization tests on Fri Feb 3 01:46:42 UTC 2006

2006-02-02 Thread cpdev
___ Classpath-testresults mailing list Classpath-testresults@gnu.org http://lists.gnu.org/mailman/listinfo/classpath-testresults

[cp-testresults] FAIL: regressions for libgcj on Fri Feb 3 05:40:49 UTC 2006

2006-02-02 Thread cpdev
Baseline from: Fri Feb 3 00:57:57 UTC 2006 Regressions: FAIL: Thread_Sleep output - source compiled test Totals: PASS: 3377 XPASS: 0 FAIL: 1 XFAIL: 10 ___ Classpath-testresults mailing list Classpath-testresults@gnu.org

GNU classpath contribution question

2006-02-02 Thread Ken Larson
Hi, I have read the FAQ on contributing to GNU classpath, and I am still left with a question: Let's say for example standard Java defines some constant like FileFormat.BINARY. The Javadoc does not specify the value of this constant. I want to write a replacement for FileFormat, so I

Re: Crypto/Security component in Bugzilla

2006-02-02 Thread Mark Wielaard
On Wed, 2006-02-01 at 20:01 -0500, Andrew Pinski wrote: On Feb 1, 2006, at 7:52 PM, Tom Tromey wrote: I thought this question was more about security in the sense of bugs we know of in our security code, not security flaws requiring a quick turnaround. Likewise. After reading Casey's

Re: GNU classpath contribution question

2006-02-02 Thread Robert Schuster
Hi Ken, what you describe is called black box testing and is a legit mean. cya Robert Ken Larson wrote: Hi, I have read the FAQ on contributing to GNU classpath, and I am still left with a question: Let's say for example standard Java defines some constant like FileFormat.BINARY. The

Re: GNU classpath contribution question

2006-02-02 Thread Mark Wielaard
Hi Ken, On Wed, 2006-02-01 at 16:09 -0500, Ken Larson wrote: System.out.println(FileFormat.BINARY) and run it against Sun's implementation. I find out that the value is 1, and I put that in my implementation. Is this legit for the purposes of contribuing to classpath? Normally public

Re: GNU classpath contribution question

2006-02-02 Thread Per Bothner
Ken Larson wrote: Let's say for example standard Java defines some constant like FileFormat.BINARY. The Javadoc does not specify the value of this constant. Actually, it probably does: http://java.sun.com/j2se/1.5.0/docs/api/constant-values.html -- --Per Bothner [EMAIL PROTECTED]

Re: GNU classpath contribution question

2006-02-02 Thread Roman Kennke
Hi Ken, Let's say for example standard Java defines some constant like FileFormat.BINARY. The Javadoc does not specify the value of this constant. I want to write a replacement for FileFormat, so I write a program System.out.println(FileFormat.BINARY) and run it against Sun's

Re: GNU classpath contribution question

2006-02-02 Thread Dalibor Topic
On Wed, Feb 01, 2006 at 04:09:00PM -0500, Ken Larson wrote: Hi, I have read the FAQ on contributing to GNU classpath, and I am still left with a question: Let's say for example standard Java defines some constant like FileFormat.BINARY. The Javadoc does not specify the value of this

Re: GNU classpath contribution question

2006-02-02 Thread Andrew Haley
Roman Kennke writes: Hi Ken, Let's say for example standard Java defines some constant like FileFormat.BINARY. The Javadoc does not specify the value of this constant. I want to write a replacement for FileFormat, so I write a program

Re: New native layer

2006-02-02 Thread Guilhem Lavaux
Casey Marshall wrote: On Jan 31, 2006, at 6:10 PM, David P Grove wrote: Jikes RVM also does m-to-n threading, so it's there's more than 1 VM that's whacky in this regard. The things we need to do are most likely different than what Kaffe needs to do, but having a chance to inject a VM

[Bug awt/23931] ToolKit.createImage() throws unexpected IllegalArgumentException

2006-02-02 Thread multix at gmail dot com
--- Comment #7 from multix at gmail dot com 2006-02-02 16:11 --- Created an attachment (id=10772) -- (http://gcc.gnu.org/bugzilla/attachment.cgi?id=10772action=view) gtk image patch this is a slightly revised version of the patch Mark proposed. It seems to well for me, a great

[Bug classpath/25812] gnu.regexp: support for (?=X), (?!X), (?X) wanted

2006-02-02 Thread mark at gcc dot gnu dot org
--- Comment #1 from mark at gcc dot gnu dot org 2006-02-02 13:45 --- *** Bug 26075 has been marked as a duplicate of this bug. *** -- mark at gcc dot gnu dot org changed: What|Removed |Added

[Bug classpath/22884] java.util.regex.Pattern doesn't understand (?s)

2006-02-02 Thread kaz at maczuka dot gcd dot org
--- Comment #5 from kaz at maczuka dot gcd dot org 2006-02-02 17:02 --- *** Bug 26075 has been marked as a duplicate of this bug. *** -- kaz at maczuka dot gcd dot org changed: What|Removed |Added

[commit-cp] classpath ./ChangeLog gnu/java/security/x509/ex...

2006-02-02 Thread Casey Marshall
CVSROOT:/cvsroot/classpath Module name:classpath Branch: Changes by: Casey Marshall [EMAIL PROTECTED] 06/02/02 07:16:22 Modified files: . : ChangeLog gnu/java/security/x509/ext: GeneralNames.java Log message: 2006-02-01 Casey

[commit-cp] classpath ./ChangeLog java/util/AbstractCollect...

2006-02-02 Thread Mark Wielaard
CVSROOT:/cvsroot/classpath Module name:classpath Branch: Changes by: Mark Wielaard [EMAIL PROTECTED] 06/02/02 13:29:01 Modified files: . : ChangeLog java/util : AbstractCollection.java Log message: Fixes bug #25769

[commit-cp] classpath ./ChangeLog gnu/java/security/der/DER...

2006-02-02 Thread Casey Marshall
CVSROOT:/cvsroot/classpath Module name:classpath Branch: Changes by: Casey Marshall [EMAIL PROTECTED] 06/02/02 07:06:35 Modified files: . : ChangeLog gnu/java/security/der: DERValue.java DERWriter.java Log message: 2006-02-01

[commit-cp] classpath ./ChangeLog gnu/regexp/REMatch.java g...

2006-02-02 Thread Ito Kazumitsu
CVSROOT:/cvsroot/classpath Module name:classpath Branch: Changes by: Ito Kazumitsu [EMAIL PROTECTED] 06/02/02 15:16:59 Modified files: . : ChangeLog gnu/regexp : REMatch.java RETokenOneOf.java

[commit-cp] classpath examples/gnu/classpath/examples/CORBA...

2006-02-02 Thread Audrius Meskauskas
CVSROOT:/sources/classpath Module name:classpath Branch: Changes by: Audrius Meskauskas [EMAIL PROTECTED] 06/02/02 14:11:50 Modified files: examples/gnu/classpath/examples/CORBA/swing/x5: PlayingDesk.java . : ChangeLog Log message:

[commit-cp] classpath javax/swing/RepaintManager.java ./Cha...

2006-02-02 Thread Roman Kennke
CVSROOT:/cvsroot/classpath Module name:classpath Branch: Changes by: Roman Kennke [EMAIL PROTECTED]06/02/02 21:13:54 Modified files: javax/swing: RepaintManager.java . : ChangeLog Log message: 2006-02-02 Roman Kennke

[commit-cp] classpath ./ChangeLog javax/swing/text/DefaultS...

2006-02-02 Thread Lillian Angel
CVSROOT:/cvsroot/classpath Module name:classpath Branch: Changes by: Lillian Angel [EMAIL PROTECTED] 06/02/02 18:51:36 Modified files: . : ChangeLog javax/swing/text: DefaultStyledDocument.java Log message: 2006-02-02 Lillian