Re: Multi-byte locales

2005-10-18 Thread Michael Koch
On Tue, Oct 18, 2005 at 12:11:30AM +0200, Florian Weimer wrote: It seems that with Sun's JDK, some files are unaccessible if you run in a multi-byte locale (something which uses UTF-8, for example) because it's not possible to specify an UTF-16 string which is encoded to the name of the file

Re: Multi-byte locales

2005-10-18 Thread Florian Weimer
* Michael Koch: There is no GNU extension (yet) that van work around this that I'm aware of. Do you think this (i.e. non-accessible files) is a problem at all? You get the arguments as String[] args: byte[][] data = new byte[args.length][]; for (int i = 0; i args.length; i++) {

Re: Multi-byte locales

2005-10-18 Thread Michael Koch
On Tue, Oct 18, 2005 at 09:29:53AM +0200, Florian Weimer wrote: * Michael Koch: There is no GNU extension (yet) that van work around this that I'm aware of. Do you think this (i.e. non-accessible files) is a problem at all? Does files really contain such filenames with weird characters

Re: Multi-byte locales

2005-10-18 Thread Florian Weimer
* Michael Koch: On Tue, Oct 18, 2005 at 09:29:53AM +0200, Florian Weimer wrote: * Michael Koch: There is no GNU extension (yet) that van work around this that I'm aware of. Do you think this (i.e. non-accessible files) is a problem at all? Does files really contain such filenames

[Bug classpath/24422] Proxy deserialization broken

2005-10-18 Thread cvs-commit at developer dot classpath dot org
--- Comment #2 from cvs-commit at developer dot classpath dot org 2005-10-18 08:22 --- Subject: Bug 24422 CVSROOT:/cvsroot/classpath Module name:classpath Branch: Changes by: Jeroen Frijters [EMAIL PROTECTED]05/10/18 08:03:31 Modified files: .

[fedora-java] Re: JOnAS 4.3.3 on gcj: test results

2005-10-18 Thread Andrew Haley
http://people.redhat.com/~aph/current-jonas-on-gcj-conformance-test-results.html Archit Shah pointed out that all the JMS tests were failing due to the class org.objectweb.joram.client.jms.admin.ObjectFactory not being installed. Fixing that brings our total up to 96.79%, which as far as I'm

Re: build failure - problems detecting freetype2 headers

2005-10-18 Thread Tom Tromey
Twisti == Christian Thalinger [EMAIL PROTECTED] writes: Twisti Nobody is listening to me: Twisti http://gcc.gnu.org/bugzilla/show_bug.cgi?id=22889 The updated patch looks good to me. Write a ChangeLog entry and email it and the patch to me, I'll check it in. Tom

Re: Multi-byte locales

2005-10-18 Thread Tom Tromey
Florian == Florian Weimer [EMAIL PROTECTED] writes: Florian Is there some GNU extension which can work around this issue? Nope. You could do it some hacky way, e.g. exec a second VM with different locale settings. Eww... Florian On a related note, is it possible to access the command line

0.19 release meeting - Wed Oct 19 21:00 UTC

2005-10-18 Thread Mark Wielaard
Hi all, We wanted to have a release the first week of November. So I thought it would be a good idea to send a reminder that people should see what the want to get in before that, and what they want to see tested so they feel confident that 0.19 will be a great developer snapshot worthy of

Re: 0.19 release meeting - Wed Oct 19 21:00 UTC

2005-10-18 Thread Martin Cordova
Hi think that it would be great if the graphics stuff gets enhanced for the november release, in particular the libraries required to make headless graphics work (for servlet based apps that use JFreeChart and similar components). This is the only thing that is not working in my test while porting

Re: 0.19 release meeting - Wed Oct 19 21:00 UTC

2005-10-18 Thread Robert Schuster
Hi, unfortunately I cannot attend the meeting because I am at our local public WLAN meeting at this time. If no one wants to make a summary send me the IRC log and I will make one. cu Robert Mark Wielaard wrote: Hi all, We wanted to have a release the first week of November. So I thought it

[cp-patches] FYI: java/io/ObjectInputStream.java

2005-10-18 Thread Jeroen Frijters
Hi, I committed the attached patch to fix proxy deserialization (bug 24422). Regards, Jeroen 2005-10-18 Jeroen Frijters [EMAIL PROTECTED] * java/io/ObjectInputStream.java (parseContent): Removed bogus println and fixed bug #24422. Index: java/io/ObjectInputStream.java

[cp-patches] FYI: ScrollPaneLayout fixes

2005-10-18 Thread Roman Kennke
Hi, The following patch solves a small but significant layout problem with JScrollPanes. The layout manager has to respect the insets of the JScrollPane properly. This is checked in. 2005-10-18 Roman Kennke [EMAIL PROTECTED] * javax/swing/ScrollPaneLayout.java

[cp-patches] FYI: Some JViewport fixes

2005-10-18 Thread Roman Kennke
Hi, This fixes some issues with JViewport. 2005-10-18 Roman Kennke [EMAIL PROTECTED] * javax/swing/JViewport.java (setView): Added repaint() call. (revalidate): Removed unnecessary and unspecified method. (reshape): Fire stateChanged if only the size changes.

[cp-patches] FYI: BasicComboBoxUI fixlets

2005-10-18 Thread David Gilbert
I committed this patch to fix a couple of very minor issues in the BasicComboBoxUI class: the button colors are now fetched from the UIDefaults, and the createEditor() method returns an editor that implements UIResource: 2005-10-18 David Gilbert [EMAIL PROTECTED] *

[cp-patches] FYI: AbstractButton fixlet

2005-10-18 Thread Roman Kennke
This prevents setEnabled() from getting active, if the actual value does not change. 2005-10-18 Roman Kennke [EMAIL PROTECTED] * javax/swing/AbstractButton.java Filled empty blocks with comments. (ButtonChangeListener.stateChanged): Moved implementation from

[cp-patches] Patch: JTree scrollPathToVisible fix

2005-10-18 Thread Lillian Angel
Fixes bug #24218 2005-10-18 Lillian Angel [EMAIL PROTECTED] * javax/swing/JTree.java (scrollPathToVisible): Reimplemented to make the path visible if its parent is not expanded. * javax/swing/plaf/basic/BasicTreeUI.java (installDefaults): Initialized

[cp-patches] Patch: BasicTextUI fix

2005-10-18 Thread Lillian Angel
Fixes bug #24338 2005-10-18 Lillian Angel [EMAIL PROTECTED] * javax/swing/plaf/basic/BasicTextUI.java (installDefaults): Set the selected text color for the text component. Index: javax/swing/plaf/basic/BasicTextUI.java

[cp-patches] FYI: BasicComboBoxUI fixlet

2005-10-18 Thread David Gilbert
I commited this patch to fix a failing Mauve test: 2005-10-18 David Gilbert [EMAIL PROTECTED] * javax/swing/plaf/basic/BasicComboBoxUI.java (installComponents): only set default editor if the current editor is null or implements UIResource,

[cp-patches] FYI: JComboBox fixes

2005-10-18 Thread David Gilbert
This patch fixes some failing Mauve tests: 2005-10-18 David Gilbert [EMAIL PROTECTED] * javax/swing/JComboBox.java (setModel): update the selectedItemReminder field, (selectedItemChanged): only send ItemEvent.SELECTED event if the new selection is non-null.

Re: [cp-patches] FYI: BasicTreeUI fix

2005-10-18 Thread Lillian Angel
Noticed the expanded and collapsed icon defaults were set to the wrong icons. Fixed this and reworked mousePressed to work with these changes. 2005-10-18 Lillian Angel [EMAIL PROTECTED] * javax/swing/plaf/basic/BasicTreeUI.java: Removed leafIcon field. (BasicTreeUI):

Re: [cp-patches] FYI: BasicScrollBarUI fixlet

2005-10-18 Thread Robert Schuster
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi Roman, For all Swing hackers: As a general rule, do not put repaint and revalidate calls in event handlers. When a property change must trigger a repaint and/or revalidate, then this should happen in the corresponding setter method. This makes

[cp-patches] Patch: JTable fixlet

2005-10-18 Thread Lillian Angel
After running some apps that work fine with Sun and IBM, I got several NPEs with JTable. 2005-10-18 Lillian Angel [EMAIL PROTECTED] * javax/swing/JTable.java (JTable): Moved code around so all models are set before any other function is called. Prevents all NPEs with

[cp-patches] Patch: GridBagLayout fixlet

2005-10-18 Thread Lillian Angel
Fixed a NullPointerException 2005-10-18 Lillian Angel [EMAIL PROTECTED] * java/awt/GridBagLayout.java (GetLayoutInfo): Added a null check for lastComponent. Prevents NPE. Index: java/awt/GridBagLayout.java

[cp-patches] FYI: filled empty blocks in javax.swing.colorchooser

2005-10-18 Thread Roman Kennke
I filled empty blocks (like method bodies) in javax.swing.colorchoosers with comments either stating that this does nothing or needs to be implemented. 2005-10-18 Roman Kennke [EMAIL PROTECTED] * javax/swing/colorchooser/AbstractColorChooserPanel.java: *

[cp-patches] FYI: javax.swing.filechooser empty blocks

2005-10-18 Thread Roman Kennke
I filled two empty blocks in javax.swing.filechooser. 2005-10-18 Roman Kennke [EMAIL PROTECTED] * javax/swing/filechooser/FileFilter.java: * javax/swing/filechooser/FileView.java: Filled empty blocks with comments. /Roman Index: javax/swing/filechooser/FileFilter.java

Re: [cp-patches] FYI: filled empty blocks in javax.swing.colorchooser

2005-10-18 Thread Robert Schuster
Hi Roman, Index: javax/swing/colorchooser/DefaultSwatchChooserPanel.java === RCS file: /cvsroot/classpath/classpath/javax/swing/colorchooser/DefaultSwatchChooserPanel.java,v retrieving revision 1.5 diff -u -r1.5

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

2005-10-18 Thread Roman Kennke
CVSROOT:/cvsroot/classpath Module name:classpath Branch: Changes by: Roman Kennke [EMAIL PROTECTED]05/10/18 13:42:55 Modified files: . : ChangeLog javax/swing: AbstractButton.java Log message: 2005-10-18 Roman Kennke

[commit-cp] classpath ./ChangeLog javax/swing/plaf/metal/Me...

2005-10-18 Thread David Gilbert
CVSROOT:/cvsroot/classpath Module name:classpath Branch: Changes by: David Gilbert [EMAIL PROTECTED] 05/10/18 14:11:26 Modified files: . : ChangeLog javax/swing/plaf/metal: MetalComboBoxUI.java Log message: 2005-10-18 David

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

2005-10-18 Thread Lillian Angel
CVSROOT:/cvsroot/classpath Module name:classpath Branch: Changes by: Lillian Angel [EMAIL PROTECTED] 05/10/18 15:02:43 Modified files: . : ChangeLog javax/swing/plaf/basic: BasicTreeUI.java javax/swing: JTree.java

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

2005-10-18 Thread Lillian Angel
CVSROOT:/cvsroot/classpath Module name:classpath Branch: Changes by: Lillian Angel [EMAIL PROTECTED] 05/10/18 15:15:48 Modified files: . : ChangeLog javax/swing/plaf/basic: BasicTextUI.java Log message: 2005-10-18 Lillian

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

2005-10-18 Thread David Gilbert
CVSROOT:/cvsroot/classpath Module name:classpath Branch: Changes by: David Gilbert [EMAIL PROTECTED] 05/10/18 15:27:55 Modified files: . : ChangeLog javax/swing/plaf/basic: BasicComboBoxUI.java Log message: 2005-10-18 David

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

2005-10-18 Thread Lillian Angel
CVSROOT:/cvsroot/classpath Module name:classpath Branch: Changes by: Lillian Angel [EMAIL PROTECTED] 05/10/18 17:46:38 Modified files: . : ChangeLog javax/swing/plaf/basic: BasicTreeUI.java javax/swing/plaf/metal:

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

2005-10-18 Thread Lillian Angel
CVSROOT:/cvsroot/classpath Module name:classpath Branch: Changes by: Lillian Angel [EMAIL PROTECTED] 05/10/18 20:06:15 Modified files: . : ChangeLog java/awt : GridBagLayout.java Log message: 2005-10-18 Lillian Angel

[commit-cp] classpath ./ChangeLog javax/swing/event/EventLi...

2005-10-18 Thread Roman Kennke
CVSROOT:/cvsroot/classpath Module name:classpath Branch: Changes by: Roman Kennke [EMAIL PROTECTED]05/10/18 20:38:06 Modified files: . : ChangeLog javax/swing/event: EventListenerList.java

[commit-cp] classpath ./ChangeLog javax/swing/filechooser/F...

2005-10-18 Thread Roman Kennke
CVSROOT:/cvsroot/classpath Module name:classpath Branch: Changes by: Roman Kennke [EMAIL PROTECTED]05/10/18 20:42:03 Modified files: . : ChangeLog javax/swing/filechooser: FileFilter.java FileView.java Log message:

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

2005-10-18 Thread Roman Kennke
CVSROOT:/cvsroot/classpath Module name:classpath Branch: Changes by: Roman Kennke [EMAIL PROTECTED]05/10/18 22:10:33 Modified files: . : ChangeLog javax/swing/plaf/basic: BasicBorders.java