[cp-patches] FYI: Implementing cell editing in JTable.

2006-01-16 Thread Meskauskas Audrius
This patch implements the cell editing in JTable. The editing session can be started by double clicking on the cell and completed by pressing Enter or canceled by pressing ESC. The table is updated and stores the changed value. This can be tested in the table of the Swing demo. The

[cp-patches] FYI: javax.swing.text.SimpleAttributeSet - added API docs

2006-01-16 Thread David Gilbert
I committed this patch: 2006-01-16 David Gilbert [EMAIL PROTECTED] * javax/swing/text/SimpleAttributeSet.java: Updated API docs all over. Regards, Dave Index: javax/swing/text/SimpleAttributeSet.java === RCS file:

Re: [cp-patches] [FYI]: Patch for javax.print.attribute.standard package

2006-01-16 Thread Wolfgang Baer
Hi, Mark Wielaard wrote: Hi Wolfgang, On Fri, 2006-01-13 at 23:44 +0100, Wolfgang Baer wrote: Evrything I do here is to call one instance of every container class so it gets loaded and everyone of its static MediaSize objects are instantiated. Should I put a comment here ? Please do. I see

[cp-patches] FYI: MinGW layer

2006-01-16 Thread Roman Kennke
Hi, here comes the target native layer implementation for the MinGW platform. Nothing funky, for the most part this forwards to the generic/posix impl. I would think that somebody with some more knowledge of the build machinery must implement to include that target when compiling on MinGW.

[cp-patches] FYI: Load policies before setting security manager

2006-01-16 Thread Gary Benson
Hi all, This fix loads java.security.Security before setting a security manager, ensuring that various classes and policy files are loaded before any restrictions on such things come into play. Cheers, Gary Index: ChangeLog === RCS

Re: [cp-patches] RFC: configure fixlet

2006-01-16 Thread Mark Wielaard
Hi Wolfgang, On Mon, 2006-01-16 at 09:46 +0100, Wolfgang Baer wrote: if only ecj is available currently configure breaks because we don't test for a found ecj in the error test. Tested on my local box. 2006-01-16 Wolfgang Baer [EMAIL PROTECTED] * m4/acinclude.m4: Test also for ecj

[cp-patches] FYI : updated documentation of Instrumentation

2006-01-16 Thread Nicolas Geoffray
Hi, This should have been done a long time ago. I updated the documentation of the instrumentation code in file vmintegration.texinfo to reflect the new implementation (see http://lists.gnu.org/archive/html/classpath-patches/2005-12/msg00111.html) Nicolas 2006-01-16 Nicolas Geoffray

[cp-patches] FYI: API docs for javax.swing.text.MutableAttributeSet.java

2006-01-16 Thread David Gilbert
I committed this patch: 2006-01-16 David Gilbert [EMAIL PROTECTED] * javax/swing/text/MutableAttributeSet.java: Updated API docs all over. Regards, Dave Index: javax/swing/text/MutableAttributeSet.java === RCS file:

[cp-patches] FYI: embOS target native layer

2006-01-16 Thread Roman Kennke
This is the target native layer implementation for the embOS platform. Again, this is pretty straightforward. 2006-01-16 Roman Kennke [EMAIL PROTECTED] * native/target/embOS/target_native.h, * native/target/embOS/target_native_file.h, *

[cp-patches] FYI: target_native_math

2006-01-16 Thread Roman Kennke
I want to start my work on the TARGET_NATIVE layer with some small adjustments. Here I stack together the code from target_native_math_int.h and target_native_math_float.h into one new target_native_math.h. 2006-01-16 Roman Kennke [EMAIL PROTECTED] *

[cp-patches] Patch: fix Content-Encoding for compressed HTTP responses

2006-01-16 Thread Anthony Green
I found this while debugging Azureus. We automatically decompress compressed HTTP responses, but still report them as having compressed content. This patch removes the Content-Encoding header in these cases. This appears to be what Sun does in these cases. Ok? tromey: I would also like to

[cp-patches] FYI: Fixed typo in generic target

2006-01-16 Thread Roman Kennke
... And on we go with the first fix for the generic target. A little typo has slipped in which is fixed by this patch. 2006-01-16 Roman Kennke [EMAIL PROTECTED] * native/target/generic/target_generic_network.c: Fixed typo. * native/target/generic/target_generic_network.h: Fixed

[cp-patches] FYI: Fix SocketPermission action checks

2006-01-16 Thread Gary Benson
Hi, This patch fixes the action checks in java.net.SocketPermission's implies method. I noticed they were broken whilst writing Mauve tests to try and figure out what the patch on PR classpath/24708 is all about. Cheers, Gary Index: ChangeLog

Re: [cp-patches] FYI: Old style event fixes, part 2

2006-01-16 Thread Anthony Balkissoon
On Fri, 2006-01-13 at 21:29 +, Roman Kennke wrote: This is the second part for the old (1.0) style AWT event handling. The problem that is fixed here is that events that are targetted at menu components (like ActionEvents) must be forwarded along the parent chain and finally must end up in

[cp-patches] FYI: RTEMS impl for the target native layer

2006-01-16 Thread Roman Kennke
Hi, here comes the last patch for the target native layer (for now), which implements the layer for RTEMS platform. 2006-01-16 Roman Kennke [EMAIL PROTECTED] * native/target/RTEMS/target_native.h, * native/target/RTEMS/target_native_file.h, *

Re: [cp-patches] RFC: configure fixlet

2006-01-16 Thread Dalibor Topic
Wolfgang Baer wrote: Hi, if only ecj is available currently configure breaks because we don't test for a found ecj in the error test. Tested on my local box. 2006-01-16 Wolfgang Baer [EMAIL PROTECTED] * m4/acinclude.m4: Test also for ecj found before exiting configure with no javac

[cp-patches] FYI: SunOS target native layer

2006-01-16 Thread Roman Kennke
Here comes the target native layer implementation for the SunOS platform. Again, since this is pretty close to Posix, this is nothing serious. Some stuff in math and network and that's it. 2006-01-16 Roman Kennke [EMAIL PROTECTED] * native/target/SunOS/target_native.h, *

[cp-patches] FYI: API docs for javax.swing.text.StyleConstants.java

2006-01-16 Thread David Gilbert
I committed this patch: 2006-01-16 David Gilbert [EMAIL PROTECTED] * javax/swing/text/StyleConstants.java: Updated API docs all over. Regards, Dave Index: javax/swing/text/StyleConstants.java === RCS file:

[cp-patches] RFC: Build fixes for new target native layers

2006-01-16 Thread Roman Kennke
Hi, I adjusted some Makefile.am files to correctly include the new subdirectories in native/target. I need some help though. We need some configury to determine the target system for which we build and select the right options in native/target/Makefile.am. I just don*t know how to do that.

[cp-patches] XML patch

2006-01-16 Thread Chris Burdess
This patch introduces checking of the arguments to the various XMLStreamWriter methods and fixes some XSLT conformance failures. 2006-01-16 Chris Burdess [EMAIL PROTECTED] * gnu/xml/stream/XMLParser.java, gnu/xml/stream/XMLStreamWriterImpl.java: Thoroughly check

[cp-patches] JamVM stopped working today

2006-01-16 Thread David Gilbert
Hi All, JamVM stopped working for me today - I get this error when I try to run the SimpleTestHarness in Mauve: $ jamvm -classpath . gnu.testlet.SimpleTestHarness -file StyleConstantsTests.txt -verbose -debug Cannot create system class loader Exception occured while printing exception

[cp-patches] FYI: Some fixes for the generic layer

2006-01-16 Thread Roman Kennke
This patch fixes several typos and includes in the target generic implementation. 2006-01-16 Roman Kennke [EMAIL PROTECTED] * native/target/generic/target_generic_file.h: Added missing include. * native/target/generic/target_generic_network.c: Fixed several

Re: [cp-patches] FYI: New Posix Layer

2006-01-16 Thread Chris Burdess
Roman Kennke wrote: I committed the new Posix-Layer that implements a couple of portability macros and functions for use in our native code. This patch causes the build to fail with gcc -dynamiclib -o .libs/libjavaio.0.0.0.dylib .libs/ java_io_VMFile.o .libs/java_io_VMObjectInputStream.o

Re: [cp-patches] Patch: fix Content-Encoding for compressed HTTP responses

2006-01-16 Thread Tom Tromey
Anthony == Anthony Green [EMAIL PROTECTED] writes: Anthony I just want to get this patch into rawhide. My feeling is that it Anthony solves an incompatibility, and introduces no regressions. I agree, it is the minimal required improvement. Please check it in. I think what we want to do is

Re: [cp-patches] JamVM stopped working today

2006-01-16 Thread Lillian Angel
On Mon, 2006-01-16 at 18:22 +, David Gilbert wrote: Hi All, JamVM stopped working for me today - I get this error when I try to run the SimpleTestHarness in Mauve: $ jamvm -classpath . gnu.testlet.SimpleTestHarness -file StyleConstantsTests.txt -verbose -debug Cannot create

[cp-patches] FYI: another build fix

2006-01-16 Thread Roman Kennke
The attached patch is also needed in order to correctly build the new target native code. 2006-01-16 Roman Kennke [EMAIL PROTECTED] * configure.ac: Include new target native directories in build. /Roman Index: configure.ac

Re: [cp-patches] RFC: Build fixes for new target native layers

2006-01-16 Thread Tom Tromey
Roman == Roman Kennke [EMAIL PROTECTED] writes: Roman I need some help though. We need some configury to determine Roman the target system for which we build and select the right Roman options in native/target/Makefile.am. I just don*t know how to Roman do that. Anybody there who can help me

Re: [cp-patches] Patch: fix Content-Encoding for compressed HTTP responses

2006-01-16 Thread Anthony Green
On Mon, 2006-01-16 at 10:52 -0700, Tom Tromey wrote: When I run that case program, if I specify that it should ask for a gzip encoding, Sun's protocol handler hands back a gzipped stream -- i.e., it does not uncompress. I didn't even notice this option! I think either behavior is correct,

Re: [cp-patches] JamVM stopped working today

2006-01-16 Thread Robert Lougher
Hi, Thanks for the replies. I didn't fancy doing a complete checkout over a 3G/GPRS datacard :) Rob. On 1/16/06, Lillian Angel [EMAIL PROTECTED] wrote: On Mon, 2006-01-16 at 18:22 +, David Gilbert wrote: Hi All, JamVM stopped working for me today - I get this error when I try to run

[cp-patches] Re: JamVM stopped working today

2006-01-16 Thread Mark Wielaard
Hi David, On Mon, 2006-01-16 at 18:22 +, David Gilbert wrote: Hi All, JamVM stopped working for me today - I get this error when I try to run the SimpleTestHarness in Mauve: $ jamvm -classpath . gnu.testlet.SimpleTestHarness -file StyleConstantsTests.txt -verbose -debug Cannot

Re: [cp-patches] Patch: fix Content-Encoding for compressed HTTP responses

2006-01-16 Thread Tom Tromey
David == David Daney [EMAIL PROTECTED] writes: Also I wonder about throwing an exception if we don't recognize the content-encoding. It seems to me that the caller might well recognize it somehow. David How would you make this behavior compatible with java.net.*? David What exception would

[cp-patches] FYI: Makefiles for new targets

2006-01-16 Thread Roman Kennke
The attached patch includes the new targets in the Makefile.am's so they are included in the distributions. 2006-01-16 Roman Kennke [EMAIL PROTECTED] * native/target/Makefile.am: Include new targets. * native/target/Linux/Makefile.am: Include new memory layer. *

Re: [cp-patches] Patch: fix Content-Encoding for compressed HTTP responses

2006-01-16 Thread Tom Tromey
Anthony == Anthony Green [EMAIL PROTECTED] writes: Anthony I found this while debugging Azureus. We automatically decompress Anthony compressed HTTP responses, but still report them as having compressed Anthony content. This patch removes the Content-Encoding header in these Anthony cases.

Re: [cp-patches] Patch: fix Content-Encoding for compressed HTTP responses

2006-01-16 Thread Anthony Green
On Mon, 2006-01-16 at 12:49 -0700, Tom Tromey wrote: Anthony == Anthony Green [EMAIL PROTECTED] writes: Anthony I just want to get this patch into rawhide. My feeling is that it Anthony solves an incompatibility, and introduces no regressions. I agree, it is the minimal required

Re: [cp-patches] Patch: fix Content-Encoding for compressed HTTP responses

2006-01-16 Thread David Daney
Tom Tromey wrote: Anthony == Anthony Green [EMAIL PROTECTED] writes: Anthony I found this while debugging Azureus. We automatically decompress Anthony compressed HTTP responses, but still report them as having compressed Anthony content. This patch removes the Content-Encoding header in