[cp-patches] FYI: import-cacerts.sh script added

2006-08-03 Thread Raif S. Naffah
hello all, the attached patch --already committed-- adds a batch import script to facilitate populating a cacerts keystore. 2006-08-03 Raif S. Naffah [EMAIL PROTECTED] * scripts/import-cacerts.sh: Batch CA certificates import script. cheers; rsn Index: import-cacerts.sh

Re: [cp-patches] Re: RFC: add a cacerts file under resource/java/security

2006-08-03 Thread Raif S. Naffah
hello Mark, On Thursday 03 August 2006 22:42, Mark Wielaard wrote: On Thu, 2006-08-03 at 22:32 +1000, Raif S. Naffah wrote: ... the gkeytool knows how to import _one_ certificate from such encoded files with either the -import or the -cacert commands. the latter, coupled with the

Re: [cp-patches] RFC: Change GtkToolkit threading

2006-08-03 Thread Sven de Marothy
On Thu, 2006-08-03 at 13:10 -0400, Thomas Fitzsimmons wrote: the three exit conditions are: * There are no displayable AWT or Swing components. * There are no native events in the native event queue. * There are no AWT events in java EventQueues. The first two conditions

[cp-patches] FYI: StrictMath, fixed NaN handling.

2006-08-03 Thread Carsten Neumann
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi, as Sven pointed out here: http://developer.classpath.org/pipermail/classpath-patches/2006-August/003678.html the methods i recently implemented must return their argument if it is NaN, instead of returning the constant Double.NaN. I took

Re: [cp-patches] RFC: StrictMath.tanh implemented

2006-08-03 Thread Carsten Neumann
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi Sven, Sven de Marothy wrote: On Wed, 2006-08-02 at 20:27 +0200, Carsten Neumann wrote: this adds another missing method to StrictMath, mauve test is already in. Comments or approval, appreciated. Seems just fine to me. Just two minor

[cp-patches] Re: FYI: An example of dynamic bean output

2006-08-03 Thread Mark Wielaard
Hi Andrew, On Sat, 2006-07-29 at 22:22 +0100, Andrew John Hughes wrote: This adds an example for printing out the info on the management beans dynamically. In the process, it also adds toString() output to the info classes so that they print out something useful, and fixes a bug in

[cp-patches] FYI: BasicInternalFrameUI fix

2006-08-03 Thread Roman Kennke
This makes InternalFrames adjust their size to their parent's size when in maximized mode. 2006-08-03 Roman Kennke [EMAIL PROTECTED] PR 27637 * javax/swing/plaf/basic/BasicInternalFrameUI.java (ComponentHandler.componentResized): Reimplemented to handle

Re: [cp-patches] FYI: make peer libraries versionless

2006-08-03 Thread Mark Wielaard
Hi Tom, On Mon, 2006-07-31 at 09:52 -0400, Thomas Fitzsimmons wrote: On Fri, 2006-07-28 at 19:41 -0400, Thomas Fitzsimmons wrote: I committed this patch to make the peer libraries versionless. This is good practice for dlopen'd libraries. In the case of libjawt.so which is meant to

Re: [cp-patches] FYI: fix for PR Classpath/23899

2006-08-03 Thread Mark Wielaard
Hi Raif, On Wed, 2006-08-02 at 19:54 +1000, Raif S. Naffah wrote: 2006-08-02 Raif S. Naffah [EMAIL PROTECTED] PR Classpath/23899 * java/security/SecureRandom.java (next): Call nextBytes as per specs. Thanks. Added to the release and generics branch. Cheers, Mark

[cp-patches] FYI: MetalBorders and MetalMenuBarUI

2006-08-03 Thread Robert Schuster
Hi, this fumbles a bit with the way the gradient and the border is painted for JMenu components. Still need to find out how 'they' manage to join the painting of a JMenu with a adjacent JToolBar ... 2006-08-04 Robert Schuster [EMAIL PROTECTED] *

Re: [cp-patches] FYI: fix for PR Classpath/28556

2006-08-03 Thread Mark Wielaard
On Wed, 2006-08-02 at 13:25 +1000, Raif S. Naffah wrote: 2006-08-02 Raif S. Naffah [EMAIL PROTECTED] PR Classpath/28556 * gnu/java/security/key/rsa/RSAKeyPairPKCS8Codec.java (encodePrivateKey): Updated documentation to clarify that RFC-2459 states that the parameters

Re: [cp-patches] FYI: MetalBorders and MetalMenuBarUI

2006-08-03 Thread Robert Schuster
Sorry, I attached the wrong patch. Here is the correct one. @Mark: This is a small fix which may enter 0.92. cya Robert Robert Schuster wrote: Hi, this fumbles a bit with the way the gradient and the border is painted for JMenu components. Still need to find out how 'they' manage to

Re: [cp-patches] FYI: StrictMath, fixed NaN handling.

2006-08-03 Thread Tom Tromey
Carsten == Carsten Neumann [EMAIL PROTECTED] writes: Carsten I took the liberty of committing this without asking for Carsten approval, since it's in response to a comment from Sven, Carsten trivial and backed by mauve tests. Please start yelling if I Carsten leaned too far out of the window.

Re: [cp-patches] FYI: import-cacerts.sh script added

2006-08-03 Thread Mark Wielaard
Hi Raif, On Thu, 2006-08-03 at 23:16 +1000, Raif S. Naffah wrote: the attached patch --already committed-- adds a batch import script to facilitate populating a cacerts keystore. 2006-08-03 Raif S. Naffah [EMAIL PROTECTED] * scripts/import-cacerts.sh: Batch CA certificates import

Re: [cp-patches] Re: RFC: add a cacerts file under resource/java/security

2006-08-03 Thread Mark Wielaard
Hi Raif, On Thu, 2006-08-03 at 23:21 +1000, Raif S. Naffah wrote: On Thursday 03 August 2006 22:42, Mark Wielaard wrote: On Thu, 2006-08-03 at 22:32 +1000, Raif S. Naffah wrote: ... the gkeytool knows how to import _one_ certificate from such encoded files with either the -import or

Re: [cp-patches] FYI: BasicOptionPane fix

2006-08-03 Thread Mark Wielaard
On Tue, 2006-08-01 at 22:54 +0200, Roman Kennke wrote: I wrote a mauve test to back up my earlier patch and found that the same pattern can be applied to all visual property changes: simply call installComponents() and uninstallComponents() when any one of the visual properties changes.

[cp-patches] FYI: DomIterator fix

2006-08-03 Thread Robert Schuster
Hi, this small patchlet, suggested by Henrik Gulbrandsen, fixes another case of PR27864. 2006-08-04 Robert Schuster [EMAIL PROTECTED] Reported by Henrik Gulbrandsen [EMAIL PROTECTED] Fixes PR27864. * gnu/xml/dom/DomIterator.java: (successor): Added if-statement.

[cp-patches] FYI [generics] Add example badge.png file

2006-08-03 Thread Mark Wielaard
Hi, The GNU Classpath Badge was missing on the generics branch! This fixes that grave omission :) 2006-08-03 Mark Wielaard [EMAIL PROTECTED] * examples/gnu/classpath/examples/icons/badge.png: Add file. This also makes the Free Swing demo work again. Cheers, Mark

Re: [cp-patches] FYI: JFileChooser

2006-08-03 Thread Mark Wielaard
Hi Roman, On Wed, 2006-08-02 at 13:32 +0200, Roman Kennke wrote: This fixes the handling of special files like . and .. in JFileChooser among a couple of minor design things that I noticed while fixing this. On Wed, 2006-08-02 at 17:21 +0200, Roman Kennke wrote: This fixes the problem with

[cp-testresults] Japi diffs for classpath

2006-08-03 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 Aug 2 10:03:19 2006 GMT -jdk12 API scanned at 2006/08/02 05:27:32 EDT -classpath API scanned at 2006/08/02 05:51:32 EDT +Comparison run at

[cp-testresults] FAIL: regressions for mauve-jamvm on Thu Aug 3 19:27:24 UTC 2006

2006-08-03 Thread cpdev
Baseline from: Wed Aug 2 19:46:25 UTC 2006 Regressions: FAIL: gnu.javax.crypto.key.srp6.TestOfSRPKeyGeneration FAIL: java.awt.Canvas.PaintTest FAIL: java.lang.Thread.sleep Improvements: PASS: java.awt.Checkbox.PaintTest PASS: java.lang.StrictMath.sinh New fails: FAIL:

Re: jboss-4.0.4

2006-08-03 Thread fchoong
Hi Robert, Putting JamVM into its own directory would be most helpful! Will save me some work for firecat;) David Fu. On 7/31/06, Robert Lougher [EMAIL PROTECTED] wrote: On 7/31/06, Christian Thalinger [EMAIL PROTECTED] wrote: On

Torturing image ops and Swing

2006-08-03 Thread hendrich
Hello all, anyone interested in torturing our Swing, awt.image and javax.image operations a bit? Long text with a question buried at the end. Sorry, but I had to get this off my soul; feeling much better already :-) I have just uploaded a new, completely re-written version of my image

Re: Torturing image ops and Swing

2006-08-03 Thread David Gilbert
Hi Norman, Thanks for the detailed report! I don't have time to try this out right now, but I have a couple of comments: [EMAIL PROTECTED] wrote: 1. Select menu File Open image directory... and select a directory with some images. This is the first challenge, because JFileChooser

Re: Torturing image ops and Swing

2006-08-03 Thread Roman Kennke
Hi Norman, anyone interested in torturing our Swing, awt.image and javax.image operations a bit? Sure. These are packages that require lots of work still. David started to write Mauve tests and fix awt.image I think. Long text with a question buried at the end. Sorry, but I had to get

Re: Torturing image ops and Swing

2006-08-03 Thread David Gilbert
Roman Kennke wrote: Hi Norman, anyone interested in torturing our Swing, awt.image and javax.image operations a bit? Sure. These are packages that require lots of work still. David started to write Mauve tests and fix awt.image I think. I did. I will come back to it when I can - in

Re: classpath-0_92-branch created

2006-08-03 Thread Mario Torre
Il giorno gio, 03/08/2006 alle 01.23 +0200, Mark Wielaard ha scritto: Thanks for the reminder I have checked in the following on the trunk, release and generics branch. 2006-08-02 Mark Wielaard [EMAIL PROTECTED] * configure.ac (gconf-peer): Check for gdk-2.0. *

Re: classpath-0_92-branch created

2006-08-03 Thread Mark Wielaard
Hi Mario, On Thu, 2006-08-03 at 20:40 +0200, Mario Torre wrote: Hopefully, I can came up with something that relax this requirement... There is already a bug report for this from the Debian gcc packager. Feel free to assign it to yourself :) http://gcc.gnu.org/bugzilla/show_bug.cgi?id=28538

Re: Torturing image ops and Swing

2006-08-03 Thread Sven de Marothy
On Thu, 2006-08-03 at 15:59 +0200, [EMAIL PROTECTED] wrote: Hello all, anyone interested in torturing our Swing, awt.image and javax.image operations a bit? Long text with a question buried at the end. Sorry, but I had to get this off my soul; feeling much better already :-) No problem

[Bug classpath/28538] libgconfpeer depends on the gtk libraries

2006-08-03 Thread mark at gcc dot gnu dot org
--- Comment #1 from mark at gcc dot gnu dot org 2006-08-03 18:51 --- In classpath 0.92-pre they are now only linked against gdk: 2006-08-02 Mark Wielaard [EMAIL PROTECTED] * configure.ac (gconf-peer): Check for gdk-2.0. * native/jni/gconf-peer/Makefile.am (AM_LDFLAGS):

[Bug classpath/28535] GConf depends on GDK Threads

2006-08-03 Thread mark at gcc dot gnu dot org
--- Comment #4 from mark at gcc dot gnu dot org 2006-08-03 18:23 --- Check checked in -- mark at gcc dot gnu dot org changed: What|Removed |Added

[Bug classpath/28538] libgconfpeer depends on the gtk libraries

2006-08-03 Thread neugens at limasoftware dot net
-- neugens at limasoftware dot net changed: What|Removed |Added AssignedTo|mark at gcc dot gnu dot org |neugens at limasoftware dot |

[Bug classpath/28538] libgconfpeer depends on the gtk libraries

2006-08-03 Thread neugens at limasoftware dot net
--- Comment #2 from neugens at limasoftware dot net 2006-08-03 19:48 --- I have assigned this bug to me (gconf related :), though as Mark said, I don't think we can do that much for it. For what I can see, the problem here is mixing threading models (java and native), this lead to

Re: classpath-0_92-branch created

2006-08-03 Thread Mario Torre
Il giorno gio, 03/08/2006 alle 20.49 +0200, Mark Wielaard ha scritto: Although I am not sure there is much to do about it. We do need gdk_threads_enter/leave () to not interfere with the gtk-peer libraries and those functions are in the gdk-2.0 library so we will have to link against that.

Re: Torturing image ops and Swing

2006-08-03 Thread hendrich
Hello Sven, thanks for your detailed answers to my questions! New Niffler version uploaded and available right now (niffler-exif.jar and niffler-src.zip). Right. BufferedImages created with Component.createImage(int, int) are backed by a Cairo surface. Ones created directly by

Re: Torturing image ops and Swing

2006-08-03 Thread Sven de Marothy
On Thu, 2006-08-03 at 22:28 +0200, [EMAIL PROTECTED] wrote: Hello Sven, thanks for your detailed answers to my questions! New Niffler version uploaded and available right now (niffler-exif.jar and niffler-src.zip). Ok good. :) I added a special classpath workaround to Niffler that

[Bug classpath/23899] SecureRandom.next should call nextBytes

2006-08-03 Thread cvs-commit at developer dot classpath dot org
--- Comment #16 from cvs-commit at developer dot classpath dot org 2006-08-03 22:19 --- Subject: Bug 23899 CVSROOT:/cvsroot/classpath Module name:classpath Branch: generics-branch Changes by: Mark Wielaard mark06/08/03 22:18:49 Modified files: .

[Bug classpath/23899] SecureRandom.next should call nextBytes

2006-08-03 Thread mark at gcc dot gnu dot org
--- Comment #17 from mark at gcc dot gnu dot org 2006-08-03 22:20 --- (In reply to comment #15) will that be in the classpath merge for the GCC trunk? Yes, it is now part of 0.92-pre which will hopefully soon turn int 0.92 final and then be merged into gcc trunk. -- mark at gcc

[Bug classpath/23899] SecureRandom.next should call nextBytes

2006-08-03 Thread cvs-commit at developer dot classpath dot org
--- Comment #18 from cvs-commit at developer dot classpath dot org 2006-08-03 22:20 --- Subject: Bug 23899 CVSROOT:/cvsroot/classpath Module name:classpath Branch: classpath-0_92-branch Changes by: Mark Wielaard mark06/08/03 22:19:12 Modified files:

[Bug swing/28562] JOptionPane.showInputDialog

2006-08-03 Thread cvs-commit at developer dot classpath dot org
--- Comment #7 from cvs-commit at developer dot classpath dot org 2006-08-03 23:27 --- Subject: Bug 28562 CVSROOT:/cvsroot/classpath Module name:classpath Branch: generics-branch Changes by: Mark Wielaard mark06/08/03 23:22:43 Modified files: .

[Bug swing/28562] JOptionPane.showInputDialog

2006-08-03 Thread cvs-commit at developer dot classpath dot org
--- Comment #8 from cvs-commit at developer dot classpath dot org 2006-08-03 23:27 --- Subject: Bug 28562 CVSROOT:/cvsroot/classpath Module name:classpath Branch: classpath-0_92-branch Changes by: Mark Wielaard mark06/08/03 23:23:12 Modified files:

[Bug swing/28534] Regression in javax.swing.JTree

2006-08-03 Thread cvs-commit at developer dot classpath dot org
--- Comment #4 from cvs-commit at developer dot classpath dot org 2006-08-03 23:28 --- Subject: Bug 28534 CVSROOT:/cvsroot/classpath Module name:classpath Branch: classpath-0_92-branch Changes by: Mark Wielaard mark06/08/03 23:15:08 Modified files:

[Bug swing/28534] Regression in javax.swing.JTree

2006-08-03 Thread cvs-commit at developer dot classpath dot org
--- Comment #5 from cvs-commit at developer dot classpath dot org 2006-08-03 23:28 --- Subject: Bug 28534 CVSROOT:/cvsroot/classpath Module name:classpath Branch: generics-branch Changes by: Mark Wielaard mark06/08/03 23:14:19 Modified files: .

Re: SIGSEGV caused by libgconf-2.so.4

2006-08-03 Thread Raif S. Naffah
hello Mario, On Friday 04 August 2006 09:32, Mario Torre wrote: Il giorno ven, 04/08/2006 alle 09.12 +1000, Raif S. Naffah ha scritto: i'm getting a segmentation fault caused by /usr/lib/libgconf-2.so.4 (FC5) when trying to run jamvm with Classpath (both CVS Head)... anybody else is seeing

[Bug xml/27864] Wrong number of entries returned for getElementsByTagName() in special case

2006-08-03 Thread thebohemian at gmx dot net
--- Comment #3 from thebohemian at gmx dot net 2006-08-04 00:11 --- Fixed by: http://developer.classpath.org/pipermail/classpath-patches/2006-June/002644.html and http://developer.classpath.org/pipermail/classpath-patches/2006-August/003715.html -- thebohemian at gmx dot net

Re: SIGSEGV caused by libgconf-2.so.4

2006-08-03 Thread Raif S. Naffah
On Friday 04 August 2006 09:49, Raif S. Naffah wrote: On Friday 04 August 2006 09:32, Mario Torre wrote: Il giorno ven, 04/08/2006 alle 09.12 +1000, Raif S. Naffah ha scritto: i'm getting a segmentation fault caused by /usr/lib/libgconf-2.so.4 (FC5) when trying to run jamvm with Classpath

[Bug swing/27606] No indentation of the directories in JFileChooser

2006-08-03 Thread cvs-commit at developer dot classpath dot org
--- Comment #4 from cvs-commit at developer dot classpath dot org 2006-08-04 00:45 --- Subject: Bug 27606 CVSROOT:/cvsroot/classpath Module name:classpath Branch: generics-branch Changes by: Mark Wielaard mark06/08/04 00:43:45 Modified files: .

[Bug swing/27604] JFileChooser does not handle well special paths

2006-08-03 Thread cvs-commit at developer dot classpath dot org
--- Comment #4 from cvs-commit at developer dot classpath dot org 2006-08-04 00:45 --- Subject: Bug 27604 CVSROOT:/cvsroot/classpath Module name:classpath Branch: classpath-0_92-branch Changes by: Mark Wielaard mark06/08/04 00:43:31 Modified files:

[Bug swing/27604] JFileChooser does not handle well special paths

2006-08-03 Thread cvs-commit at developer dot classpath dot org
--- Comment #4 from cvs-commit at developer dot classpath dot org 2006-08-04 00:45 --- Subject: Bug 27604 CVSROOT:/cvsroot/classpath Module name:classpath Branch: classpath-0_92-branch Changes by: Mark Wielaard mark06/08/04 00:43:31 Modified files:

[Bug swing/27605] Choosing a directory in the JFileChooser's JComboBox doesn't seem to do anything

2006-08-03 Thread cvs-commit at developer dot classpath dot org
--- Comment #3 from cvs-commit at developer dot classpath dot org 2006-08-04 00:45 --- Subject: Bug 27605 CVSROOT:/cvsroot/classpath Module name:classpath Branch: generics-branch Changes by: Mark Wielaard mark06/08/04 00:43:45 Modified files: .

[Bug swing/27605] Choosing a directory in the JFileChooser's JComboBox doesn't seem to do anything

2006-08-03 Thread cvs-commit at developer dot classpath dot org
--- Comment #3 from cvs-commit at developer dot classpath dot org 2006-08-04 00:45 --- Subject: Bug 27605 CVSROOT:/cvsroot/classpath Module name:classpath Branch: generics-branch Changes by: Mark Wielaard mark06/08/04 00:43:45 Modified files: .

Re: SIGSEGV caused by libgconf-2.so.4

2006-08-03 Thread Tom Tromey
Raif which i presume is caused by no being generated in the file Raif java.util.prefs.PreferencesFactory under resource/META-INF/services, Raif instead of gnu.java.util.prefs.FileBasedFactory. Try this. (untested) Tom Index: configure.ac

Re: SIGSEGV caused by libgconf-2.so.4

2006-08-03 Thread Raif S. Naffah
On Friday 04 August 2006 10:53, Mario Torre wrote: Il giorno ven, 04/08/2006 alle 10.13 +1000, Raif S. Naffah ha scritto: On Friday 04 August 2006 09:49, Raif S. Naffah wrote: On Friday 04 August 2006 09:32, Mario Torre wrote: Il giorno ven, 04/08/2006 alle 09.12 +1000, Raif S. Naffah ha

Re: SIGSEGV caused by libgconf-2.so.4

2006-08-03 Thread Raif S. Naffah
hello Mario, On Friday 04 August 2006 11:09, Raif S. Naffah wrote: On Friday 04 August 2006 10:53, Mario Torre wrote: Il giorno ven, 04/08/2006 alle 10.13 +1000, Raif S. Naffah ha scritto: On Friday 04 August 2006 09:49, Raif S. Naffah wrote: On Friday 04 August 2006 09:32, Mario Torre

Re: Torturing image ops and Swing

2006-08-03 Thread fchoong
Hi Sven, As you say, if we go after too many goals, we may end accomplishing none of them, or worse complete them half way and leave users scratching their heads as to what went wrong(this leaves a really bad impression). So it is better for us to say, It maybe slow, but at least it is working and

[commit-cp] classpath ChangeLog gnu/java/awt/peer/gtk/Compo...

2006-08-03 Thread Sven de Marothy
CVSROOT:/sources/classpath Module name:classpath Changes by: Sven de Marothy smarothy 06/08/03 08:08:14 Modified files: . : ChangeLog gnu/java/awt/peer/gtk: ComponentGraphics.java GtkComponentPeer.java

[commit-cp] classpath gnu/java/awt/peer/gtk/GtkCanvasPeer.j...

2006-08-03 Thread Roman Kennke
CVSROOT:/cvsroot/classpath Module name:classpath Changes by: Roman Kennke rabbit78 06/08/03 09:54:58 Modified files: gnu/java/awt/peer/gtk: GtkCanvasPeer.java java/awt/peer : ComponentPeer.java . : ChangeLog Log message: 2006-08-03

[commit-cp] classpath ChangeLog scripts/import-cacerts.sh

2006-08-03 Thread Raif S. Naffah
CVSROOT:/cvsroot/classpath Module name:classpath Changes by: Raif S. Naffah raif 06/08/03 13:14:29 Modified files: . : ChangeLog Added files: scripts: import-cacerts.sh Log message: 2006-08-03 Raif S. Naffah [EMAIL PROTECTED]

[commit-cp] classpath ChangeLog java/lang/StrictMath.java

2006-08-03 Thread Carsten Neumann
CVSROOT:/sources/classpath Module name:classpath Changes by: Carsten Neumann neumannc 06/08/03 19:04:58 Modified files: . : ChangeLog java/lang : StrictMath.java Log message: 2006-08-03 Carsten Neumann [EMAIL PROTECTED]

[commit-cp] classpath ChangeLog java/lang/StrictMath.java

2006-08-03 Thread Carsten Neumann
CVSROOT:/sources/classpath Module name:classpath Changes by: Carsten Neumann neumannc 06/08/03 18:42:11 Modified files: . : ChangeLog java/lang : StrictMath.java Log message: 2006-08-03 Carsten Neumann [EMAIL PROTECTED]

[commit-cp] classpath ChangeLog javax/management/MBeanAttri... [classpath-0_92-branch]

2006-08-03 Thread Mark Wielaard
CVSROOT:/cvsroot/classpath Module name:classpath Branch: classpath-0_92-branch Changes by: Mark Wielaard mark06/08/03 20:24:30 Modified files: . : ChangeLog javax/management: MBeanAttributeInfo.java

[commit-cp] classpath ChangeLog javax/management/MBeanAttri... [generics-branch]

2006-08-03 Thread Mark Wielaard
CVSROOT:/cvsroot/classpath Module name:classpath Branch: generics-branch Changes by: Mark Wielaard mark06/08/03 20:24:48 Modified files: . : ChangeLog javax/management: MBeanAttributeInfo.java

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

2006-08-03 Thread Roman Kennke
CVSROOT:/cvsroot/classpath Module name:classpath Changes by: Roman Kennke rabbit78 06/08/03 20:26:05 Modified files: javax/swing/plaf/basic: BasicInternalFrameUI.java . : ChangeLog Log message: 2006-08-03 Roman Kennke [EMAIL PROTECTED]

[commit-cp] classpath ChangeLog native/jawt/Makefile.am nat... [classpath-0_92-branch]

2006-08-03 Thread Mark Wielaard
CVSROOT:/cvsroot/classpath Module name:classpath Branch: classpath-0_92-branch Changes by: Mark Wielaard mark06/08/03 21:04:57 Modified files: . : ChangeLog native/jawt: Makefile.am native/jni/gtk-peer: Makefile.am

[commit-cp] classpath ChangeLog native/jawt/Makefile.am nat... [generics-branch]

2006-08-03 Thread Mark Wielaard
CVSROOT:/cvsroot/classpath Module name:classpath Branch: generics-branch Changes by: Mark Wielaard mark06/08/03 21:07:42 Modified files: . : ChangeLog native/jawt: Makefile.am native/jni/gtk-peer: Makefile.am

[commit-cp] classpath ChangeLog java/security/SecureRandom.... [generics-branch]

2006-08-03 Thread Mark Wielaard
CVSROOT:/cvsroot/classpath Module name:classpath Branch: generics-branch Changes by: Mark Wielaard mark06/08/03 22:18:49 Modified files: . : ChangeLog java/security : SecureRandom.java Log message: 2006-08-03 Raif S. Naffah

[commit-cp] classpath ChangeLog java/security/SecureRandom.... [classpath-0_92-branch]

2006-08-03 Thread Mark Wielaard
CVSROOT:/cvsroot/classpath Module name:classpath Branch: classpath-0_92-branch Changes by: Mark Wielaard mark06/08/03 22:19:12 Modified files: . : ChangeLog java/security : SecureRandom.java Log message: 2006-08-03 Raif S.

[commit-cp] classpath ChangeLog gnu/java/security/key/rsa/R... [generics-branch]

2006-08-03 Thread Mark Wielaard
CVSROOT:/cvsroot/classpath Module name:classpath Branch: generics-branch Changes by: Mark Wielaard mark06/08/03 22:28:43 Modified files: . : ChangeLog gnu/java/security/key/rsa: RSAKeyPairPKCS8Codec.java Log message: 2006-08-03

[commit-cp] classpath ChangeLog gnu/java/security/key/rsa/R... [classpath-0_92-branch]

2006-08-03 Thread Mark Wielaard
CVSROOT:/cvsroot/classpath Module name:classpath Branch: classpath-0_92-branch Changes by: Mark Wielaard mark06/08/03 22:29:00 Modified files: . : ChangeLog gnu/java/security/key/rsa: RSAKeyPairPKCS8Codec.java Log message:

[commit-cp] classpath ChangeLog scripts/Makefile.am

2006-08-03 Thread Mark Wielaard
CVSROOT:/cvsroot/classpath Module name:classpath Changes by: Mark Wielaard mark06/08/03 22:59:28 Modified files: . : ChangeLog scripts: Makefile.am Log message: * scripts/Makefile.am (EXTRA_DIST): Add import-cacerts.sh.

[commit-cp] classpath ChangeLog scripts/Makefile.am scripts... [generics-branch]

2006-08-03 Thread Mark Wielaard
CVSROOT:/cvsroot/classpath Module name:classpath Branch: generics-branch Changes by: Mark Wielaard mark06/08/03 23:04:54 Modified files: . : ChangeLog scripts: Makefile.am Added files: scripts: import-cacerts.sh

[commit-cp] classpath ChangeLog scripts/Makefile.am scripts... [classpath-0_92-branch]

2006-08-03 Thread Mark Wielaard
CVSROOT:/cvsroot/classpath Module name:classpath Branch: classpath-0_92-branch Changes by: Mark Wielaard mark06/08/03 23:05:32 Modified files: . : ChangeLog scripts: Makefile.am Added files: scripts:

[commit-cp] classpath ChangeLog javax/swing/JTree.java java... [generics-branch]

2006-08-03 Thread Mark Wielaard
CVSROOT:/cvsroot/classpath Module name:classpath Branch: generics-branch Changes by: Mark Wielaard mark06/08/03 23:14:19 Modified files: . : ChangeLog javax/swing: JTree.java javax/swing/plaf/basic: BasicTreeUI.java Log

[commit-cp] classpath ChangeLog javax/swing/JTree.java java... [classpath-0_92-branch]

2006-08-03 Thread Mark Wielaard
CVSROOT:/cvsroot/classpath Module name:classpath Branch: classpath-0_92-branch Changes by: Mark Wielaard mark06/08/03 23:15:08 Modified files: . : ChangeLog javax/swing: JTree.java javax/swing/plaf/basic: BasicTreeUI.java

[commit-cp] classpath ChangeLog javax/swing/plaf/basic/Basi... [generics-branch]

2006-08-03 Thread Mark Wielaard
CVSROOT:/cvsroot/classpath Module name:classpath Branch: generics-branch Changes by: Mark Wielaard mark06/08/03 23:22:43 Modified files: . : ChangeLog javax/swing/plaf/basic: BasicOptionPaneUI.java Log message: 2006-08-03 Roman

[commit-cp] classpath ChangeLog javax/swing/plaf/basic/Basi... [classpath-0_92-branch]

2006-08-03 Thread Mark Wielaard
CVSROOT:/cvsroot/classpath Module name:classpath Branch: classpath-0_92-branch Changes by: Mark Wielaard mark06/08/03 23:23:12 Modified files: . : ChangeLog javax/swing/plaf/basic: BasicOptionPaneUI.java Log message: 2006-08-03

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

2006-08-03 Thread Robert Schuster
CVSROOT:/cvsroot/classpath Module name:classpath Changes by: Robert Schuster rschuster 06/08/04 00:01:54 Modified files: gnu/xml/dom: DomIterator.java . : ChangeLog Log message: 2006-08-04 Robert Schuster [EMAIL PROTECTED]

[commit-cp] classpath/examples/gnu/classpath/examples/manag... [classpath-0_92-branch]

2006-08-03 Thread Mark Wielaard
CVSROOT:/cvsroot/classpath Module name:classpath Branch: classpath-0_92-branch Changes by: Mark Wielaard mark06/08/04 00:23:26 Added files: examples/gnu/classpath/examples/management: TestBeans.java Log message: 2006-08-03 Andrew John Hughes [EMAIL

[commit-cp] classpath/examples/gnu/classpath/examples/manag... [generics-branch]

2006-08-03 Thread Mark Wielaard
CVSROOT:/cvsroot/classpath Module name:classpath Branch: generics-branch Changes by: Mark Wielaard mark06/08/04 00:23:43 Added files: examples/gnu/classpath/examples/management: TestBeans.java Log message: 2006-08-03 Andrew John Hughes [EMAIL

[commit-cp] classpath ChangeLog examples/gnu/classpath/exam... [generics-branch]

2006-08-03 Thread Mark Wielaard
CVSROOT:/cvsroot/classpath Module name:classpath Branch: generics-branch Changes by: Mark Wielaard mark06/08/04 00:33:23 Modified files: . : ChangeLog Added files: examples/gnu/classpath/examples/icons: badge.png Log message:

[commit-cp] classpath ChangeLog javax/swing/JComboBox.java ... [classpath-0_92-branch]

2006-08-03 Thread Mark Wielaard
CVSROOT:/cvsroot/classpath Module name:classpath Branch: classpath-0_92-branch Changes by: Mark Wielaard mark06/08/04 00:43:31 Modified files: . : ChangeLog javax/swing: JComboBox.java javax/swing/filechooser:

[commit-cp] classpath ChangeLog javax/swing/JComboBox.java ... [generics-branch]

2006-08-03 Thread Mark Wielaard
CVSROOT:/cvsroot/classpath Module name:classpath Branch: generics-branch Changes by: Mark Wielaard mark06/08/04 00:43:45 Modified files: . : ChangeLog javax/swing: JComboBox.java javax/swing/filechooser: FileSystemView.java