Re: [cp-patches] Patch: Printing support

2006-03-13 Thread Wolfgang Baer
Hi, Tom Tromey wrote: Wolfgang == Wolfgang Baer [EMAIL PROTECTED] writes: Wolfgang finally I found the time to clean up all the printing stuff Wolfgang on my disk. It's now in a state where I don't expect Wolfgang anymore to move files around. This patch is very impressive. Great job!

[cp-patches] FYI: Fix memory leak in ImageIcon

2006-03-13 Thread Roman Kennke
In javax.swing.ImageIcon we add the images to load to the static MediaTracker of this class but never remove them. This prevents garbage collection of any Icons in Swing. Fixed by the attached patch. 2006-03-13 Roman Kennke [EMAIL PROTECTED] * javax/swing/ImageIcon.java

[cp-patches] FYI: Work on RMI activation classes.

2006-03-13 Thread Audrius Meskauskas
2006-03-13 Audrius Meskauskas [EMAIL PROTECTED] * java/rmi/activation/ActivationGroupDesc.java: Implemented. * java/rmi/activation/ActivationDesc.java.java, * java/rmi/activation/ActivationGroup.java, * java/rmi/activation/ActivationID.java, *

[cp-patches] FYI: SwingUtilities fixes

2006-03-13 Thread Roman Kennke
This patch fixes the SwingUtilities: 1. updateComponentTreeUI has been rewritten. It now handles menus and AWT components in a more correct and robust way. Also, it changes the order in which the components are updated. Before, we went down to the bottommost components in the tree, updated these

[cp-patches] FYI: updateUI fixes

2006-03-13 Thread Roman Kennke
In the updateUI methods of all the Swing components we were doing several different things: simply calling setUI(), calling one of, or a combination of invalidate(), revalidate(), repaint(). The right thing to do is to only call setUI() without all the rest (this is done by setUI and the UI anyway

[cp-patches] FYI: SwingUtilities.calculateInnerArea - minor bug fix plus optimisation

2006-03-13 Thread David Gilbert
This patch (committed) fixes a minor bug (a null component should result in a null return value, not a NullPointerException) and also contains an optimization - the call to getLocalBounds() always creates a new Rectangle with b.x == 0 and b.y == 0, so the same result can be achieved by calling

[cp-patches] FYI: several Basic LF fixes

2006-03-13 Thread Roman Kennke
Here comes a bunch of minor fixes for the basic LF that I've done sometime and never bothered to check in. This is: - several API fixes like public/protected classes/methods/fields that are not in the spec. I made them (package) private. - a couple of setOpaque() settings in the UI that should be

Re: [cp-patches] FYI: Printing support (committed)

2006-03-13 Thread Tom Tromey
Oh, by the way -- this patch definitely needs a corresponding entry in the NEWS file. Tom

[cp-patches] [generics] Patch: FYI: minor generics updates

2006-03-13 Thread Tom Tromey
I'm checking this in on the generics branch. This genericizes a few method signatures, as pointed out by japi. Tom 2006-03-13 Tom Tromey [EMAIL PROTECTED] * javax/swing/text/html/StyleSheet.java (removeAttributes): Genericized. *

Re: J2ME - based on classpath

2006-03-13 Thread Mark Wielaard
Hi Christian, On Fri, 2006-03-10 at 23:44 +0100, Christian Thalinger wrote: On Fri, 2006-03-10 at 15:10 -0700, Tom Tromey wrote: We'll need to get through the paperwork hurdles -- but we'll need to do that no matter what, if you want to eventually merge this code in. I think too the

Re: FOSDEM donation

2006-03-13 Thread Mark Wielaard
Hi Michael, On Sat, 2006-03-11 at 12:10 -0700, Tom Tromey wrote: Michael After some discussion we decided to donate the money to the FOSDEM Michael organization team. We have got a donation certificate for this for Michael evidence. Michael I hope this was okay with all people. You did

[Bug swing/23503] error when displaying empty window with bound larger than the displayed content

2006-03-13 Thread mark at gcc dot gnu dot org
--- Comment #6 from mark at gcc dot gnu dot org 2006-03-13 09:04 --- (In reply to comment #5) I have the same error message, but trying to run MT504(Mozilla Translator). I installed the libgcj6-awt library to run .jar file of MT

Re: FOSDEM donation

2006-03-13 Thread David Gilbert
Mark Wielaard wrote: Hi Michael, On Sat, 2006-03-11 at 12:10 -0700, Tom Tromey wrote: Michael After some discussion we decided to donate the money to the FOSDEM Michael organization team. We have got a donation certificate for this for Michael evidence. Michael I hope this was okay with

Jazelle

2006-03-13 Thread Philippe Laporte
Hi, I would appreciate if you could share some thoughts and/or knowledge about Jazelle and its performance and adoption. Thanks a lot, -- Philippe Laporte Software Gatespace Telematics Första Långgatan 18 41328 Göteborg Sweden Phone: +46 702 04 35 11 Fax: +46 31 24 16 50 Email:

Re: Jazelle

2006-03-13 Thread Philippe Laporte
Hej, Alright, that I knew :-) thanks. So for a free-VM to support, it would have to be a non-Free release I guess since the ARM license is actually joint with the Sun one... Regards, Philippe Laporte Software Gatespace Telematics Första Långgatan 18 41328 Göteborg Sweden Phone: +46

FOSDEM: slides from JamVM talk

2006-03-13 Thread Robert Lougher
Hi, Roman has kindly uploaded the slides from my talk to the Wiki (see http://developer.classpath.org/mediation/Fosdem2006). Thanks, Rob. P.S. There's one obvious mistake on slide 2. The release date of JamVM 1.4.2 should be 2006 not 2005!

Re: Jazelle

2006-03-13 Thread Andrew Haley
Philippe Laporte writes: I would appreciate if you could share some thoughts and/or knowledge about Jazelle and its performance and adoption. Well, it's a proprietary bytecode accelerator for a proprietary embedded Java platform. I'm not aware there is any free software that supports

Re: Jazelle

2006-03-13 Thread Andrew Haley
Philippe Laporte writes: Andrew Haley wrote: Philippe Laporte writes: I would appreciate if you could share some thoughts and/or knowledge about Jazelle and its performance and adoption. Well, it's a proprietary bytecode accelerator for a proprietary embedded Java

Re: New and improved rpmless aot-compile-rpm

2006-03-13 Thread Andrew Haley
Gary Benson writes: Hi all, These last few days I've been working on improving aot-compile-rpm. The first improvement is the long promised abstraction of the non- rpm-specific bits: aot-compile-rpm is now joined by a command-line driven brother, aot-compile, which otherwise does

Re: New and improved rpmless aot-compile-rpm

2006-03-13 Thread Andrew Haley
A bug: running install_lib copying build/lib/aotcompile.py - usr/lib/python2.4/site-packages needs to be /usr/lib/python2.4/site-packages Andrew.

File listing supported properties in GNU classpath

2006-03-13 Thread Wolfgang Baer
Hi all, how about adding a new file which lists all our supported properties. Currently this information about our properties (for swing, graphics2D, rmi, corba) are spread over all parts of the NEWS file. What do you think about consolidating this information ? Filename proposals are also

Re: File listing supported properties in GNU classpath

2006-03-13 Thread Mark Wielaard
Hi Wolgang, On Mon, 2006-03-13 at 20:30 +0100, Wolfgang Baer wrote: how about adding a new file which lists all our supported properties. Currently this information about our properties (for swing, graphics2D, rmi, corba) are spread over all parts of the NEWS file. Good idea. There is also a

RFC: VMClassLoader changes proposition

2006-03-13 Thread Olivier Jolly
Hi, it seems to me that there is a missing/incomplete feature in the VMClassLoader. For now, the vm implementation are not encouraged, helped nor told to define packages in which classes are loaded from when the boot class loader is defining them. Notably, this makes such that java.lang

Re: RFC: VMClassLoader changes proposition

2006-03-13 Thread Archie Cobbs
Olivier Jolly wrote: So basically, I'm asking about your thought on how to make the boot class loader (which is out of range of classpath) defines packages as it load classes. JCVM doesn't have any support for Packages, so any general-use code that gets added to Classpath and can save me

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

2006-03-13 Thread Roman Kennke
CVSROOT:/cvsroot/classpath Module name:classpath Branch: Changes by: Roman Kennke [EMAIL PROTECTED]06/03/13 10:01:19 Modified files: javax/swing: ImageIcon.java . : ChangeLog Log message: 2006-03-13 Roman Kennke [EMAIL

[commit-cp] classpath/gnu/javax/print

2006-03-13 Thread Wolfgang Baer
CVSROOT:/cvsroot/classpath Module name:classpath Branch: Changes by: Wolfgang Baer [EMAIL PROTECTED] 06/03/13 10:52:48 classpath/gnu/javax/print Update of /cvsroot/classpath/classpath/gnu/javax/print In directory savannah:/tmp/cvs-serv19499/gnu/javax/print Log

[commit-cp] classpath/examples/gnu/classpath/examples/print

2006-03-13 Thread Wolfgang Baer
CVSROOT:/cvsroot/classpath Module name:classpath Branch: Changes by: Wolfgang Baer [EMAIL PROTECTED] 06/03/13 10:52:48 classpath/examples/gnu/classpath/examples/print Update of /cvsroot/classpath/classpath/examples/gnu/classpath/examples/print In directory

[commit-cp] classpath/gnu/javax/print/ipp

2006-03-13 Thread Wolfgang Baer
CVSROOT:/cvsroot/classpath Module name:classpath Branch: Changes by: Wolfgang Baer [EMAIL PROTECTED] 06/03/13 10:52:49 classpath/gnu/javax/print/ipp Update of /cvsroot/classpath/classpath/gnu/javax/print/ipp In directory

[commit-cp] classpath/resource/gnu/javax/print

2006-03-13 Thread Wolfgang Baer
CVSROOT:/cvsroot/classpath Module name:classpath Branch: Changes by: Wolfgang Baer [EMAIL PROTECTED] 06/03/13 10:52:49 classpath/resource/gnu/javax/print Update of /cvsroot/classpath/classpath/resource/gnu/javax/print In directory

[commit-cp] classpath/gnu/javax/print/ipp/attribute

2006-03-13 Thread Wolfgang Baer
CVSROOT:/cvsroot/classpath Module name:classpath Branch: Changes by: Wolfgang Baer [EMAIL PROTECTED] 06/03/13 10:55:21 classpath/gnu/javax/print/ipp/attribute Update of /cvsroot/classpath/classpath/gnu/javax/print/ipp/attribute In directory

[commit-cp] classpath/gnu/javax/print/ipp/attribute/defaults

2006-03-13 Thread Wolfgang Baer
CVSROOT:/cvsroot/classpath Module name:classpath Branch: Changes by: Wolfgang Baer [EMAIL PROTECTED] 06/03/13 10:55:24 classpath/gnu/javax/print/ipp/attribute/defaults Update of /cvsroot/classpath/classpath/gnu/javax/print/ipp/attribute/defaults In directory

[commit-cp] classpath/gnu/javax/print/ipp/attribute/job

2006-03-13 Thread Wolfgang Baer
CVSROOT:/cvsroot/classpath Module name:classpath Branch: Changes by: Wolfgang Baer [EMAIL PROTECTED] 06/03/13 10:55:24 classpath/gnu/javax/print/ipp/attribute/job Update of /cvsroot/classpath/classpath/gnu/javax/print/ipp/attribute/job In directory

[commit-cp] classpath javax/accessibility/AccessibleContext...

2006-03-13 Thread Roman Kennke
CVSROOT:/cvsroot/classpath Module name:classpath Branch: Changes by: Roman Kennke [EMAIL PROTECTED]06/03/13 15:13:02 Modified files: javax/accessibility: AccessibleContext.java . : ChangeLog Log message: 2006-03-13 Roman

[commit-cp] classpath javax/swing/AbstractButton.java ./Cha...

2006-03-13 Thread Roman Kennke
CVSROOT:/cvsroot/classpath Module name:classpath Branch: Changes by: Roman Kennke [EMAIL PROTECTED]06/03/13 15:22:28 Modified files: javax/swing: AbstractButton.java . : ChangeLog Log message: 2006-03-13 Roman Kennke

[commit-cp] classpath java/rmi/activation/package.html java...

2006-03-13 Thread Audrius Meskauskas
CVSROOT:/sources/classpath Module name:classpath Branch: Changes by: Audrius Meskauskas [EMAIL PROTECTED] 06/03/13 16:33:14 Modified files: java/rmi/activation: package.html ActivationGroupDesc.java ActivationID.java

[commit-cp] classpath javax/print/attribute/standard/packag...

2006-03-13 Thread Wolfgang Baer
CVSROOT:/cvsroot/classpath Module name:classpath Branch: Changes by: Wolfgang Baer [EMAIL PROTECTED] 06/03/13 18:56:18 Modified files: javax/print/attribute/standard: package.html gnu/classpath/debug: Component.java javax/print:

[commit-cp] classpath javax/swing/JInternalFrame.java ./Cha...

2006-03-13 Thread Roman Kennke
CVSROOT:/cvsroot/classpath Module name:classpath Branch: Changes by: Roman Kennke [EMAIL PROTECTED]06/03/13 16:10:50 Modified files: javax/swing: JInternalFrame.java . : ChangeLog Log message: 2006-03-13 Roman Kennke

[commit-cp] classpath/gnu/javax/print/ipp/attribute/printer

2006-03-13 Thread Wolfgang Baer
CVSROOT:/cvsroot/classpath Module name:classpath Branch: Changes by: Wolfgang Baer [EMAIL PROTECTED] 06/03/13 10:55:25 classpath/gnu/javax/print/ipp/attribute/printer Update of /cvsroot/classpath/classpath/gnu/javax/print/ipp/attribute/printer In directory

[commit-cp] classpath javax/swing/SwingUtilities.java ./Cha...

2006-03-13 Thread Roman Kennke
CVSROOT:/cvsroot/classpath Module name:classpath Branch: Changes by: Roman Kennke [EMAIL PROTECTED]06/03/13 20:51:59 Modified files: javax/swing: SwingUtilities.java . : ChangeLog Log message: 2006-03-13 Roman Kennke

[commit-cp] classpath javax/swing/JColorChooser.java javax/...

2006-03-13 Thread Roman Kennke
CVSROOT:/cvsroot/classpath Module name:classpath Branch: Changes by: Roman Kennke [EMAIL PROTECTED]06/03/13 21:33:37 Modified files: javax/swing: JColorChooser.java JComboBox.java JDesktopPane.java JFileChooser.java JMenu.java

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

2006-03-13 Thread David Gilbert
CVSROOT:/sources/classpath Module name:classpath Branch: Changes by: David Gilbert [EMAIL PROTECTED] 06/03/13 21:36:30 Modified files: . : ChangeLog javax/swing: SwingUtilities.java Log message: 2006-03-13 David Gilbert

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

2006-03-13 Thread Roman Kennke
CVSROOT:/cvsroot/classpath Module name:classpath Branch: Changes by: Roman Kennke [EMAIL PROTECTED]06/03/13 22:06:47 Modified files: . : ChangeLog javax/swing/plaf/basic: BasicButtonUI.java

[commit-cp] classpath java/rmi/server/RMIClassLoader.java .... [generics-branch]

2006-03-13 Thread Tom Tromey
CVSROOT:/cvsroot/classpath Module name:classpath Branch: generics-branch Changes by: Tom Tromey [EMAIL PROTECTED] 06/03/14 02:36:43 Modified files: java/rmi/server: RMIClassLoader.java . : ChangeLog javax/swing/plaf/synth:

[commit-cp] classpath ./ChangeLog gnu/classpath/jdwp/proces...

2006-03-13 Thread Keith Seitz
CVSROOT:/sources/classpath Module name:classpath Branch: Changes by: Keith Seitz [EMAIL PROTECTED] 06/03/14 03:50:08 Modified files: . : ChangeLog gnu/classpath/jdwp/processor: ReferenceTypeCommandSet.java Log message: *