Re: [cp-patches] FYI: Implemented missing RMI method

2005-10-01 Thread Meskauskas Audrius
Since jdk 1.3 both CORBA and RMI-IIOP should be able to load and run remote classes from the URL's that can be automatically included into IIOP messages. This allows to transfer the algorithm to remote side rather than just transferring the data. Potentially very powerful feature, but such

Re: [cp-patches] fix GdkGraphics2D segfault

2005-10-01 Thread Mark Wielaard
Hi Andreas/All, On Sat, 2005-10-01 at 00:10 +0200, Andreas Tobler wrote: I commited this one since I feel it goes under obvious. If you do not think so, I'll revert asap. I wanted to ask Tom for official approval. But I did not reach him. He gave me offline confirmation that this is a

[cp-patches] DOC/WEB: Update Tasks link

2005-10-01 Thread Mark Wielaard
Hi, This updates the Tasks menu items and Tasks list to redirect to the mediation wiki as Sven suggested. It will be easier to maintain just one directory of open tasks there. 2005-10-01 Mark Wielaard [EMAIL PROTECTED] * doc/www.gnu.org/include/layout.wml: Point Tasks menu item to

[cp-patches] FYI: Fixed URLClassLoader regression (on Windows)

2005-10-01 Thread Jeroen Frijters
Hi, I committed the attached patch to fix a regression introduced in the previous URLClassLoader change. Regards, Jeroen 2005-10-01 Jeroen Frijters [EMAIL PROTECTED] * java/net/URLClassLoader.java (Resource.name): Removed field. (JarURLResource.name): Added field.

Re: [cp-patches] RFC: PR classpath/24086, PR classpath/24091 (HTTPURLConnection et al.)

2005-10-01 Thread Tom Tromey
David == David Daney [EMAIL PROTECTED] writes: David This patch is a partial rewrite of the David gnu/java/net/protocol/http package. Awesome! I gave this a quick read-through. I want to read it again, and I'd like it if Chris commented on it. David Map ret = new LinkedHashMap(); Might

[cp-patches] Patch: FYI: fix PR 23880

2005-10-01 Thread Tom Tromey
I'm checking this in. This adds hashCode() methods in a few places as pointed out by PR 23880. I chose relatively simple computations; I doubt these hash functions matter much as long as the general contract is satisfied. Tom 2005-10-01 Tom Tromey [EMAIL PROTECTED] PR

[cp-patches] SampleModel/ComponentSampleModel fix

2005-10-01 Thread Thomas Fitzsimmons
Hi, I committed a fix for this API problem reported by JAPI. Tom 2005-10-01 Thomas Fitzsimmons [EMAIL PROTECTED] * java/awt/image/ComponentSampleModel.java (numBands): Shadow package-private field in parent class with this protected field. *

[cp-patches] RFC: MetalScrollBarPropertyChangeHandler.propertyChange() fixes

2005-10-01 Thread Mark Wielaard
Hi, This was in my tree after DevJam. Could someone review them to make sure they make sense? 2005-10-01 Mark Wielaard [EMAIL PROTECTED] * javax/swing/plaf/metal/MetalScrollBarUI.java (MetalScrollBarPropertyChangeHandler.propertyChange): Only set free standing when increase or

[cp-patches] Patch: FYI: PR 23890

2005-10-01 Thread Tom Tromey
I'm checking this in. This fixes PR 23890. Neither Calendar.equals nor GregorianCalendar.equals were doing the correct checks (the 1.5 javadoc is more complete here...). Tom 2005-10-01 Tom Tromey [EMAIL PROTECTED] PR classpath/23890: * java/util/Calendar.java (equals):

[cp-patches] MetalBorder.paintBorder strangeness

2005-10-01 Thread Mark Wielaard
Hi, Here is another patch made during a DevJam hacking session. The patch made an application work. But the code looks somewhat strange to me. Should paintBorder really explicitly check for a JTextComponent here? Cheers, Mark Index: javax/swing/plaf/metal/MetalBorders.java

Re: [cp-patches] MetalBorder.paintBorder strangeness

2005-10-01 Thread David Gilbert
Mark Wielaard wrote: Hi, Here is another patch made during a DevJam hacking session. The patch made an application work. But the code looks somewhat strange to me. Should paintBorder really explicitly check for a JTextComponent here? Cheers, Mark

[Fwd: Re: [cp-patches] RFC: MetalScrollBarPropertyChangeHandler.propertyChange() fixes]

2005-10-01 Thread David Gilbert
Sorry, I forgot to hit 'reply-all' for my response here. Regards, Dave ---BeginMessage--- Mark Wielaard wrote: Hi, This was in my tree after DevJam. Could someone review them to make sure they make sense? 2005-10-01 Mark Wielaard [EMAIL PROTECTED] *

[cp-patches] RFC: Naive GdkGraphics2D.copyArea() implementation

2005-10-01 Thread Mark Wielaard
Hi, Here is a somewhat naive implementation of GdkGraphics2D.copyArea() that Wolfgang and I made up during DevJam to get Jump started. 2005-10-01 Mark Wielaard [EMAIL PROTECTED] * gnu/java/awt/peer/gtk/GdkGraphics2D.java (GdkGraphics2D(GdkGraphics2D,int, int, int,int)): New