Re: [cp-patches] jdwp processor bugfixes

2006-06-01 Thread Keith Seitz
Martin wrote: Keith Seitz wrote: No, I do not have write access to the classpath CVS. I can commit for you. I have committed your changes. Thanks for the patches! Keith

Re: [cp-patches] [jessie-nio] merge scatter-gather NIO support

2006-06-01 Thread Casey Marshall
On Jun 1, 2006, at 3:07 PM, Tom Tromey wrote: "Casey" == Casey Marshall <[EMAIL PROTECTED]> writes: Casey> Hi, I've merged Michael Barker's scatter/gather NIO patch to the Casey> jessie-nio branch. I had intended to do a more complete merge of HEAD Casey> into the branch, because a lot has

[cp-patches] cleanup hardcoded Xlibs

2006-06-01 Thread Andreas Tobler
Hello all, this patch makes some X11 libs dependent on configury. And removes hardcoded Makefile.am entries. Ok? Thanks, Andreas 2006-06-02 Andreas Tobler <[EMAIL PROTECTED]> * configure.ac: Add -lX11 and -lXtst to XTEST_LIBS. (XTEST_LIBS): New, substitute. * nat

Re: [cp-patches] [jessie-nio] merge scatter-gather NIO support

2006-06-01 Thread Tom Tromey
> "Casey" == Casey Marshall <[EMAIL PROTECTED]> writes: Casey> Hi, I've merged Michael Barker's scatter/gather NIO patch to the Casey> jessie-nio branch. I had intended to do a more complete merge of HEAD Casey> into the branch, because a lot has changed since I originally made Casey> th

Re: [cp-patches] Patch: Appletviewer fix

2006-06-01 Thread Tom Tromey
> "Tom" == Thomas Fitzsimmons <[EMAIL PROTECTED]> writes: Tom> This is fine for now, but I'm thinking we may be working around a Tom> general problem with our URL class. Shouldn't Tom> http://gnu.org/software/classpath and Tom> http://gnu.org/software/classpath/ resolve to the same location T

Re: [cp-patches] RFC: qt-peer: remove INIT_LOAD_LIBRARY

2006-06-01 Thread Tom Tromey
> "Boris" == Boris Du¡ek <[EMAIL PROTECTED]> writes: Boris> according to Boris> http://developer.classpath.org/pipermail/classpath-patches/2006-May/002443.html, Boris> there is now no need to check for INIT_LOAD_LIBRARY in gtk-peer Boris> because of some gcj change, so I assume that's the sam

[cp-patches] RFC: qt-peer: remove INIT_LOAD_LIBRARY

2006-06-01 Thread Boris Dušek
Hi, according to http://developer.classpath.org/pipermail/classpath-patches/2006-May/002443.html, there is now no need to check for INIT_LOAD_LIBRARY in gtk-peer because of some gcj change, so I assume that's the same case for qt-peer. I send the patch that removes the check from qt-peer (there

Re: [cp-patches] Cleanup new compiler warnings

2006-06-01 Thread Andreas Tobler
Hi Mark, Mark Wielaard wrote: Hi Andreas, On Thu, 2006-06-01 at 21:16 +0200, Andreas Tobler wrote: Mark Wielaard wrote: * native/jni/gtk-peer/gnu_java_awt_peer_gtk_GdkTextLayout.c (Java_gnu_java_awt_peer_gtk_GdkTextLayout_cairoDrawGdkTextLayout): Remove unused cairographics2d str

[cp-patches] RFC: BasicSplitPaneUI layout manager fix

2006-06-01 Thread Robert Schuster
Hi, the attached patch will make the layout manager classes inside BasicSplitPaneUI return fixed values instead of asking the component. The reason why I did that is that without the patch doing a JSplitPane.getAlignmentX() will result in a StackOverflow. A JSplitPane has its own layout classes as

[cp-patches] FYI: Add shutdown hook to Command

2006-06-01 Thread Raif S. Naffah
hello all, the attached patch --already committed-- adds a shutdown hook to the Command class in the keytool package. 2006-06-02 Raif S. Naffah <[EMAIL PROTECTED]> * tools/gnu/classpath/tools/keytool/Command.java (shutdownThread): New field. (Command): Add the shutdown hook.

Re: [cp-patches] Cleanup new compiler warnings

2006-06-01 Thread Mark Wielaard
Hi Andreas, On Thu, 2006-06-01 at 21:16 +0200, Andreas Tobler wrote: > Mark Wielaard wrote: > > > * native/jni/gtk-peer/gnu_java_awt_peer_gtk_GdkTextLayout.c > > (Java_gnu_java_awt_peer_gtk_GdkTextLayout_cairoDrawGdkTextLayout): > > Remove unused cairographics2d struct. > > (_move

[cp-patches] FYI: use @VM_BINARY@ with jarsigner and keytool scripts

2006-06-01 Thread Raif S. Naffah
hello all, the attached patch --already committed-- use @VM_BINARY@, instead of $JAVA in jarsigner and keytool launcher scripts. 2006-06-02 Raif S. Naffah <[EMAIL PROTECTED]> * tools/jarsigner.in: Use @[EMAIL PROTECTED] * tools/keytool.in: Likewise. cheers; rsn Index: keytoo

Re: [cp-patches] Cleanup new compiler warnings

2006-06-01 Thread Andreas Tobler
Hi Mark, Mark Wielaard wrote: * native/jni/gtk-peer/gnu_java_awt_peer_gtk_GdkTextLayout.c (Java_gnu_java_awt_peer_gtk_GdkTextLayout_cairoDrawGdkTextLayout): Remove unused cairographics2d struct. (_moveTo, _lineTo, _quadTo, _curveTo): Mark arguments const. This part results in

[cp-patches] FYI: Color fix.

2006-06-01 Thread Sven de Marothy
This is needed or the pattern won't change on switching from a texture or gradient fill to solid color. 2006-06-01 Sven de Marothy <[EMAIL PROTECTED]> * gnu/java/awt/peer/gtk/CairoGraphics2D.java: (setColor): Update the cairo paint. Index: gnu/java/awt/peer/gtk/CairoGraphics2D

Re: [cp-patches] Patch: Appletviewer fix

2006-06-01 Thread Lillian Angel
On Thu, 2006-06-01 at 13:26 -0400, Thomas Fitzsimmons wrote: > Lillian Angel wrote: > > This fixes the classloading problem with a lot of applets. > > > > 2006-06-01 Lillian Angel <[EMAIL PROTECTED]> > > > > * tools/gnu/classpath/tools/appletviewer/AppletTag.java > > (prependCod

Re: [cp-patches] Patch: Appletviewer fix

2006-06-01 Thread Thomas Fitzsimmons
Lillian Angel wrote: This fixes the classloading problem with a lot of applets. 2006-06-01 Lillian Angel <[EMAIL PROTECTED]> * tools/gnu/classpath/tools/appletviewer/AppletTag.java (prependCodebase): Fixed check. No dirname was ever considered to be a file, so every applet f

[cp-patches] RFC: fix for PR27864

2006-06-01 Thread Robert Schuster
Hi, this patch fixes PR27864 for me. Ok to commit? ChangeLog: 2006-06-01 Robert Schuster <[EMAIL PROTECTED]> Fixes PR27864. * gnu/xml/dom/DomIterator.java: (successor): Changed expression. cya Robert Index: gnu/xml/dom/DomIterator.java

[cp-patches] FYI: Add exception to LogManager warning message

2006-06-01 Thread Mark Wielaard
Hi, We weren't always supplying the original exception that caused the LogManager to print a warning. Which helps debugging issues as reported in http://gcc.gnu.org/bugzilla/show_bug.cgi?id=27857 This patch adds them in all cases: 2006-06-01 Mark Wielaard <[EMAIL PROTECTED]> * java/util

[cp-patches] Patch: Appletviewer fix

2006-06-01 Thread Lillian Angel
This fixes the classloading problem with a lot of applets. 2006-06-01 Lillian Angel <[EMAIL PROTECTED]> * tools/gnu/classpath/tools/appletviewer/AppletTag.java (prependCodebase): Fixed check. No dirname was ever considered to be a file, so every applet fell into the if-

Re: [cp-patches] [patch] qt-peer - fixes SEGFAULT on awt Demo

2006-06-01 Thread Sven de Marothy
On Thu, 2006-06-01 at 11:13 +0200, Boris Dušek wrote: > On Monday 29 May 2006 11:39, Boris Dušek wrote: > > Hi, > > > > this patch fixes a SEGFAULT of gnu.classpath.examples.awt.Demo when using > > qt-peer as AWT toolkit. Not sure why it did not work before, but I have > > cleaned up the code a bit

[cp-patches] FYI: AccessibleJTable stub methods

2006-06-01 Thread Roman Kennke
I implemented the remaining stubs in AccessibleJTable. This is quite a monster. While experimenting with AccessibleJTable in BeanShell I noticed that the RI has a couple more inner classes AccessibleJTableHeader and AccessibleJTableHeaderCell in there, which are created by a couple of methods in Ac

[cp-patches] FYI: Trivial Texturepaint fix

2006-06-01 Thread Sven de Marothy
We needed the texture one pixel larger to not have lines between the tiles. 2006-06-01 Sven de Marothy <[EMAIL PROTECTED]> * gnu/java/awt/peer/gtk/CairoGraphics2D.java: (setPaint): Scale +1 pixel larger. Index: gnu/java/awt/peer/gtk/CairoGraphics2D.java ===

[cp-patches] FYI: PR27854/DataBuffers

2006-06-01 Thread Sven de Marothy
Our old code couldn't handle custom DataBuffer implementations. Fixes that (PR27854), and also some bugs in our custom implementation (CairoSurface). 2006-06-01 Sven de Marothy <[EMAIL PROTECTED]> PR 27854 * gnu/java/awt/Buffers.java (getData): Reimplement. * gnu/java/aw

[cp-patches] FYI: GdkTextLayout improvements

2006-06-01 Thread Sven de Marothy
2006-06-01 Sven de Marothy <[EMAIL PROTECTED]> * gnu/java/awt/peer/gtk/CairoGraphics2D.java (drawImage): Check for zero size. * gnu/java/awt/peer/gtk/GdkTextLayout.java: (setFont): Declare new native method. (GdkTextLayout): Read some attributes. *

[cp-patches] FYI:Icon factory for ImageView

2006-06-01 Thread Audrius Meskauskas
javax.swing.text.html.ImageView needs to forge two icons (image is being loaded and no image is available). I commit the factory that creates these two icons. They are not pixel to pixel identical, but follows the same logical description (a sheet of paper with image and a broken sheet of pape

Re: [cp-patches] [patch] qt-peer - fixes SEGFAULT on awt Demo

2006-06-01 Thread Boris Dušek
On Monday 29 May 2006 11:39, Boris Dušek wrote: > Hi, > > this patch fixes a SEGFAULT of gnu.classpath.examples.awt.Demo when using > qt-peer as AWT toolkit. Not sure why it did not work before, but I have > cleaned up the code a bit and it works now. > > Regards, > Boris Dusek Hi, if there are no

Re: [cp-patches] Patch: lazify InetSocketAddress hostname lookups

2006-06-01 Thread Anthony Green
On Wed, 2006-05-31 at 18:29 -0500, Tom Tromey wrote: > > "Anthony" == Anthony Green <[EMAIL PROTECTED]> writes: > > Anthony> I don't see anything obviously bad that can happen if these aren't > Anthony> synchronized. What are you seeing? > > Actually, I think your original patch is fine. I

[cp-patches] FYI: Improve BufImGraph stuff again

2006-06-01 Thread Sven de Marothy
2006-06-01 Sven de Marothy <[EMAIL PROTECTED]> * gnu/java/awt/peer/gtk/BufferedImageGraphics.java (updateBufferedImage): Fix some errors. Index: gnu/java/awt/peer/gtk/BufferedImageGraphics.java === RCS file: /sourc