Re: [cp-patches] Patch: start of ALSA MIDI provider code

2005-10-02 Thread Mark Wielaard
On Sun, 2005-10-02 at 17:10 -0700, Anthony Green wrote: > This patch takes care of many of your comments, but not all. So the --disable and gcj compilation are fixed. > It also adds a DSSI[1] provider. With this I was able to, in a few > lines of Java code, connect my external MIDI keyboard to a

Re: [cp-patches] Patch: start of ALSA MIDI provider code

2005-10-02 Thread Anthony Green
This patch takes care of many of your comments, but not all. It also adds a DSSI[1] provider. With this I was able to, in a few lines of Java code, connect my external MIDI keyboard to a DSSI soft-synth wired to jack[2] audio output and play music. There's still lots to do, but this is a nice mi

[cp-patches] FYI: Make Font really Serializable

2005-10-02 Thread Mark Wielaard
Hi, This makes Font really serializable by making sure the name field is always set, the peer is transient and gets set when readObject() is called. 2005-10-02 Mark Wielaard <[EMAIL PROTECTED]> * java/awt/Font.java (peer): Make field transient. (Font(String,int,int)): Explicitly

Re: [cp-patches] Patch: start of ALSA MIDI provider code

2005-10-02 Thread Mark Wielaard
Hi Anthony, On Sun, 2005-10-02 at 11:47 -0700, Anthony Green wrote: > So, OK with these changes or do you want me to resubmit? With these changes it is OK. But do post the final patch you want to commit for reference. Thanks, Mark signature.asc Description: This is a digitally signed message

[cp-patches] FYI: Better NotSerializableException exception

2005-10-02 Thread Mark Wielaard
Hi, This small patch helps a lot when trying to figure out where some non-serializable object comes from. It prints the class that contains the field that holds the reference to the non-serializable object: 2005-10-02 Mark Wielaard <[EMAIL PROTECTED]> * java/io/ObjectOutputStream.java (wri

[cp-patches] Patch: FYI: core javadoc fixes

2005-10-02 Thread Tom Tromey
I'm checking this in. This fixes some javadoc buglets in the "core". We're down to 13 warnings in java.{lang,io,net,util}; 11 of those have to do with classes that are only available on the generics branch. Tom 2005-10-02 Tom Tromey <[EMAIL PROTECTED]> * java/net/URLStreamHandler.java

[cp-patches] Re: [commit-cp] classpath ./ChangeLog gnu/CORBA/CDR/Vio.java gn...

2005-10-02 Thread Meskauskas Audrius
Hi, Andreas. Thanks. * gnu/javax/rmi/CORBA/corbaObjectOutput.java (main): Removed. Andreas Tobler wrote: Hi Audrius, Found 3 semantic errors compiling "../../classpath/gnu/javax/rmi/CORBA/corbaObjectOutput.java": Index: gnu/javax/rmi/CORBA/corbaObjectOutput.java ===

[cp-patches] FYI: Removing unneeded files from javax.rmi.CORBA and related.

2005-10-02 Thread Meskauskas Audrius
The following files are no longer in use and can be removed. These stubs substituted the currently existing CORBA classes. 2005-10-02 Audrius Meskauskas <[EMAIL PROTECTED]> * gnu/javax/rmi/PortableServer.java, gnu/javax/rmi/CORBA/ValueHandlerImpl.java, javax/rmi/BAD_OPERATION.java, javax/rmi/

[cp-patches] [FYI] fix XMLOutputFactoryImpl

2005-10-02 Thread Robert Schuster
Hi, normally I would RFC first when doing changes to an XML processing API but this one is really obvious: Without the change the IllegalArgumentException in setProperty would be thrown in all cases. I found it while trying to run a DeveloperWorks[0] demo application. 2005-10-02 Robert Schuster

[cp-patches] FYI: Corrected copyright header identation.

2005-10-02 Thread Meskauskas Audrius
2005-10-02 Audrius Meskauskas <[EMAIL PROTECTED]> * gnu/CORBA/CDR/Vio.java, gnu/CORBA/CDR/cdrBufOutput.java, gnu/CORBA/CDR/gnuRuntime.java, gnu/javax/rmi/CORBA/corbaObjectInput.java, gnu/javax/rmi/CORBA/dwoTester.java, gnu/javax/rmi/CORBA/gnuRmiUtil.java: Corrected copyright header identation.

Re: [cp-patches] FYI: First draft of the working RMI orve IIOP implementation.

2005-10-02 Thread Robert Schuster
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi Audrius, this broke the build for me: Found 3 semantic errors compiling "../../classpath/gnu/javax/rmi/CORBA/corbaObje ctOutput.java": 55. import debugging.CORBA_stream; ^^ *** Semantic Error: The import "deb

[cp-patches] Re: [commit-cp] classpath ./ChangeLog gnu/CORBA/CDR/Vio.java gn...

2005-10-02 Thread Andreas Tobler
Hi Audrius, Found 3 semantic errors compiling "../../classpath/gnu/javax/rmi/CORBA/corbaObjectOutput.java": 55. import debugging.CORBA_stream; ^^ *** Semantic Error: The import "debugging/CORBA_stream" is not valid, since it does not name a type in a pac

[cp-patches] FYI: fix Diffie Hellman

2005-10-02 Thread Casey Marshall
Hi, This patch fixes the Diffie Hellman implementation. The problem was that it would not use the incoming intermediate key as-is, and would instead perform an emphemeral key generation each time. I've limited the implementation to two-party only; I'm not quite sure how to do multi-party

Re: [cp-patches] Patch: start of ALSA MIDI provider code

2005-10-02 Thread Anthony Green
On Sun, 2005-10-02 at 19:45 +0200, Mark Wielaard wrote: > Cool stuff. > You call the jni library "gjsmalsa", what does that stand for? Gnu Javax Sound Midi ALSA. I also have a "gjsmdssi" for Gnu Javax Sound Midi DSSI. > > dnl --- > > +d

Re: [cp-patches] Patch: start of ALSA MIDI provider code

2005-10-02 Thread Mark Wielaard
Hi, On Sun, 2005-10-02 at 01:01 -0700, Anthony Green wrote: > Here's the start of ALSA MIDI provider code. MIDI IN ports basically > work. You can read and print events from a MIDI keyboard using the > standard interfaces. It's not perfect, but it's a start. Cool stuff. You call the jni librar

[cp-patches] Re: Patch: start of ALSA MIDI provider code

2005-10-02 Thread Anthony Green
On Sun, 2005-10-02 at 01:01 -0700, Anthony Green wrote: > Here's the start of ALSA MIDI provider code. MIDI IN ports basically > work. You can read and print events from a MIDI keyboard using the > standard interfaces. It's not perfect, but it's a start. > I you don't have any MIDI gear and st

Re: [cp-patches] Complete javax.imageio

2005-10-02 Thread Thomas Fitzsimmons
On Sun, 2005-10-02 at 13:25 +0200, Mark Wielaard wrote: > Hi Tom, > > On Sun, 2005-10-02 at 01:30 -0400, Thomas Fitzsimmons wrote: > > This patch brings the javax.imageio package up to 1.5-level API > > coverage. I also completed the documentation for all but two classes, > > ImageReadParam and I

[Fwd: Re: [cp-patches] RFC: MetalScrollBarPropertyChangeHandler.propertyChange() fixes]

2005-10-02 Thread Mark Wielaard
Woops. Now I forgot to CC classpath-patches. Apologies, Mark --- Begin Message --- Hi David, On Sat, 2005-10-01 at 21:21 +, David Gilbert wrote: > Mark Wielaard wrote: > >This was in my tree after DevJam. Could someone review them to make sure > >they make sense? > > > >2005-10-01 Mark Wiel

Re: [cp-patches] MetalBorder.paintBorder strangeness

2005-10-02 Thread Mark Wielaard
Hi David, On Sat, 2005-10-01 at 21:33 +, David Gilbert wrote: > Mark Wielaard wrote: > >Here is another patch made during a DevJam hacking session. > >The patch made an application work. But the code looks somewhat strange > >to me. Should paintBorder really explicitly check for a JTextCompon

Re: [cp-patches] Complete javax.imageio

2005-10-02 Thread Mark Wielaard
Hi Tom, On Sun, 2005-10-02 at 01:30 -0400, Thomas Fitzsimmons wrote: > This patch brings the javax.imageio package up to 1.5-level API > coverage. I also completed the documentation for all but two classes, > ImageReadParam and ImageWriteParam. Woot! Code plus documentation. One little nitpick.

[cp-patches] Patch: start of ALSA MIDI provider code

2005-10-02 Thread Anthony Green
Here's the start of ALSA MIDI provider code. MIDI IN ports basically work. You can read and print events from a MIDI keyboard using the standard interfaces. It's not perfect, but it's a start. OK? AG 2005-10-02 Anthony Green <[EMAIL PROTECTED]> * native/jni/Makefile.am: Maybe buil