[cp-patches] FYI: Updated tools document author

2006-06-11 Thread Raif S. Naffah
hello all, the attached patch --already committed-- updates the author of the tools document to "The GNU Classpath Team". 2006-06-12 Raif S. Naffah <[EMAIL PROTECTED]> * doc/tools.texinfo: Replaced original author with "The GNU Classpath Team". cheers; rsn Index: tools.texinfo =

[cp-patches] Re: fix for ConfigFileParser

2006-06-11 Thread Raif S. Naffah
hello Tom, On Monday 12 June 2006 03:17, Tom Tromey wrote: > > "Raif" == Raif S Naffah <[EMAIL PROTECTED]> writes: > > Raif> String t = tokens[i]; > Raif> -if > (Character.isJavaIdentifierStart(cn.toCharArray()[0])) Raif> - > abort(""); > Raif> +if (! > Charac

[cp-patches] FYI: add appletviewer and gcjwebplugin documentation

2006-06-11 Thread Thomas Fitzsimmons
Hi, I added to tools.texinfo an Applet Tools chapter containing appletviewer and gcjwebplugin sections. Tom 2006-06-11 Thomas Fitzsimmons <[EMAIL PROTECTED]> * doc/tools.texinfo (Applet Tools): New chapter. (appletviewer Tool): New section. (gcjwebplugin): N

Re: [cp-patches] FYI: Implement java.lang.management.RuntimeMXBean

2006-06-11 Thread Mark Wielaard
Hi Andrew, On Sun, 2006-06-11 at 22:56 +0100, Andrew John Hughes wrote: > 2006-06-11 Andrew John Hughes <[EMAIL PROTECTED]> > > * NEWS: > Mention new VM interface and use of properties. > * doc/vmintegration.texinfo: > Update with new gnu.java.lang.management section. >

[cp-patches] FYI: Resolve GdkPixbufWriter gdk lockup FIXME

2006-06-11 Thread Mark Wielaard
Hi, This solves a gdk lockup in GdkPixbufWriter by implementing the suggestion in the FIXME. Now we don't drop and re-acquire the gdk-lock but store the data and push that to the user code from a separate thread. 2006-06-11 Mark Wielaard <[EMAIL PROTECTED]> * gnu/java/awt/peer/gtk/GdkP

[cp-patches] FYI: Implement java.lang.management.RuntimeMXBean

2006-06-11 Thread Andrew John Hughes
The attached patch adds an implementation of the runtime bean from java.lang.management. This also includes a new VM interface, with three methods (two native in the reference implementation). Comments on these are much appreciated; I'll be implementing them for gcj at some point... (when I final

Re: [cp-patches] FYI: speedup Cairo graphics stuff

2006-06-11 Thread Roman Kennke
Hi Tom, Am Sonntag, den 11.06.2006, 11:10 -0600 schrieb Tom Tromey: > > "Roman" == Roman Kennke <[EMAIL PROTECTED]> writes: > > Roman> I speeded up the Cairo graphics impl significantly by changing > Roman> the way the native pointers are managed between Java and JNI > Roman> code. Until now,

Re: [cp-patches] FYI: fix for ConfigFileParser

2006-06-11 Thread Tom Tromey
> "Raif" == Raif S Naffah <[EMAIL PROTECTED]> writes: Raif> String t = tokens[i]; Raif> -if (Character.isJavaIdentifierStart(cn.toCharArray()[0])) Raif> - abort(""); Raif> +if (! Character.isJavaIdentifierStart(t.toCharArray()[0])) Raif> + abort("Clas

Re: [cp-patches] FYI: speedup Cairo graphics stuff

2006-06-11 Thread Tom Tromey
> "Roman" == Roman Kennke <[EMAIL PROTECTED]> writes: Roman> I speeded up the Cairo graphics impl significantly by changing Roman> the way the native pointers are managed between Java and JNI Roman> code. Until now, we used to lookup the class+fields of the Roman> native pointers and fetched t

[cp-patches] FYI: Remove unused var from FreetypeGlyphVector

2006-06-11 Thread Mark Wielaard
Hi, This make our build compile warning free again: 2006-06-11 Mark Wielaard <[EMAIL PROTECTED]> * native/jni/gtk-peer/gnu_java_awt_peer_gtk_FreetypeGlyphVector.c (Java_gnu_java_awt_peer_gtk_FreetypeGlyphVector_getGlyphs): Remove unused variable glyph_index. Committed, Mark diff

[cp-patches] Re: RFC: deadlock with Componet/CairoGraphics.drawImage()

2006-06-11 Thread Mark Wielaard
Hi Sven, On Sun, 2006-06-11 at 05:05 +0200, Sven de Marothy wrote: > On Sat, 2006-06-10 at 23:17 +0200, Mark Wielaard wrote: > > I was seeing deadlocks in some cases with ComponentGraphics.drawImage(). > > ComponentGraphics takes the gdk lock and then calls super.drawImage(). > > But in some case

[cp-patches] FYI: Faster drawString.

2006-06-11 Thread Sven de Marothy
All in all, this makes drawString() about 3 times as fast. 2006-06-11 Sven de Marothy <[EMAIL PROTECTED]> * gnu/java/awt/peer/gtk/FreetypeGlyphVector.java (setupGlyphMetrics): New method. Add glyphmetrics caching. (getOutline): Operate on the shape directly. * gn

[cp-patches] FYI: fix PR Classpath/27853

2006-06-11 Thread Raif S. Naffah
hello all, the attached patch --already committed-- fixes the above. 2006-06-11 Raif S. Naffah <[EMAIL PROTECTED]> PR Classpath/27853 * gnu/javax/crypto/RSACipherImpl.java (engineDoFinal): Was short by 1 byte. cheers; rsn Index: RSACipherImpl.java ===

[cp-patches] [ssl-nio] update tests

2006-06-11 Thread Casey Marshall
This updates some test classes for the extensions change. 2006-06-10 Casey Marshall <[EMAIL PROTECTED]> * jessie-tests/testClientHello.java: update for extensions changes. * jessie-tests/testExtensionList.java: likewise. * jessie-tests/testServerHello.java: like

[cp-patches] [ssl-nio] Extension value types

2006-06-11 Thread Casey Marshall
This implements the SSL hello extension values from RFC 3546. These extensions allow clients to request extended functionality from a server. It's unlikely that we will support all of these extensions in Jessie, at least not in this Summer of Code release, but we can still recognize and p