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

2006-02-03 Thread Raif S. Naffah
On Friday 03 February 2006 07:16, Mark Wielaard wrote: On Thu, 2006-02-02 at 21:41 +1100, Raif S. Naffah wrote: ... 2006-02-02 Raif S. Naffah [EMAIL PROTECTED] * java/security/KeyPairGenerator.java (getInstance): Test for instanceof KeyPairGenerator before KeyPairGeneratorSpi.

Re: [cp-patches] RFC: Datatypes library

2006-02-03 Thread Mark Wielaard
Hi Chris, On Thu, 2006-02-02 at 16:02 +, Chris Burdess wrote: Arguably, if we change the name we lose any benefit of being able to plug in a 3rd party datatype library implementation. It would be trivial to duplicate just the part of the API we need in a private namespace and use

[cp-patches] FYI: SwingPropertyChangeSupport fixlet

2006-02-03 Thread Mark Wielaard
Hi, This should get rid of the last regression that builder is complaining about (technically it isn't a regression, the test got changed to not expect a NullPointerException). It simply changes the Hashtable that doesn't allow null keys to a HashMap. The class wasn't thread-safe in the first

Re: [cp-patches] RFC: Datatypes library

2006-02-03 Thread Chris Burdess
Mark Wielaard wrote: Arguably, if we change the name we lose any benefit of being able to plug in a 3rd party datatype library implementation. It would be trivial to duplicate just the part of the API we need in a private namespace and use that for our own providers, but we would only be able to

Re: [cp-patches] FYI: SwingPropertyChangeSupport fixlet

2006-02-03 Thread Roman Kennke
Hi Mark, Am Freitag, den 03.02.2006, 12:19 +0100 schrieb Mark Wielaard: Hi, This should get rid of the last regression that builder is complaining about (technically it isn't a regression, the test got changed to not expect a NullPointerException). It simply changes the Hashtable that

[cp-patches] Patch: DefaultStyledDocument.ElementBuffer final fix

2006-02-03 Thread Lillian Angel
All the structures in the mauve tests are now correct. There are some regressions with ElementBuffer still. Mark, can you please change these to Failures instead. They test that the leaves of the document are created in a certain order, right now we are creating leaves differently from Sun.. but

[cp-patches] Re: RFC: Remove default 'Expect 100-continue' usage in HTTP Requests

2006-02-03 Thread David Daney
Wolfgang Baer wrote: +String expect = getHeader(Expect); +if (expect != null expect.equals(100-continue)) ^ This *may* have to be a case insensitive compare. I think RFC2616 allows either upper or lower case. Other than

[cp-patches] FYI. was: default PRNG

2006-02-03 Thread Raif S. Naffah
On Thursday 02 February 2006 21:37, Raif S. Naffah wrote: ... this patch ...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 MDGenerator).

[cp-patches] DSSKeyPairGenerator JCE Adapter

2006-02-03 Thread Raif S. Naffah
hello there, this patch makes the keypair-generators wrapped in gnu.java.security.jce.sig.KeyPairGeneratorAdapter extend the java.security.KeyPairGenerator rather than KeyPairGeneratorSpi making it possible for adapted classes to be cast to other specific keypair-generators.

[cp-patches] Re: Patch: DefaultStyledDocument.ElementBuffer final fix

2006-02-03 Thread Mark Wielaard
Hi Lillian, On Fri, 2006-02-03 at 11:25 -0500, Lillian Angel wrote: All the structures in the mauve tests are now correct. There are some regressions with ElementBuffer still. Mark, can you please change these to Failures instead. They test that the leaves of the document are created in a

Re: [cp-patches] DSSKeyPairGenerator JCE Adapter

2006-02-03 Thread Casey Marshall
On Feb 3, 2006, at 1:31 PM, Raif S. Naffah wrote: hello there, this patch makes the keypair-generators wrapped in gnu.java.security.jce.sig.KeyPairGeneratorAdapter extend the java.security.KeyPairGenerator rather than KeyPairGeneratorSpi making it possible for adapted classes to be cast to

Re: [cp-patches] DSSKeyPairGenerator JCE Adapter

2006-02-03 Thread Raif S. Naffah
On Saturday 04 February 2006 11:34, Casey Marshall wrote: On Feb 3, 2006, at 1:31 PM, Raif S. Naffah wrote: hello there, this patch makes the keypair-generators wrapped in gnu.java.security.jce.sig.KeyPairGeneratorAdapter extend the java.security.KeyPairGenerator rather than

Re: [cp-patches] DSSKeyPairGenerator JCE Adapter

2006-02-03 Thread Casey Marshall
On Feb 3, 2006, at 5:10 PM, Raif S. Naffah wrote: On Saturday 04 February 2006 11:34, Casey Marshall wrote: On Feb 3, 2006, at 1:31 PM, Raif S. Naffah wrote: hello there, this patch makes the keypair-generators wrapped in gnu.java.security.jce.sig.KeyPairGeneratorAdapter extend the

strange gcjappletviewer problem

2006-02-03 Thread Christian Thalinger
Hi! I just tried to get an applet running with gcjappletviewer but i get a strange exception: Exception in thread main java.lang.ClassFormatError: blaze3d (Bad magic number) This even happens when starting with sun's jvm. But it works with sun's appletviewer. So, i guess this is something

Re: More qt-peer issues

2006-02-03 Thread Holger Schurig
--- QFont: It is not safe to use text and fonts outside the gui thread --- See my earlier mail,

GNU Classpath and Friends Fosdem meeting (Feb 25/26, Brussels)

2006-02-03 Thread Mark Wielaard
Hi all, The official program is ready and there is a wiki page for coordinating the meeting at http://developer.classpath.org/mediation/Fosdem2006 Please add yourself if you will come and please do make suggestions for the open sessions. The full schedule is: Saturday 13:10 - 13:50 -

Segfaulting (was More qt-peer issues)

2006-02-03 Thread Holger Schurig
I can also let the qt-peer rendered Example app crash by intent: I first start the app, then I click the Random test button, then the X-button of the window to close the window and then the the RoundRect button. And voula, a crash. in GDB, with handle SIGUSR1 nostop noprint pass in .gdbinit

Re: New native layer

2006-02-03 Thread David P Grove
yep, that's pretty much the situation with m-n threading in Jikes RVM. For the blocking operations, we need to replace the entire call with something else. There might be some cases where the callbacks could be useful, but they wouldn't be a complete solution for us. --dave Guilhem Lavaux

Re: New native layer

2006-02-03 Thread Casey Marshall
On Feb 2, 2006, at 10:27 AM, Guilhem Lavaux wrote: 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

[commit-cp] classpath java/security/KeyPairGenerator.java ....

2006-02-03 Thread Raif S. Naffah
CVSROOT:/cvsroot/classpath Module name:classpath Branch: Changes by: Raif S. Naffah [EMAIL PROTECTED] 06/02/03 09:23:15 Modified files: java/security : KeyPairGenerator.java . : ChangeLog Log message: 2006-02-03  Raif S.

[commit-cp] classpath ./ChangeLog javax/swing/event/SwingPr...

2006-02-03 Thread Mark Wielaard
CVSROOT:/cvsroot/classpath Module name:classpath Branch: Changes by: Mark Wielaard [EMAIL PROTECTED] 06/02/03 11:20:46 Modified files: . : ChangeLog javax/swing/event: SwingPropertyChangeSupport.java Log message: *

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

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

[commit-cp] classpath gnu/javax/crypto/key/dh/GnuDHKeyPairG...

2006-02-03 Thread Raif S. Naffah
CVSROOT:/cvsroot/classpath Module name:classpath Branch: Changes by: Raif S. Naffah [EMAIL PROTECTED] 06/02/03 19:29:01 Modified files: gnu/javax/crypto/key/dh: GnuDHKeyPairGenerator.java RFC2631.java . : ChangeLog

[commit-cp] classpath ./ChangeLog gnu/java/security/jce/sig...

2006-02-03 Thread Raif S. Naffah
CVSROOT:/cvsroot/classpath Module name:classpath Branch: Changes by: Raif S. Naffah [EMAIL PROTECTED] 06/02/04 01:13:16 Modified files: . : ChangeLog gnu/java/security/jce/sig: KeyPairGeneratorAdapter.java