Re: [cp-patches] FYI: Registry update and HMac cloneability

2006-01-29 Thread Mark Wielaard
Hi, On Sat, 2006-01-28 at 23:15 +, David Gilbert wrote: > One comment regarding the Mauve tests: to keep things as simple as > possible for people using Mauve to test other library implementations > (Sun's, Apache's etc) I think it is important to keep tests for gnu.* > classes separate fr

[cp-patches] The latest two patches on javax/swing/plaf/basic/BasicListUI.java break the List World demo

2006-01-29 Thread Audrius Meskauskas
Hi, Roman, the latest two patches on BasicListUI break the list word demo in the Swing activity board (adding new element (by pressing the button) no longer adds the elements to the end of the list. It is possible that: 1. We may need to revert the patches or 2. Probably patches are correct a

[cp-patches] FYI: Prime2 patch

2006-01-29 Thread Raif S. Naffah
hello there, this patch fixes a bug in the Euler criterion test implementation, removed some unused methods and makes the BigInteger.isProbablePrime the main (for the time being) primality test. 2006-01-30 Raif S. Naffah <[EMAIL PROTECTED]> * gnu/java/security/util/Prime2.java (passE

Re: [cp-patches] [native] New native layer

2006-01-29 Thread Mark Wielaard
Hi Guilhem, > 2006-01-28 Guilhem Lavaux <[EMAIL PROTECTED]> > > * configure.ac: Removed target from CLASSPATH_INCLUDES and > Makefile generation. > > * native/jni/native-lib/Makefile.am, > native/jni/native-lib/cpnet.h, > native/jni/native-lib/cpnet.c >

Re: [cp-patches] [native] Patch to adapt VM layer

2006-01-29 Thread Mark Wielaard
Hi Guilhem, On Sat, 2006-01-28 at 17:37 +0100, Guilhem Lavaux wrote: > 2006-01-28 Guilhem Lavaux <[EMAIL PROTECTED]> > > * native/jni/java-io/java_io_VMFile.c, > native/jni/java-net/gnu_java_net_VMPlainDatagramSocketImpl.c, > native/jni/java-net/gnu_java_net_VMPlainSo

Re: [cp-patches] RFC: gnu.regexp: fixed bugs in stingy match of RETokenRepeated

2006-01-29 Thread Ito Kazumitsu
From: Ito Kazumitsu <[EMAIL PROTECTED]> Date: Sun, 29 Jan 2006 01:15:27 +0900 (JST) > The patch proposed on Mon, 23 Jan 2006 has been cancelled, > and here is another patch. Hopefully improved. TODO: This patch cannot make the following test pass. /^(b+?|a){1,2}?c/ bbac 0: bbac 1: a /b+

Re: [cp-patches] FYI: Implemented java.net.SocketPermission serialization

2006-01-29 Thread Mark Wielaard
Hi Gary, On Tue, 2006-01-24 at 14:14 +, Gary Benson wrote: > I just committed a patch that implements serialization in > java.net.SocketPermission. I had to add a dummy field, > "actions", in order for the serialized representation to > match that from a proprietary JVM. This seems sucky, bu

Re: [cp-patches] FYI: XMLEncoder - less dependencies & bugfix

2006-01-29 Thread Mark Wielaard
Hi Robert, On Tue, 2006-01-24 at 18:07 +0100, Robert Schuster wrote: > The funny thing is that the whole behavior depends on three places. Two of > them > were implemented already because they are part of the spec. The final > component > consists only of one line (calling super.inititialize() i

Re: [cp-patches] FYI: FormView

2006-01-29 Thread Mark Wielaard
Hi Roman, On Wed, 2006-01-25 at 15:10 +, Roman Kennke wrote: > I did a partial implementation of javax.swing.text.html.FormView and > added FIXMEs for the things to do. Could you add a bug report for this? It would be good if bugzilla had issues for every FIXME (that we newly and knowingly) i

Re: [cp-patches] FYI: XMLEncoder - less dependencies & bugfix

2006-01-29 Thread Robert Schuster
Hi Mark, > This cleans up the code very nicely. Good catch! > > >>2006-01-24 Robert Schuster <[EMAIL PROTECTED]> >> >>* java/beans/XMLEncoder.java: >>(writeExpression): Added early return (fixes PR #25941). >>* java/beans/Encoder: Removed unused imports. >>(setu

Re: [cp-patches] FYI: XMLEncoder - less dependencies & bugfix

2006-01-29 Thread Robert Schuster
Hi, I fixed the ChangeLog entry. It now says: 2006-01-24 Robert Schuster <[EMAIL PROTECTED]> * java/beans/XMLEncoder.java: (writeExpression): Added early return (fixes PR #25941). (setExceptionListener, anonymous Class): Removed printStackTrace call. * ja

[cp-patches] FYI: trim and lower case SocketPermission actions.

2006-01-29 Thread Mark Wielaard
Hi, Tom and I investigated a little issue with netx SocketPermissions. The code initialized a SocketPermission with actions separated with a command and spaces. This patch makes us handle that format and makes the action parsing similar to how we handle FilePermission actions. 2006-01-29 Mark Wi

[cp-patches] FYI: shared DefaultExceptionListener

2006-01-29 Thread Robert Schuster
Hi, I applied Mark' suggestion to use a shared instance of the DefaultExceptionListener for all [XML]Encoders and XMLDecoders. Furthermore I moved the class to the gnu.java.beans package. The ChangeLog: 2006-01-29 Robert Schuster <[EMAIL PROTECTED]> * gnu/java/beans/decoder/DefaultExc

[cp-patches] FYI: ScrollPaneLayout fix

2006-01-29 Thread Roman Kennke
I rewrote ScrollPaneLayout.minimumLayoutSize() to make the mauve tests pass for this method. 2006-01-29 Roman Kennke <[EMAIL PROTECTED]> * javax/swing/ScrollPaneLayout.java (minimumLayoutSize): Rewritten to match JDKs behaviour. /Roman Index: javax/swing/ScrollPaneLayout.java =