Re: [cp-patches] FYI: BasicListUI fix

2006-01-05 Thread Mark Wielaard
Hi, On Wed, 2006-01-04 at 21:40 +, Roman Kennke wrote: 2006-01-04 Roman Kennke [EMAIL PROTECTED] * javax/swing/plaf/basic/BasicListUI.java (locationToIndex): Added FIXME about getVisibleRowCount() usage. Adjusted iteration to not use visibleRowCount and instead

Re: [cp-patches] GNU Crypto and Jessie merge

2006-01-05 Thread Mark Wielaard
Hi Casey, On Sun, 2005-12-25 at 17:06 -0800, Casey Marshall wrote: I've moved GNU Crypto and Jessie into my Classpath tree, approximately as I proposed to do earlier. The patch to Classpath, and a tarball of all the new files, are available from

Re: [cp-patches] FYI: JFileChooser fix

2006-01-05 Thread Lillian Angel
On Wed, 2006-01-04 at 23:26 +, Roman Kennke wrote: } @@ -681,7 +683,8 @@ retval = ERROR_OPTION; -d.pack(); +Insets i = d.getInsets(); +d.setSize(500 + i.top + i.bottom, d.getPreferredSize().height); For width, shouldn't we use the left/right insets instead of

[cp-patches] RFC: gnu.regexp fix to avoid unwanted PatternSyntaxException

2006-01-05 Thread Ito Kazumitsu
This fixes the bug #25616. I have updated the mauve test gnu/testlet/java/util/regex/Pattern/matches.java for testing this fix. ChangeLog: 2006-01-05 Ito Kazumitsu [EMAIL PROTECTED] * gnu/regexp/RE.java(initialize): Allow repeat.empty.token. *

[cp-patches] FYI: RepaintManager fix

2006-01-05 Thread Roman Kennke
Hi there, I fixed a bug in the RepaintManager. Until now, the RepaintManager iterated over all invalid components and simply called validate() on it. However, it should not validate() the invalid components directly, but instead search the component's validate root (see

[cp-patches] Patch: GapContent fix.

2006-01-05 Thread Lillian Angel
Tony and I worked on fixing this problem. Some mauve tests he committed recently now pass, and the old GapContent mauve tests still pass. In some cases new positions were being created inside the gap, because the if statement only checked if mark is than gapStart. It has been changed to =. I am

[cp-patches] RFC: XMLEncoder and related infrastructure

2006-01-05 Thread Robert Schuster
Hi, the big and evil XMLEncoder patch is finally ready for the public. :) First the good news: It works and behaves in many ways like the JDK. And the bad one: There is an evil problem with object references. These happen when you write an object twice or more to the stream. It is fine if you do

Re: [cp-patches] GNU Crypto and Jessie merge

2006-01-05 Thread Casey Marshall
On Jan 5, 2006, at 3:58 AM, Mark Wielaard wrote: Hi Casey, On Sun, 2005-12-25 at 17:06 -0800, Casey Marshall wrote: I've moved GNU Crypto and Jessie into my Classpath tree, approximately as I proposed to do earlier. The patch to Classpath, and a tarball of all the new files, are available

Re: [cp-patches] GNU Crypto and Jessie merge

2006-01-05 Thread Raif S. Naffah
hello Mark and Casey, (i'm cc-ing Tom on this) On Friday 06 January 2006 06:45, Casey Marshall wrote: On Jan 5, 2006, at 3:58 AM, Mark Wielaard wrote: On Sun, 2005-12-25 at 17:06 -0800, Casey Marshall wrote: I've moved GNU Crypto and Jessie into my Classpath tree, approximately as I

Re: [cp-patches] FYI: Patches for several javax.swing.text files

2006-01-05 Thread Mark Wielaard
Hi Tony, On Thu, 2006-01-05 at 15:16 -0500, Anthony Balkissoon wrote: diff -u -r1.26 DefaultCaret.java --- javax/swing/text/DefaultCaret.java 22 Nov 2005 16:10:27 - 1.26 +++ javax/swing/text/DefaultCaret.java 5 Jan 2006 20:13:58 - @@ -829,9 +829,12 @@ public void

[cp-patches] FYI: MetalFileChooser fixlet

2006-01-05 Thread Roman Kennke
While debugging an issue with the JFileChooser, it occured to me, that the Metal JFileChooser UI must have the VERTICAL_SCROLLBAR_NEVER flag set on its JScrollPane. At least, I never see a vertical scrollbar on the filechooser when trying with Sun. 2006-01-05 Roman Kennke [EMAIL PROTECTED]

[cp-patches] FYI: more BasicListUI fixes

2006-01-05 Thread Roman Kennke
Hi there, I fixed some more issues with JList and HORIZINTAL_WRAP and VERTICAL_WRAP. It should now work mostly right and smooth. This effectivly makes JFileChooser usable. 2006-01-05 Roman Kennke [EMAIL PROTECTED] * javax/swing/plaf/basic/BasicListUI.java (getCellHeight): New

Re: [cp-patches] FYI: Patches for several javax.swing.text files

2006-01-05 Thread Anthony Balkissoon
On Thu, 2006-01-05 at 21:36 +0100, Mark Wielaard wrote: Hi Tony, +Document doc = textComponent.getDocument(); +if (doc != null) + this.dot = Math.min(dot, doc.getLength()); +this.dot = Math.max(dot, 0); There seems to be some confusion here between dot

Re: [cp-patches] GNU Crypto and Jessie merge

2006-01-05 Thread Anthony Green
On Thu, 2006-01-05 at 15:07 -0800, Casey Marshall wrote: How does this sound? Perfect! Thanks, AG ___ Classpath-patches mailing list Classpath-patches@gnu.org http://lists.gnu.org/mailman/listinfo/classpath-patches

Re: [cp-patches] RFC: Using a WeakIdentityHashMap for thread locals

2006-01-05 Thread Tom Tromey
Jeroen == Jeroen Frijters [EMAIL PROTECTED] writes: Jeroen I propose the attached change to the handling of thread locals. This Jeroen fixes bug #24858 and makes the code slightly more obvious (at the cost Jeroen of introducing the new class WeakIdentityHashMap). Jeroen Comments? IMO it is

Re: [cp-patches] GNU Crypto and Jessie merge

2006-01-05 Thread Casey Marshall
After thinking about exportability a little more, I think the best option may be to not provide any `--disable-crypto' option at all, and just structure the source code so that packagers can remove all non-exportable crypto by just removing whole directories. The build system doesn't care

[cp-patches] FYI: Replaced use of JvAssert by assert and removed java-assert.h

2006-01-05 Thread Dalibor Topic
Hi all, I've cleaned up a bit in fdlibm, removing the use of gcj-specific java-assert.h headr and replaced it by plain asserts. The former code caused problems on platforms like Cygwin when built in debug mode, as it tried to link to a method that does not exist in GNU Classpath. cheers,

[cp-testresults] Japi diffs for classpath

2006-01-05 Thread Stuart Ballard
Japi diff jdk12 vs classpath: Full results: http://www.kaffe.org/~stuart/japi/htmlout/h-jdk12-classpath.html Changes since last run: -Comparison run at Wed Jan 4 10:47:48 2006 GMT -jdk12 API scanned at 2006/01/04 05:24:35 EST -classpath API scanned at 2006/01/03 05:27:39 GMT +Comparison run at

Re: compiling Classpath on cigwin/win

2006-01-05 Thread Enrico Migliore
Paul Jenner wrote: Hi Mark. On Tue, 2006-01-03 at 23:12 +0100, Mark Wielaard wrote: O, interesting. The class comment in that file contains some strange characters. Does removing them help? Just noticed that myself. Yep - remove the odd characters and build is merrily completing for

Re: compiling Classpath on cigwin/win

2006-01-05 Thread Mark Wielaard
On Thu, 2006-01-05 at 08:56 +0100, Enrico Migliore wrote: I still got 2 problems on my Cygwin which prevent Classpath from generating glibj.zip Problem 1 -- Found when issuing: $make make all-am make[2]: Entering directory

Re: Target-Native Impls

2006-01-05 Thread Christian Thalinger
On Wed, 2006-01-04 at 11:09 +, Roman Kennke wrote: posix MinGW SunOS (aka Solaris) embOS RTEMS the latter are most likely not very interesting for Classpath but should serve as examples for two of the more exotic targets that can be handled by the target native layer. So, is there

Detection of zip in configure

2006-01-05 Thread Chris Burdess
Hi Could an autofriends wizard please take a peek at #24133? it should just take a minute if you know the right invocation. -- Chris Burdess PGP.sig Description: This is a digitally signed message part ___ Classpath mailing list Classpath@gnu.org

Re: compiling Classpath on cigwin/win

2006-01-05 Thread Enrico Migliore
Mark Wielaard wrote: On Thu, 2006-01-05 at 08:56 +0100, Enrico Migliore wrote: I still got 2 problems on my Cygwin which prevent Classpath from generating glibj.zip Problem 1 -- Found when issuing: $make make all-am make[2]: Entering directory

Re: Detection of zip in configure

2006-01-05 Thread Tom Tromey
Chris == Chris Burdess [EMAIL PROTECTED] writes: Chris Could an autofriends wizard please take a peek at #24133? it should Chris just take a minute if you know the right invocation. I didn't test this yet. Tom Index: m4/acinclude.m4

Re: compiling Classpath on cigwin/win

2006-01-05 Thread Michael Koch
On Thu, Jan 05, 2006 at 02:10:19PM +0100, Enrico Migliore wrote: Mark Wielaard wrote: On Thu, 2006-01-05 at 08:56 +0100, Enrico Migliore wrote: I still got 2 problems on my Cygwin which prevent Classpath from generating glibj.zip Problem 1 -- Found when

Re: Detection of zip in configure

2006-01-05 Thread Dalibor Topic
On Thu, Jan 05, 2006 at 08:57:59AM +, Chris Burdess wrote: Hi Could an autofriends wizard please take a peek at #24133? it should just take a minute if you know the right invocation. -- Chris Burdess Right, Kaffe's configure does that. But rather than porting the code over, to

[commit-cp] classpath ./ChangeLog javax/swing/RepaintManage...

2006-01-05 Thread Roman Kennke
CVSROOT:/cvsroot/classpath Module name:classpath Branch: Changes by: Roman Kennke [EMAIL PROTECTED]06/01/05 16:26:14 Modified files: . : ChangeLog javax/swing: RepaintManager.java Log message: 2006-01-05 Roman Kennke

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

2006-01-05 Thread Lillian Angel
CVSROOT:/cvsroot/classpath Module name:classpath Branch: Changes by: Lillian Angel [EMAIL PROTECTED] 06/01/05 19:33:43 Modified files: . : ChangeLog javax/swing/text: GapContent.java Log message: 2006-01-05 Lillian Angel

[commit-cp] classpath ./ChangeLog javax/swing/JTextPane.jav...

2006-01-05 Thread Anthony Balkissoon
CVSROOT:/cvsroot/classpath Module name:classpath Branch: Changes by: Anthony Balkissoon [EMAIL PROTECTED] 06/01/05 20:15:34 Modified files: . : ChangeLog javax/swing: JTextPane.java javax/swing/event: EventListenerList.java

[commit-cp] classpath javax/swing/plaf/basic/BasicListUI.ja...

2006-01-05 Thread Roman Kennke
CVSROOT:/cvsroot/classpath Module name:classpath Branch: Changes by: Roman Kennke [EMAIL PROTECTED]06/01/05 22:53:18 Modified files: javax/swing/plaf/basic: BasicListUI.java . : ChangeLog Log message: 2006-01-05 Roman

[commit-cp] classpath ChangeLog

2006-01-05 Thread Anthony Balkissoon
CVSROOT:/cvsroot/classpath Module name:classpath Branch: Changes by: Anthony Balkissoon [EMAIL PROTECTED] 06/01/05 23:54:44 Modified files: . : ChangeLog Log message: Didn't commit proper ChangeLog with last patch. CVSWeb URLs: