Re: [cp-patches] RFC: DefaultHighlighter.DefaultHighlighterPainter.paint rewritten

2006-03-06 Thread Roman Kennke
Hi Robert, Am Montag, den 06.03.2006, 03:22 +0100 schrieb Robert Schuster: Hi, this is the patch which should make the DefaultHighlighter.DefaultHighlighterPainter able to paint lines with different font sizes. However I cannot really test this because JTextPane cannot display such

[cp-patches] FYI: Fixed/VariableHeightLayoutCache API doc tag fixes

2006-03-06 Thread David Gilbert
This patch (committed) fixes some bad API doc tags (and also reformats the source). These classes are complete stubs, so I'll file a bug report for that in a moment: 2006-03-06 David Gilbert [EMAIL PROTECTED] * javax/swing/tree/FixedHeightLayoutCache.java: Reformatted and fixed

[cp-patches] Manifest patch for review

2006-03-06 Thread Raif S. Naffah
hello all, this patch --not committed-- allows a JAR's Manifest file to be generated with platform-independent line-endings. since there are no Mauve tests --the only test i used was the jarsigner tool i'm developing-- i would appreciate it if somebody can go over the patch and check if it's

[cp-patches] Re: FYI: HTTPConnection.Pool fixlet

2006-03-06 Thread Christian Thalinger
On Sat, 2006-03-04 at 21:53 +0100, Mark Wielaard wrote: This should solve the issue Christian was seeing. Yes, looks good. Thanks! TWISTI

Re: [cp-patches] FYI: Fixed/VariableHeightLayoutCache API doc tag fixes

2006-03-06 Thread Robert Schuster
Hi. David Gilbert wrote: These classes are complete stubs, Eeek! so I'll file a bug report for that in a moment: Thanks for doing so! cya Robert signature.asc Description: OpenPGP digital signature

Re: [cp-patches] FYI: Remove freetype2 configure checks

2006-03-06 Thread Christian Thalinger
On Fri, 2006-02-17 at 11:47 +0100, Mark Wielaard wrote: So it seems we need to revert the patch in the first message. Could you prepare such a patch and test it on those two systems? Sorry for the long delay. Here is a patch tested on powerpc-darwin and x86_64-linux. I guess this one should

[cp-patches] FYI: PlainDocument.insertUpdate performance fix

2006-03-06 Thread Robert Schuster
Hi, the following patch should affect PlainDocument.insertUpdate memory performance in a positive way. Before the change it contained this evil line: String str = content.getString(0, content.getLength()); which is now changed to: String str = content.getString(offset, eventLength); Without

Re: [Fwd: Re: [cp-patches] RFC: file resources can be directory too]

2006-03-06 Thread Mark Wielaard
Hi Olivier, On Sun, 2006-03-05 at 18:24 +0100, Olivier Jolly wrote: since no one objected on the fact that we should consider directories as valid resources, I committed the attached trivial patch with this changelog 2006-03-05 Olivier Jolly [EMAIL PROTECTED] Fixes PR 22813

[cp-patches] FYI: Update NEWS entries and version number

2006-03-06 Thread Mark Wielaard
Hi, This adds a couple more NEWS items (apologies for the things I forget and thanks to those that already added items before) and reformats the items a bit for inclusion in the release announcement. I will also apply this part to the generics and 0.90 branch. It also updates the version number

Re: [cp-patches] FYI: Update NEWS entries and version number

2006-03-06 Thread David Gilbert
Mark Wielaard wrote: Hi, This adds a couple more NEWS items (apologies for the things I forget and thanks to those that already added items before) and reformats the items a bit for inclusion in the release announcement. I will also apply this part to the generics and 0.90 branch. It also

Re: [cp-patches] FYI: Remove freetype2 configure checks

2006-03-06 Thread Mark Wielaard
Hi Christian, On Mon, 2006-03-06 at 11:17 +0100, Christian Thalinger wrote: Sorry for the long delay. Here is a patch tested on powerpc-darwin and x86_64-linux. I guess this one should also be applied to the release branch (if not too late). 2006-03-06 Christian Thalinger [EMAIL

[cp-patches] FYI: Adding last minute swing/text patches to 0.90 and generics branch

2006-03-06 Thread Mark Wielaard
Hi, I am adding these last minute patches from Robert to the 0.90 and generics branch. 2006-03-06 Robert Schuster [EMAIL PROTECTED] * javax/swing/text/GapContent.java: (insertString): Throw exception when argument is below zero. 2006-03-06 Robert Schuster [EMAIL PROTECTED]

[cp-patches] FYI: MetalLookAndFeel.initComponentDefaults() minor fix

2006-03-06 Thread David Gilbert
This patch (committed) replaces 'new Boolean(true)' with 'Boolean.TRUE' to save creating a new instance: 2006-03-06 David Gilbert [EMAIL PROTECTED] * javax/swing/plaf/metal/MetalLookAndFeel.java (initComponentDefaults): Use Boolean.TRUE for

[cp-patches] FYI: Add 0.90 announcement

2006-03-06 Thread Mark Wielaard
Hi, This adds the new release to our homepage: 2006-03-06 Mark Wielaard [EMAIL PROTECTED] * doc/www.gnu.org/announce/20060306.wml: New file. * doc/www.gnu.org/newsitems.txt: Add 0.90 release announcement. * doc/www.gnu.org/downloads/downloads.wml: Add 0.90. Committed

[cp-patches] FYI: Implementing the distribute garbage collector

2006-03-06 Thread Audrius Meskauskas
This patch implements the missing parts of the GNU Classpath distributed garbage collector. It should fix the bug and also prevent the memory leaks that were possible in the applications using many short living remote objects. The bug 25526 reflected the larger problem that Classpath does not

[cp-patches] FYI: CombinedClassLoader fix.

2006-03-06 Thread Audrius Meskauskas
This fixes some problems in CombinedClassLoader that may arise when using the application without pre-generated RMI stubs. 2006-03-07 Audrius Meskauskas [EMAIL PROTECTED] * gnu/java/rmi/server/CombinedClassLoader.java (findClass, findLibrary, findResouce, findResources): check all

Re: [cp-patches] RFC: Headers fixlet

2006-03-06 Thread David Daney
Wolfgang Baer wrote: Hi, I wrote mauve tests for the various HttpURLConnection request properties methods and notices some minor bugs in the new Headers implementation. The patch fixes these and adds documentation to this class in more detail. The tests show that put method used in

[cp-patches] Patch: FYI: Math.ulp and StrictMath.ulp

2006-03-06 Thread Tom Tromey
I'm checking this in. This adds Math.ulp and StrictMath.ulp. As far as I can tell these should always return the same results, so I made StrictMath's implementation simply call Math's. I added a few tests for this to Mauve. Tom 2006-03-06 Tom Tromey [EMAIL PROTECTED] *

[cp-testresults] FAIL: regressions for mauve-jamvm on Mon Mar 6 20:59:57 UTC 2006

2006-03-06 Thread cpdev
Baseline from: Sun Mar 5 19:36:19 UTC 2006 Regressions: FAIL: gnu.testlet.java.net.URLClassLoader.getResource: no . (number 1) FAIL: gnu.testlet.java.net.URLClassLoader.getResource: no .. (number 1) Improvements: PASS: gnu.testlet.java.io.File.UnicodeURI: toURI (number 2) PASS:

ANNOUNCE: Jato - a JIT compiler for Java

2006-03-06 Thread Pekka J Enberg
Hi all, I am pleased to announce Jato, a project to build a free software optimizing JIT compiler for Java with virtual machine enhancements to support debugging and profiling with existing Java tools. The compiler is still in the early stages so this announcement is directed at interested JIT

Re: idl to java compiler:There is the IDL language description file under BSD. Can we use it?

2006-03-06 Thread Audrius Meskauskas
There is the IDL language desciption for the JavaCC parser generator at https://javacc.dev.java.net/files/documents/17/2916/IDLjj, inside JavaCC project The license is not stated explicitly (also not stated in the file header), but the license of the whole javacc project is BSD. Can we use

[Bug swing/26488] Menu selection behavior differs from Sun impl when mouse is depressed

2006-03-06 Thread langel at redhat dot com
--- Comment #1 from langel at redhat dot com 2006-03-06 17:39 --- I think this works. I have tested it with an AWT testcase as well as the swing demo. If it is still broken, please attach a test case to show the problem. -- langel at redhat dot com changed: What

ANN: GNU Classpath 0.90 A La Mort Subite released

2006-03-06 Thread Mark Wielaard
GNU Classpath 0.90 A La Mort Subite released GNU Classpath, essential libraries for java, is a project to create free core class libraries for use with runtimes, compilers and tools for the java programming language. The GNU Classpath developer snapshot releases are not directly aimed at the end

Re: idl to java compiler:There is the IDL language description file under BSD. Can we use it?

2006-03-06 Thread Per Bothner
Audrius Meskauskas wrote: There is the IDL language desciption for the JavaCC parser generator at https://javacc.dev.java.net/files/documents/17/2916/IDLjj, inside JavaCC project The license is not stated explicitly (also not stated in the file header), but the license of the whole javacc

Re: idl to java compiler:There is the IDL language description file under BSD. Can we use it?

2006-03-06 Thread Audrius Meskauskas
Per Bothner wrote: Audrius Meskauskas wrote: There is the IDL language desciption for the JavaCC parser generator at https://javacc.dev.java.net/files/documents/17/2916/IDLjj, inside JavaCC project The license is not stated explicitly (also not stated in the file header), but the license of

Re: idl to java compiler:There is the IDL language description file under BSD. Can we use it?

2006-03-06 Thread Per Bothner
Audrius Meskauskas wrote: It is a kind of not a very honest behavior, to put the BSD on the top and something incompatible in the file headers. I don't think it is dishonest - just sloppy. However, I complained about the problem a year ago, and they still released 4.0 without fixing it (or at

jessie-nio branch

2006-03-06 Thread Casey Marshall
Just a quick FYI that I've made the `jessie-nio' branch, and have checked in some of the initial code for the NIO rewrite. SSL support is currently broken in this branch, because only a very small part of the rewrite is done. My plan for developing this is: * Convert protocol objects to

[Bug awt/26583] Popup Menus do not stay open

2006-03-06 Thread langel at redhat dot com
--- Comment #1 from langel at redhat dot com 2006-03-06 18:46 --- Created an attachment (id=10975) -- (http://gcc.gnu.org/bugzilla/attachment.cgi?id=10975action=view) Gtk test case -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=26583

[commit-cp] classpath gnu/java/net/protocol/http/HTTPURLCon...

2006-03-06 Thread Wolfgang Baer
CVSROOT:/cvsroot/classpath Module name:classpath Branch: Changes by: Wolfgang Baer [EMAIL PROTECTED] 06/03/06 19:08:30 Modified files: gnu/java/net/protocol/http: HTTPURLConnection.java . : ChangeLog java/net :

[commit-cp] classpath ChangeLog NEWS configure.ac [classpath-0_90-branch]

2006-03-06 Thread Mark Wielaard
CVSROOT:/cvsroot/classpath Module name:classpath Branch: classpath-0_90-branch Changes by: Mark Wielaard [EMAIL PROTECTED] 06/03/06 17:15:21 Modified files: . : ChangeLog NEWS configure.ac Log message: * configure.ac: Set version to

[commit-cp] classpath ./ChangeLog examples/gnu/classpath/ex...

2006-03-06 Thread Robert Schuster
CVSROOT:/cvsroot/classpath Module name:classpath Branch: Changes by: Robert Schuster [EMAIL PROTECTED] 06/03/06 15:42:46 Modified files: . : ChangeLog examples/gnu/classpath/examples/swing: Demo.java Log message: 2006-03-06

[commit-cp] classpath ./ChangeLog javax/swing/text/DefaultC... [classpath-0_90-branch]

2006-03-06 Thread Mark Wielaard
CVSROOT:/cvsroot/classpath Module name:classpath Branch: classpath-0_90-branch Changes by: Mark Wielaard [EMAIL PROTECTED] 06/03/06 15:44:02 Modified files: . : ChangeLog javax/swing/text: DefaultCaret.java GapContent.java

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

2006-03-06 Thread Robert Schuster
CVSROOT:/cvsroot/classpath Module name:classpath Branch: Changes by: Robert Schuster [EMAIL PROTECTED] 06/03/06 02:29:02 Modified files: . : ChangeLog javax/swing/plaf/basic: BasicTextUI.java Log message: 2006-03-06 Robert

[commit-cp] classpath gnu/java/rmi/server/UnicastServer.jav...

2006-03-06 Thread Audrius Meskauskas
CVSROOT:/sources/classpath Module name:classpath Branch: Changes by: Audrius Meskauskas [EMAIL PROTECTED] 06/03/06 23:42:27 Modified files: gnu/java/rmi/server: UnicastServer.java UnicastRef.java . : ChangeLog gnu/java/rmi/dgc:

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

2006-03-06 Thread David Gilbert
CVSROOT:/sources/classpath Module name:classpath Branch: Changes by: David Gilbert [EMAIL PROTECTED] 06/03/06 21:08:48 Modified files: . : ChangeLog javax/swing/plaf/metal: MetalLookAndFeel.java Log message: 2006-03-06 David

[commit-cp] classpath ./ChangeLog ./configure.ac native/jni... [generics-branch]

2006-03-06 Thread Mark Wielaard
CVSROOT:/cvsroot/classpath Module name:classpath Branch: generics-branch Changes by: Mark Wielaard [EMAIL PROTECTED] 06/03/06 15:15:07 Modified files: . : ChangeLog configure.ac native/jni/gtk-peer: Makefile.am Log message:

[commit-cp] classpath ./ChangeLog javax/swing/tree/FixedHei...

2006-03-06 Thread David Gilbert
CVSROOT:/sources/classpath Module name:classpath Branch: Changes by: David Gilbert [EMAIL PROTECTED] 06/03/06 09:18:53 Modified files: . : ChangeLog javax/swing/tree: FixedHeightLayoutCache.java

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

2006-03-06 Thread David Gilbert
CVSROOT:/sources/classpath Module name:classpath Branch: Changes by: David Gilbert [EMAIL PROTECTED] 06/03/05 22:01:58 Modified files: . : ChangeLog javax/swing/plaf/metal: MetalComboBoxButton.java