Re: [cp-patches] FYI: LightweightPeers reworked

2006-02-24 Thread Roman Kennke
Hi Thomas, Am Donnerstag, den 23.02.2006, 20:51 -0500 schrieb Thomas Fitzsimmons: On Fri, 2006-02-24 at 00:10 +0100, Roman Kennke wrote: Hi Lillian, - reshape in Component was fixed. invalidate() was only being called on the component if it has moved or has been resized. But the

[cp-patches] FYI: Implement Cloneable for TMMH16

2006-02-24 Thread Raif S. Naffah
hello there, the attached patch --already committed-- adds implementations of Cloneable for TMMH16 and supporting classes. 2006-02-24 Raif S. Naffah [EMAIL PROTECTED] * gnu/javax/crypto/mac/TMMH16.java (clone): New method. * gnu/java/security/prng/MDGenerator.java (clone):

[cp-patches] FYI: ComboBox autoclose

2006-02-24 Thread Roman Kennke
I extended the menu closing mechanism from yesterday so that arbitrary popups can now register with the BasicLookAndFeel to get autoclosed when the user clicks outside of the popup. I also changed the BasicComboPopup to use this, so that now ComboBoxes close automatically and reliably when the

[cp-patches] VMMath Documentation Update

2006-02-24 Thread Andrew John Hughes
The attached patch adds the proposed documentation changes mentioned earlier by Mark. A fix is on the way for the Darwin problem with the changes in fdlibm. Changelog: 2006-02-24 Andrew John Hughes [EMAIL PROTECTED] * NEWS: Mentions the VMMath runtime changes. *

Re: [cp-patches] FYI: LightweightPeers reworked

2006-02-24 Thread Lillian Angel
On Thu, 2006-02-23 at 20:51 -0500, Thomas Fitzsimmons wrote: Lillian's gnu.testlet.java.awt.Container.LightweightContainer should demonstrate the problem but it doesn't at the moment (see my comments on mauve-patches). I updated the mauve test. It appears we still have not fixed our

[cp-patches] FYI: BasicComboPopup fix

2006-02-24 Thread Roman Kennke
My last patches made the combobox unusable. The reason for this is that the exact same event that should open the popup, now also immediately closes the popup via the auto-closer. This is avoided by performing the autocloser-registration after the current event (the one that opens the popup) has

[cp-patches] FYI: Fixes for VMMath and crypto stuff

2006-02-24 Thread Andrew John Hughes
I'm committing the attached patch which fixes the Darwin build problem highlighted by Chris, and adds in a number of casts missing from the recent crypto changes. Changelog: 2006-02-24 Andrew John Hughes [EMAIL PROTECTED] * gnu/java/security/prng/BasePRNG.java: (clone()):

Re: [cp-patches] FYI: LightweightPeers reworked

2006-02-24 Thread Thomas Fitzsimmons
On Fri, 2006-02-24 at 10:20 -0500, Lillian Angel wrote: On Thu, 2006-02-23 at 20:51 -0500, Thomas Fitzsimmons wrote: Lillian's gnu.testlet.java.awt.Container.LightweightContainer should demonstrate the problem but it doesn't at the moment (see my comments on mauve-patches). I

Re: [cp-patches] FYI: LightweightPeers reworked

2006-02-24 Thread Lillian Angel
On Fri, 2006-02-24 at 12:45 -0500, Thomas Fitzsimmons wrote: On Fri, 2006-02-24 at 10:20 -0500, Lillian Angel wrote: On Thu, 2006-02-23 at 20:51 -0500, Thomas Fitzsimmons wrote: Lillian's gnu.testlet.java.awt.Container.LightweightContainer should demonstrate the problem but it doesn't

Re: [cp-patches] FYI: LightweightPeers reworked

2006-02-24 Thread Lillian Angel
Here is a new patch for this problem. We went ahead and implemented the listener idea proposed in the last email. It appears to be the simplest (and best) fix. It does not break anything else. Roman suggested we use a HierarchyBoundsListener, but we need a Component Listener for the

[cp-patches] Patch: TextField fix

2006-02-24 Thread Lillian Angel
addNotify in TextField should call super.addNotify. 2006-02-24 Lillian Angel [EMAIL PROTECTED] * java/awt/TextField.java (addNotify): Added call to super. Index: java/awt/TextField.java === RCS file:

[cp-patches] [generics] (even) more BigDecimal methods

2006-02-24 Thread Anthony Balkissoon
Fixed a problem with toBigInteger, it was crashing when the scale was negative. Also wrote the new methods toBigIntegerExact and stripTrailingZeros. 2006-02-24 Anthony Balkissoon [EMAIL PROTECTED] * java/math/BigDecimal.java (toBigInteger): Fixed problem where this method

[cp-patches] Patch: Container fix

2006-02-24 Thread Lillian Angel
Paint in Container repainted the heavyweights (all the time) in case they were erased when the background was cleared. I added a boolean to keep track if the background was cleared or not. If it was not, then we should not have to repaint the heavyweights. I noticed some weird double painting in

[cp-patches] FYI: Time out HTTP keep-alive connections

2006-02-24 Thread David Daney
David Daney wrote: Currently we keep a HTTP keep-alive connection open forever. Although allowed by RFC 2616, this is forbidden by several other specifications derived from it (DLNA and UPnP). In addition to being incompatible with these other specification, it is a waste of resources to

Re: [cp-patches] FYI: LightweightPeers reworked

2006-02-24 Thread Thomas Fitzsimmons
On Fri, 2006-02-24 at 13:48 -0500, Lillian Angel wrote: Here is a new patch for this problem. We went ahead and implemented the listener idea proposed in the last email. It appears to be the simplest (and best) fix. It does not break anything else. Roman suggested we use a

[cp-patches] [generics] (still) more BigDecimal methods

2006-02-24 Thread Anthony Balkissoon
I tested the rounding methods and made a fix to the round() method. Satisfied with this I implemented several constructors that required rounding facilities and the abs(MathContext) method that also required rounding. 2006-02-24 Anthony Balkissoon [EMAIL PROTECTED] *

Re: [cp-patches] RFC: gnu.regexp.RETokenRepeated: depth-first search

2006-02-24 Thread Ito Kazumitsu
From: Ito Kazumitsu [EMAIL PROTECTED] Date: Sat, 18 Feb 2006 01:21:58 +0900 (JST) 2006-02-18 Ito Kazumitsu [EMAIL PROTECTED] * gnu/regexp/REMatch.java(matchFlags): New int field used as option flags passed to match methods. (MF_FIND_ALL): New flag. *

[cp-testresults] FAIL: generics classpath build on Thu Feb 23 03:58:20 UTC 2006

2006-02-24 Thread cpdev
config.status: creating native/target/Linux/Makefile config.status: creating native/target/generic/Makefile config.status: creating resource/Makefile config.status: creating scripts/Makefile config.status: creating scripts/classpath.spec config.status: creating lib/Makefile config.status: creating

Breakage

2006-02-24 Thread Chris Burdess
Following Andrew's patch of 2006-02-23, the build is broken on Darwin: gcc -dynamiclib -o .libs/libjavalang.0.0.0.dylib .libs/ java_lang_VMSystem.o .libs/java_lang_VMFloat.o .libs/ java_lang_VMDouble.o .libs/java_lang_VMMath.o .libs/ java_lang_VMProcess.o ../../../native/fdlibm/.libs/dtoa.o

RE: SwingSet demo

2006-02-24 Thread theUser BL
On 16. Freb. Roman wrote Hi folks, Today I had some success to get Sun's SwingSet demo from Swing1.1 to run with GNU Classpath. Yesterday I have tried the SwingSet2 demo of Java 1.4 with GNU Classpath. And that runs with the actual CVS-version if GNU Classpath, too. :-) Nice. (Only the

RE: SwingSet demo

2006-02-24 Thread Roman Kennke
Hi theUser BL, Am Freitag, den 24.02.2006, 13:37 + schrieb theUser BL: On 16. Freb. Roman wrote Hi folks, Today I had some success to get Sun's SwingSet demo from Swing1.1 to run with GNU Classpath. Yesterday I have tried the SwingSet2 demo of Java 1.4 with GNU Classpath. And that

Re: Builder and snapshots

2006-02-24 Thread Stuart Ballard
FYI, starting last night I've been using this glibj.zip for the classpath nightly japi comparisons. I'm also tweaking the japize line I use to make sure that packages that aren't documented as being part of the JDK aren't included, so that we don't show any entire packages as missing in jdk15 in

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

2006-02-24 Thread Robert Schuster
CVSROOT:/cvsroot/classpath Module name:classpath Branch: Changes by: Robert Schuster [EMAIL PROTECTED] 06/02/22 13:33:27 Modified files: . : ChangeLog javax/swing/text: DefaultHighlighter.java Log message: Fixes PR #26414.

[commit-cp] classpath ./ChangeLog javax/print/DocFlavor.java

2006-02-24 Thread Wolfgang Baer
CVSROOT:/cvsroot/classpath Module name:classpath Branch: Changes by: Wolfgang Baer [EMAIL PROTECTED] 06/02/23 15:40:51 Modified files: . : ChangeLog javax/print: DocFlavor.java Log message: 2006-02-23 Wolfgang Baer

[commit-cp] classpath ./ChangeLog include/java_lang_VMMath....

2006-02-24 Thread Andrew John Hughes
CVSROOT:/sources/classpath Module name:classpath Branch: Changes by: Andrew John Hughes [EMAIL PROTECTED] 06/02/23 16:16:20 Modified files: . : ChangeLog include: java_lang_VMMath.h java/lang : Math.java

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

2006-02-24 Thread Roman Kennke
CVSROOT:/cvsroot/classpath Module name:classpath Branch: Changes by: Roman Kennke [EMAIL PROTECTED]06/02/23 23:57:51 Modified files: javax/swing/plaf/basic: BasicLookAndFeel.java BasicPopupMenuUI.java .

[commit-cp] classpath javax/swing/JRootPane.java ./ChangeLog

2006-02-24 Thread Roman Kennke
CVSROOT:/cvsroot/classpath Module name:classpath Branch: Changes by: Roman Kennke [EMAIL PROTECTED]06/02/24 00:12:49 Modified files: javax/swing: JRootPane.java . : ChangeLog Log message: 2006-02-23 Roman Kennke [EMAIL

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

2006-02-24 Thread Roman Kennke
CVSROOT:/cvsroot/classpath Module name:classpath Branch: Changes by: Roman Kennke [EMAIL PROTECTED]06/02/23 14:48:57 Modified files: . : ChangeLog javax/swing: RepaintManager.java Log message: 2006-02-23 Roman Kennke

[commit-cp] classpath ./ChangeLog gnu/xml/dom/DomDocumentBu...

2006-02-24 Thread Chris Burdess
CVSROOT:/cvsroot/classpath Module name:classpath Branch: Changes by: Chris Burdess [EMAIL PROTECTED] 06/02/23 20:09:13 Modified files: . : ChangeLog gnu/xml/dom: DomDocumentBuilderFactory.java JAXPFactory.java

[commit-cp] classpath ./ChangeLog java/awt/AWTEvent.java ja...

2006-02-24 Thread Roman Kennke
CVSROOT:/cvsroot/classpath Module name:classpath Branch: Changes by: Roman Kennke [EMAIL PROTECTED]06/02/23 23:43:51 Modified files: . : ChangeLog java/awt : AWTEvent.java EventQueue.java Toolkit.java java/awt/event :

[commit-cp] classpath ./ChangeLog java/math/BigDecimal.java [generics-branch]

2006-02-24 Thread Anthony Balkissoon
CVSROOT:/cvsroot/classpath Module name:classpath Branch: generics-branch Changes by: Anthony Balkissoon [EMAIL PROTECTED] 06/02/23 18:54:51 Modified files: . : ChangeLog java/math : BigDecimal.java Log message: 2006-02-23

[commit-cp] classpath ./ChangeLog java/awt/Graphics.java ja...

2006-02-24 Thread Lillian Angel
CVSROOT:/sources/classpath Module name:classpath Branch: Changes by: Lillian Angel [EMAIL PROTECTED] 06/02/23 19:22:24 Modified files: . : ChangeLog java/awt : Graphics.java Component.java gnu/java/awt/peer/gtk:

[commit-cp] classpath ./ChangeLog ./NEWS doc/vmintegration....

2006-02-24 Thread Andrew John Hughes
CVSROOT:/sources/classpath Module name:classpath Branch: Changes by: Andrew John Hughes [EMAIL PROTECTED] 06/02/24 12:49:44 Modified files: . : ChangeLog NEWS doc: vmintegration.texinfo Log message: 2006-02-24 Andrew

[commit-cp] classpath ./ChangeLog gnu/java/net/CRLFInputStr...

2006-02-24 Thread Chris Burdess
CVSROOT:/cvsroot/classpath Module name:classpath Branch: Changes by: Chris Burdess [EMAIL PROTECTED] 06/02/24 15:24:39 Modified files: . : ChangeLog gnu/java/net : CRLFInputStream.java Log message: 2006-02-24 Chris Burdess

[commit-cp] classpath ./ChangeLog javax/print/attribute/sta...

2006-02-24 Thread Wolfgang Baer
CVSROOT:/cvsroot/classpath Module name:classpath Branch: Changes by: Wolfgang Baer [EMAIL PROTECTED] 06/02/23 18:58:50 Modified files: . : ChangeLog javax/print/attribute/standard: MediaPrintableArea.java

[commit-cp] classpath ./ChangeLog java/math/BigDecimal.java [generics-branch]

2006-02-24 Thread Anthony Balkissoon
CVSROOT:/cvsroot/classpath Module name:classpath Branch: generics-branch Changes by: Anthony Balkissoon [EMAIL PROTECTED] 06/02/23 22:39:04 Modified files: . : ChangeLog java/math : BigDecimal.java Log message: 2006-02-23

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

2006-02-24 Thread Raif S. Naffah
CVSROOT:/cvsroot/classpath Module name:classpath Branch: Changes by: Raif S. Naffah [EMAIL PROTECTED] 06/02/23 12:54:46 Modified files: gnu/java/security/jce/sig: DSSKeyFactory.java gnu/javax/crypto/key/dh: GnuDHKeyPairGenerator.java

[commit-cp] classpath gnu/javax/crypto/mac/TMMH16.java ./Ch...

2006-02-24 Thread Raif S. Naffah
CVSROOT:/cvsroot/classpath Module name:classpath Branch: Changes by: Raif S. Naffah [EMAIL PROTECTED] 06/02/24 11:14:23 Modified files: gnu/javax/crypto/mac: TMMH16.java . : ChangeLog gnu/java/security/prng: MDGenerator.java

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

2006-02-24 Thread Roman Kennke
CVSROOT:/cvsroot/classpath Module name:classpath Branch: Changes by: Roman Kennke [EMAIL PROTECTED]06/02/24 16:43:34 Modified files: javax/swing/plaf/basic: BasicComboPopup.java . : ChangeLog Log message: 2006-02-24 Roman

[commit-cp] classpath ./ChangeLog gnu/java/security/prng/Ba...

2006-02-24 Thread Andrew John Hughes
CVSROOT:/sources/classpath Module name:classpath Branch: Changes by: Andrew John Hughes [EMAIL PROTECTED] 06/02/24 16:27:00 Modified files: . : ChangeLog gnu/java/security/prng: BasePRNG.java gnu/javax/crypto/mac: TMMH16.java

[commit-cp] classpath ./ChangeLog java/util/logging/LogMana...

2006-02-24 Thread Roman Kennke
CVSROOT:/cvsroot/classpath Module name:classpath Branch: Changes by: Roman Kennke [EMAIL PROTECTED]06/02/24 11:03:08 Modified files: . : ChangeLog java/util/logging: LogManager.java Log message: 2006-02-23 Roman Kennke

[commit-cp] classpath ./ChangeLog java/awt/Container.java j...

2006-02-24 Thread Roman Kennke
CVSROOT:/cvsroot/classpath Module name:classpath Branch: Changes by: Roman Kennke [EMAIL PROTECTED]06/02/24 15:30:39 Modified files: . : ChangeLog java/awt : Container.java Toolkit.java Added files: java/awt :

[commit-cp] inetlib ./ChangeLog source/gnu/inet/util/CRLFIn...

2006-02-24 Thread Chris Burdess
CVSROOT:/cvsroot/classpath Module name:inetlib Branch: Changes by: Chris Burdess [EMAIL PROTECTED] 06/02/24 15:26:22 Modified files: . : ChangeLog source/gnu/inet/util: CRLFInputStream.java Log message: 2006-02-24 Chris

[commit-cp] classpath ./ChangeLog java/awt/TextField.java

2006-02-24 Thread Lillian Angel
CVSROOT:/sources/classpath Module name:classpath Branch: Changes by: Lillian Angel [EMAIL PROTECTED] 06/02/24 18:50:36 Modified files: . : ChangeLog java/awt : TextField.java Log message: 2006-02-24 Lillian Angel

[commit-cp] classpath ./ChangeLog java/math/BigDecimal.java [generics-branch]

2006-02-24 Thread Anthony Balkissoon
CVSROOT:/cvsroot/classpath Module name:classpath Branch: generics-branch Changes by: Anthony Balkissoon [EMAIL PROTECTED] 06/02/24 19:44:30 Modified files: . : ChangeLog java/math : BigDecimal.java Log message: 2006-02-24

[commit-cp] classpath ./ChangeLog java/awt/Component.java

2006-02-24 Thread Lillian Angel
CVSROOT:/sources/classpath Module name:classpath Branch: Changes by: Lillian Angel [EMAIL PROTECTED] 06/02/24 18:41:54 Modified files: . : ChangeLog java/awt : Component.java Log message: 2006-02-24 Lillian Angel

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

2006-02-24 Thread Roman Kennke
CVSROOT:/cvsroot/classpath Module name:classpath Branch: Changes by: Roman Kennke [EMAIL PROTECTED]06/02/24 12:01:33 Modified files: javax/swing/plaf/basic: BasicLookAndFeel.java BasicComboPopup.java .

[commit-cp] classpath ./ChangeLog java/awt/Container.java

2006-02-24 Thread Lillian Angel
CVSROOT:/sources/classpath Module name:classpath Branch: Changes by: Lillian Angel [EMAIL PROTECTED] 06/02/24 20:31:37 Modified files: . : ChangeLog java/awt : Container.java Log message: 2006-02-24 Lillian Angel

[commit-cp] classpath ./ChangeLog java/math/BigDecimal.java [generics-branch]

2006-02-24 Thread Anthony Balkissoon
CVSROOT:/cvsroot/classpath Module name:classpath Branch: generics-branch Changes by: Anthony Balkissoon [EMAIL PROTECTED] 06/02/24 21:48:07 Modified files: . : ChangeLog java/math : BigDecimal.java Log message: 2006-02-24