Re: [cp-patches] java.io.Window method deprecation

2006-07-16 Thread Michael Koch
On Sun, Jul 16, 2006 at 08:50:33PM -0400, Thomas Minor wrote: > Hi, > > This simple patch deprecates Window.show() and Window.hide() > methods as specified in the Java 1.5 javadocs. Also, I added > some small documentation to the hide() method. You should add "1.5" when a method gets deprecated i

Re: [cp-patches] Cp037 and Cp868 charsets

2006-07-16 Thread Sven de Marothy
On Sun, 2006-07-16 at 21:04 +0100, George McLachlan wrote: > Just to dip my toe in the water, so to speak, I wrote a couple of simple > charsets, which haven't been implemented yet. Already.. Great! Ok, before we can commit this we need the paperwork to get done (copyright assignment as I said), s

[cp-patches] java.io.Window method deprecation

2006-07-16 Thread Thomas Minor
Hi, This simple patch deprecates Window.show() and Window.hide() methods as specified in the Java 1.5 javadocs. Also, I added some small documentation to the hide() method. Tom Changelog: 2006-07-16 Thomas Minor [EMAIL PROTECTED] * java.awt.Window: Deprecated show() and hide() In

Re: [cp-patches] Cp037 and Cp868 charsets

2006-07-16 Thread Tom Tromey
> "George" == George McLachlan <[EMAIL PROTECTED]> writes: George> Just to dip my toe in the water, so to speak, I wrote a couple George> of simple charsets, which haven't been implemented yet. George> Of course I might have got it completely wrong. These look pretty reasonable to me. We ne

[cp-patches] FYI: Sync java.util.UUID (more or less) with generics

2006-07-16 Thread Andrew John Hughes
This brings java.util.UUID on HEAD more in line with the one merged to the generics branch, by adding in the method compareTo(UUID). It also appeases JAPI a little. Changelog: 2006-07-16 Andrew John Hughes <[EMAIL PROTECTED]> * java/util/UUID.java: (compareTo(Object)): Call co

[cp-patches] Cp037 and Cp868 charsets

2006-07-16 Thread George McLachlan
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Just to dip my toe in the water, so to speak, I wrote a couple of simple charsets, which haven't been implemented yet. Of course I might have got it completely wrong. Anyway I have attached the files. George -BEGIN PGP SIGNATURE- Version: Gn

[cp-patches] Patch: FYI: javadoc fix

2006-07-16 Thread Tom Tromey
I'm checking this in. After committing I noticed that the cbrt patch was missing an @since. Tom Index: ChangeLog from Tom Tromey <[EMAIL PROTECTED]> * java/lang/StrictMath.java (cbrt): Added '@since'. Index: java/lang/StrictMath.java ==

Re: [cp-patches] RFC: StrictMath.java cbrt

2006-07-16 Thread Tom Tromey
> "Carsten" == Carsten Neumann <[EMAIL PROTECTED]> writes: Carsten> hopefully final version of cbrt. Carsten> Please comment and/or commit. Looks good. I have checked it in. Thanks! Tom

[cp-patches] FYI: Fix JAPI issues

2006-07-16 Thread Andrew John Hughes
This fixes a few JAPI issues with some of my latest patches (and one of Sven's), as well as adding in a method of MBeanInfo that is now possible. Changelog: 2006-07-16 Andrew John Hughes <[EMAIL PROTECTED]> * javax/management/MBeanInfo.java: (getNotifications()): Implemented.

Re: [cp-patches] JamVM sun.misc.Unsafe

2006-07-16 Thread Casey Marshall
On Jul 16, 2006, at 5:02 AM, Mark Wielaard wrote: On Sun, 2006-07-16 at 01:21 -0700, Casey Marshall wrote: I think the integer and reference methods are correct, but I haven't run any tests that confirm atomicity. There are probably also endian issues that I'm ignoring. Note that there is a p

[cp-patches] FYI: Add MemoryNotificationInfo

2006-07-16 Thread Andrew John Hughes
This adds the notification data sent out by memory notifications. All that is now required is to link the two up in the MemoryMXBean, and provide the facility for VMs to fire them if they wish to do so. Changelog: 2006-07-16 Andrew John Hughes <[EMAIL PROTECTED]> * java/lang/managemen

Re: [cp-patches] PrintStream Constructors

2006-07-16 Thread Tom Tromey
> "Mark" == Mark Wielaard <[EMAIL PROTECTED]> writes: >> This patch adds four missing constructors to java.io.Printstream. Mark> Nice. Thanks. Just this week I was writing some code that needed to Mark> create a PrintStream from a File and was cursing that I needed to write Mark> so much boil

[cp-patches] FYI: 28392 fix - second part

2006-07-16 Thread Audrius Meskauskas
Not just a plain text, but many other related tags must be enclosed into paragraphs if they appear at the body level. 2006-07-16 Audrius Meskauskas <[EMAIL PROTECTED]> PR 28392 * gnu/javax/swing/text/html/parser/htmlValidator.java (tagIsValidForContext): If it is not possible to in

[cp-patches] FYI: Create default keystore only if required

2006-07-16 Thread Raif S. Naffah
hello all, the attached patch --already committed-- (which should be part of the fix for PR 28391) ensures that the default keystore (.keystore in user's home) is not created unless required. 2006-07-17 Raif S. Naffah <[EMAIL PROTECTED]> * tools/gnu/classpath/tools/keytool/Command.j

Re: [cp-patches] FYI: fix for PR Classpath/28391

2006-07-16 Thread Raif S. Naffah
hello Mark, On Sunday 16 July 2006 20:54, Mark Wielaard wrote: > On Sun, 2006-07-16 at 16:00 +1000, Raif S. Naffah wrote: > > the attached patch --already committed-- fixes the above PR. > > > > a keystore should now be created if it is not there but only with > > the -genkey, -import and -identit

[cp-patches] FYI: Add management notification support

2006-07-16 Thread Andrew John Hughes
This adds support to javax.management for notifications, in preparation for adding such support to the memory bean. Changelog: 2006-07-16 Andrew John Hughes <[EMAIL PROTECTED]> * javax/management/ListenerNotFoundException.java: New file. * javax/management/MBeanFeatureI

[cp-patches] FYI: Using the custom DTD for the Swing HTML parser.

2006-07-16 Thread Audrius Meskauskas
Fixing the 28392, I have concluded that HTMLEditorKit is getting more and more unnecessarily complicated functionality, and that the suggestions of Roman and others (discussed in Brussels) to have the custom DTD model for our Swing are probably correct. This patch introduces the HTML_401Swing.j

Re: [cp-patches] JamVM sun.misc.Unsafe

2006-07-16 Thread Mark Wielaard
On Sun, 2006-07-16 at 01:21 -0700, Casey Marshall wrote: > I think the integer and reference methods are correct, but I haven't > run any tests that confirm atomicity. There are probably also endian > issues that I'm ignoring. Note that there is a public domain testsuite for this code at: http

Re: [cp-patches] [RFA] JVMTI (ATTN:contains offer for free beer)

2006-07-16 Thread Christian Thalinger
On Sat, 2006-07-15 at 21:09 +0200, Sven de Marothy wrote: > First VM to implement JVMTI now gets a beer from me! Cool! Then I should kick our student doing JVMTI a bit more! :-) TWISTI

Re: [cp-patches] PrintStream Constructors

2006-07-16 Thread Mark Wielaard
Hi Thomas, On Sun, 2006-07-16 at 00:45 -0400, Thomas Minor wrote: > This patch adds four missing constructors to java.io.Printstream. Nice. Thanks. Just this week I was writing some code that needed to create a PrintStream from a File and was cursing that I needed to write so much boiler code! I

Re: [cp-patches] FYI: fix for PR Classpath/28391

2006-07-16 Thread Mark Wielaard
Hi Raif, On Sun, 2006-07-16 at 16:00 +1000, Raif S. Naffah wrote: > the attached patch --already committed-- fixes the above PR. > > a keystore should now be created if it is not there but only with > the -genkey, -import and -identitydb commands. You are quick responding to bug reports! > app

[cp-patches] JamVM sun.misc.Unsafe

2006-07-16 Thread Casey Marshall
(I'm posting this to classpath-patches, too) Attached is a first attempt at implementing sun.misc.Unsafe for JamVM. This is used by the JSR166 code, java.util.concurrent. Some stuff obviously doesn't work (atomic operations on longs, for one; also, somehow jamvm can't find the `unpark' meth

[cp-patches] FYI: Implement javax.rmi.ssl package.

2006-07-16 Thread Sven de Marothy
This needs testing. Simple enough code though. 2006-07-16 Sven de Marothy <[EMAIL PROTECTED]> * javax/rmi/ssl/SslRMIServerSocketFactory.java, * javax/rmi/ssl/SslRMIClientSocketFactory.java: New files. /* SslRMIClientSocketFactory.java -- Copyright (C) 2006 Free Soft