[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

[cp-testresults] FAIL: classpath build with gcj trunk on Mon Jan 16 17:43:29 UTC 2006

2006-01-16 Thread cpdev
then mv -f .deps/jawt.Tpo .deps/jawt.Plo; else rm -f .deps/jawt.Tpo; exit 1; fi mkdir .libs gcc -DHAVE_CONFIG_H -I. -I../../../classpath/native/jawt -I../../include -I../../../classpath/include -I../../../classpath/native/jni/classpath -I../../../classpath/native/target/Linux

[cp-testresults] FAIL: ecj built with ecj on jamvm on Mon Jan 16 21:18:40 UTC 2006

2006-01-16 Thread cpdev
Exception occured while printing exception (java/lang/NoClassDefFoundError)... Original exception was java/lang/UnsatisfiedLinkError Cannot create system class loader Exception occured while printing exception (java/lang/NoClassDefFoundError)... Original exception was

[cp-testresults] FAIL: classpath build with jikes on Mon Jan 16 21:16:16 UTC 2006

2006-01-16 Thread cpdev
ar cru .libs/libclasspath.a .libs/jcl.o .libs/jnilink.o .libs/native_state.o ranlib .libs/libclasspath.a creating libclasspath.la (cd .libs rm -f libclasspath.la ln -s ../libclasspath.la libclasspath.la) make[3]: Leaving directory `/home/cpdev/Nightly/classpath/jikes-build/native/jni/classpath'

[cp-testresults] FAIL: classpath build with jikes on Tue Jan 17 00:44:00 UTC 2006

2006-01-16 Thread cpdev
ar cru .libs/libclasspath.a .libs/jcl.o .libs/jnilink.o .libs/native_state.o ranlib .libs/libclasspath.a creating libclasspath.la (cd .libs rm -f libclasspath.la ln -s ../libclasspath.la libclasspath.la) make[3]: Leaving directory `/home/cpdev/Nightly/classpath/jikes-build/native/jni/classpath'

[cp-testresults] FAIL: ecj built with gcjx on Mon Jan 16 17:51:59 UTC 2006

2006-01-16 Thread cpdev
import java.io.File; ^ error: required type 'java.lang.Object' not found; check your class path ￾ ^ batch/org/eclipse/jdt/internal/compiler/batch/FileFinder.java:13:0: error: type named 'java.io.File' is undefined import java.io.File; ^ error: required type 'java.lang.Object' not found;

[cp-testresults] FAIL: classpath build with gcj (4.0) on Tue Jan 17 03:58:37 UTC 2006

2006-01-16 Thread cpdev
ar cru .libs/libclasspath.a .libs/jcl.o .libs/jnilink.o .libs/native_state.o ranlib .libs/libclasspath.a creating libclasspath.la (cd .libs rm -f libclasspath.la ln -s ../libclasspath.la libclasspath.la) make[3]: Leaving directory `/home/cpdev/Nightly/classpath/build/native/jni/classpath'

Re: Updating Mauve tags

2006-01-16 Thread Meskauskas Audrius
The Sun's swing did have as many as 6514 bugs through the history, despite many of them are fixed now. Together with the new features and improvements, each new major release inevitably brings some regressions that are later fixed. J2SE 5.0 http://java.sun.com/j2se/1.5.0/download.jsp already

Re: Updating Mauve tags

2006-01-16 Thread David Gilbert
Roman Kennke wrote: The problem that I am seeing is when a test that is written to PASS under 1.4 fails under 1.5. There are lots of those tests in the testsuite for the javax.swing package. Hi Roman, Did I write those tests (or some of them)? If so, send me the file names and I'll see

Re: Updating Mauve tags

2006-01-16 Thread Mark Wielaard
Hi Roman, On Mon, 2006-01-16 at 00:59 +0100, Roman Kennke wrote: The problem that I am seeing is when a test that is written to PASS under 1.4 fails under 1.5. There are lots of those tests in the testsuite for the javax.swing package. To be honest, I would just remove those tests and

Re: SecurityManager troubles

2006-01-16 Thread Gary Benson
Archie Cobbs wrote: Gary Benson wrote: + try + { + Class.forName(java.security.Security); + } + catch (Throwable t) + { + } It might be more appropriate to only catch Exception, not Throwable. So I was halfway through thinking about this when I forgot

Re: a crazy idea -- the Book

2006-01-16 Thread Gary Benson
Meskauskas Audrius wrote: Printing the book would probably require the initial money investment. This probably can be solved at least in the two ways: 1. The FSF pays for printing of this book and then gets the profit from selling it. 2. All authors contribute for printing of this book and

Re: a crazy idea -- the Book

2006-01-16 Thread Meskauskas Audrius
Typically, the best books are written by the authors of the methods or other things that are present in the book. For instance, the Molecular Cloning: A Laboratory Manual is present in near every serious biochemical laboratory, despite this book costs several hundreds of dollars. The book is

[Bug swing/25770] JTable cell editor does not start after double clicking on the cell.

2006-01-16 Thread audriusa at bluewin dot ch
--- Comment #1 from audriusa at bluewin dot ch 2006-01-16 12:37 --- Created an attachment (id=10653) -- (http://gcc.gnu.org/bugzilla/attachment.cgi?id=10653action=view) Proposed patch. 2006-01-16 Audrius Meskauskas [EMAIL PROTECTED] * javax/swing/DefaultCellEditor.java

Re: SecurityManager troubles

2006-01-16 Thread Archie Cobbs
Gary Benson wrote: + catch (Throwable t) + { + } It might be more appropriate to only catch Exception, not Throwable. So I was halfway through thinking about this when I forgot and committed it :( Why Exception as opposed to Throwable? My reasoning was that the code was added to

RE: SecurityManager troubles

2006-01-16 Thread Jeroen Frijters
Gary Benson wrote: Archie Cobbs wrote: Gary Benson wrote: + try + { + Class.forName(java.security.Security); + } + catch (Throwable t) + { + } It might be more appropriate to only catch Exception, not Throwable. So I was halfway through

[Bug classpath/22943] regex: quantifier (?*+{}) without preceding token

2006-01-16 Thread kaz at maczuka dot gcd dot org
--- Comment #2 from kaz at maczuka dot gcd dot org 2006-01-16 22:19 --- The bug reported in the original article is the same as the Bug #22884, and it has been fixed. The bug of comment #1 is another one. I will open another case. *** This bug has been marked as a duplicate of 22884

[Bug classpath/22884] java.util.regex.Pattern doesn't understand (?s)

2006-01-16 Thread kaz at maczuka dot gcd dot org
--- Comment #3 from kaz at maczuka dot gcd dot org 2006-01-16 22:04 --- Fixed. -- kaz at maczuka dot gcd dot org changed: What|Removed |Added

[Bug classpath/22943] regex: quantifier (?*+{}) without preceding token

2006-01-16 Thread kaz at maczuka dot gcd dot org
--- Comment #3 from kaz at maczuka dot gcd dot org 2006-01-16 22:34 --- As for the bug of comment #1, see Bug #25812. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=22943 ___ Bug-classpath mailing list Bug-classpath@gnu.org

[Bug classpath/22884] java.util.regex.Pattern doesn't understand (?s)

2006-01-16 Thread kaz at maczuka dot gcd dot org
--- Comment #4 from kaz at maczuka dot gcd dot org 2006-01-16 22:19 --- *** Bug 22943 has been marked as a duplicate of this bug. *** -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=22884 ___ Bug-classpath mailing list

[Bug classpath/25812] gnu.regexp: support for (?=X), (?!X), (?X) wanted

2006-01-16 Thread kaz at maczuka dot gcd dot org
-- kaz at maczuka dot gcd dot org changed: What|Removed |Added Status|UNCONFIRMED |NEW Ever Confirmed|0 |1 Last

[Bug classpath/25803] HttpUrlConnection reports gzip content on uncompressed data

2006-01-16 Thread cvs-commit at developer dot classpath dot org
--- Comment #2 from cvs-commit at developer dot classpath dot org 2006-01-16 21:11 --- Subject: Bug 25803 CVSROOT:/cvsroot/classpath Module name:classpath Branch: Changes by: Anthony Green [EMAIL PROTECTED] 06/01/16 20:43:20 Modified files: .

[Bug swing/25770] JTable cell editor does not start after double clicking on the cell.

2006-01-16 Thread cvs-commit at developer dot classpath dot org
--- Comment #2 from cvs-commit at developer dot classpath dot org 2006-01-16 17:53 --- Subject: Bug 25770 CVSROOT:/cvsroot/classpath Module name:classpath Branch: Changes by: Audrius Meskauskas [EMAIL PROTECTED] 06/01/16 12:36:50 Modified files: .

[commit-cp] classpath ./ChangeLog javax/swing/text/SimpleAt...

2006-01-16 Thread David Gilbert
CVSROOT:/sources/classpath Module name:classpath Branch: Changes by: David Gilbert [EMAIL PROTECTED] 06/01/16 09:24:19 Modified files: . : ChangeLog javax/swing/text: SimpleAttributeSet.java Log message: 2006-01-16 David

[commit-cp] classpath ./ChangeLog javax/swing/text/MutableA...

2006-01-16 Thread David Gilbert
CVSROOT:/sources/classpath Module name:classpath Branch: Changes by: David Gilbert [EMAIL PROTECTED] 06/01/16 10:13:09 Modified files: . : ChangeLog javax/swing/text: MutableAttributeSet.java Log message: 2006-01-16 David

[commit-cp] classpath ./ChangeLog native/target/SunOS/targe...

2006-01-16 Thread Roman Kennke
CVSROOT:/cvsroot/classpath Module name:classpath Branch: Changes by: Roman Kennke [EMAIL PROTECTED]06/01/16 12:56:57 Modified files: . : ChangeLog Added files: native/target/SunOS: target_native.h target_native_file.h

[commit-cp] classpath/native/target/embOS

2006-01-16 Thread Roman Kennke
CVSROOT:/cvsroot/classpath Module name:classpath Branch: Changes by: Roman Kennke [EMAIL PROTECTED]06/01/16 12:59:52 classpath/native/target/embOS Update of /cvsroot/classpath/classpath/native/target/embOS In directory

[commit-cp] classpath ./ChangeLog javax/print/attribute/sta...

2006-01-16 Thread Wolfgang Baer
CVSROOT:/cvsroot/classpath Module name:classpath Branch: Changes by: Wolfgang Baer [EMAIL PROTECTED] 06/01/16 09:09:10 Modified files: . : ChangeLog javax/print/attribute/standard: MediaSize.java Log message: 2006-01-16

[commit-cp] classpath ./ChangeLog native/jni/java-io/java_i...

2006-01-16 Thread Roman Kennke
CVSROOT:/cvsroot/classpath Module name:classpath Branch: Changes by: Roman Kennke [EMAIL PROTECTED]06/01/16 10:15:48 Modified files: . : ChangeLog native/jni/java-io: java_io_VMFile.c native/jni/java-nio:

[commit-cp] classpath ./ChangeLog javax/swing/text/SimpleAt...

2006-01-16 Thread David Gilbert
CVSROOT:/sources/classpath Module name:classpath Branch: Changes by: David Gilbert [EMAIL PROTECTED] 06/01/16 10:00:26 Modified files: . : ChangeLog javax/swing/text: SimpleAttributeSet.java Log message: 2006-01-16 David

[commit-cp] classpath ./ChangeLog native/target/embOS/targe...

2006-01-16 Thread Roman Kennke
CVSROOT:/cvsroot/classpath Module name:classpath Branch: Changes by: Roman Kennke [EMAIL PROTECTED]06/01/16 13:06:48 Modified files: . : ChangeLog Added files: native/target/embOS: target_native.h target_native_file.h

[commit-cp] classpath/native/target/SunOS

2006-01-16 Thread Roman Kennke
CVSROOT:/cvsroot/classpath Module name:classpath Branch: Changes by: Roman Kennke [EMAIL PROTECTED]06/01/16 12:49:26 classpath/native/target/SunOS Update of /cvsroot/classpath/classpath/native/target/SunOS In directory

[commit-cp] classpath ./ChangeLog native/target/RTEMS/targe...

2006-01-16 Thread Roman Kennke
CVSROOT:/cvsroot/classpath Module name:classpath Branch: Changes by: Roman Kennke [EMAIL PROTECTED]06/01/16 13:14:12 Modified files: . : ChangeLog Added files: native/target/RTEMS: target_native.h target_native_file.h

[commit-cp] classpath/native/target/posix

2006-01-16 Thread Roman Kennke
CVSROOT:/cvsroot/classpath Module name:classpath Branch: Changes by: Roman Kennke [EMAIL PROTECTED]06/01/16 12:08:44 classpath/native/target/posix Update of /cvsroot/classpath/classpath/native/target/posix In directory savannah:/tmp/cvs-serv21440/target/posix

[commit-cp] classpath ./ChangeLog java/net/SocketPermission...

2006-01-16 Thread Gary Benson
CVSROOT:/cvsroot/classpath Module name:classpath Branch: Changes by: Gary Benson [EMAIL PROTECTED] 06/01/16 10:28:35 Modified files: . : ChangeLog java/net : SocketPermission.java Log message: 2006-01-16 Gary Benson [EMAIL

[commit-cp] classpath ./ChangeLog doc/vmintegration.texinfo

2006-01-16 Thread Nicolas Geoffray
CVSROOT:/cvsroot/classpath Module name:classpath Branch: Changes by: Nicolas Geoffray [EMAIL PROTECTED]06/01/16 13:18:31 Modified files: . : ChangeLog doc: vmintegration.texinfo Log message: 2006-01-16 Nicolas

[commit-cp] classpath ./ChangeLog javax/swing/DefaultCellEd...

2006-01-16 Thread Audrius Meskauskas
CVSROOT:/cvsroot/classpath Module name:classpath Branch: Changes by: Audrius Meskauskas [EMAIL PROTECTED] 06/01/16 12:36:50 Modified files: . : ChangeLog javax/swing: DefaultCellEditor.java JTable.java javax/swing/plaf/basic:

[commit-cp] classpath ./ChangeLog native/target/Makefile.am...

2006-01-16 Thread Roman Kennke
CVSROOT:/cvsroot/classpath Module name:classpath Branch: Changes by: Roman Kennke [EMAIL PROTECTED]06/01/16 13:47:13 Modified files: . : ChangeLog native/target : Makefile.am native/target/Linux: Makefile.am

[commit-cp] classpath ./ChangeLog native/jni/java-io/java_i...

2006-01-16 Thread Roman Kennke
CVSROOT:/cvsroot/classpath Module name:classpath Branch: Changes by: Roman Kennke [EMAIL PROTECTED]06/01/16 12:28:00 Modified files: . : ChangeLog native/jni/java-io: java_io_VMFile.c native/target/Linux: target_native_io.h

[commit-cp] classpath ./ChangeLog native/target/generic/tar...

2006-01-16 Thread Roman Kennke
CVSROOT:/cvsroot/classpath Module name:classpath Branch: Changes by: Roman Kennke [EMAIL PROTECTED]06/01/16 13:21:05 Modified files: . : ChangeLog native/target/generic: target_generic_network.c

[commit-cp] classpath ./ChangeLog native/target/Makefile.am...

2006-01-16 Thread Roman Kennke
CVSROOT:/cvsroot/classpath Module name:classpath Branch: Changes by: Roman Kennke [EMAIL PROTECTED]06/01/16 15:50:35 Modified files: . : ChangeLog native/target : Makefile.am native/target/posix: Makefile.am Log message:

[commit-cp] classpath ./ChangeLog javax/swing/text/StyleCon...

2006-01-16 Thread David Gilbert
CVSROOT:/sources/classpath Module name:classpath Branch: Changes by: David Gilbert [EMAIL PROTECTED] 06/01/16 15:59:47 Modified files: . : ChangeLog javax/swing/text: StyleConstants.java Log message: 2006-01-16 David Gilbert

[commit-cp] classpath native/target/generic/target_generic_...

2006-01-16 Thread Roman Kennke
CVSROOT:/cvsroot/classpath Module name:classpath Branch: Changes by: Roman Kennke [EMAIL PROTECTED]06/01/16 15:56:12 Modified files: native/target/generic: target_generic_file.h target_generic_network.c

[commit-cp] classpath ChangeLog

2006-01-16 Thread Roman Kennke
CVSROOT:/cvsroot/classpath Module name:classpath Branch: Changes by: Roman Kennke [EMAIL PROTECTED]06/01/16 16:16:17 Modified files: . : ChangeLog Log message: Fixed ChangeLog entry for last commit. CVSWeb URLs:

[commit-cp] classpath configure.ac ChangeLog

2006-01-16 Thread Roman Kennke
CVSROOT:/cvsroot/classpath Module name:classpath Branch: Changes by: Roman Kennke [EMAIL PROTECTED]06/01/16 15:58:15 Modified files: . : configure.ac ChangeLog Log message: 2006-01-16 Roman Kennke [EMAIL PROTECTED]