[cp-patches] FYI: ignore unmapped DSSI controls

2005-10-06 Thread Anthony Green
Some DSSI controls aren't mapped to MIDI controls. This patch ignores them. I'm checking it in. Thanks, AG 2005-10-06 Anthony Green <[EMAIL PROTECTED]> * native/jni/midi-dssi/gnu_javax_sound_midi_dssi_DSSISynthesizer.c (Java_gnu_javax_sound_midi_dssi_DSSISynthesizer_open_1)

[cp-patches] FYI: dssi control handling, midi demo, INSTALL and LICENSE additions

2005-10-06 Thread Anthony Green
I'm about to check in the following patch collection, most of which I've already posted to the list for comment. Thanks, AG 2005-10-06 Anthony Green <[EMAIL PROTECTED]> * INSTALL: Describe midi provider dependencies. * native/jni/midi-dssi/README: New file. * LICENS

[cp-patches] [RFC] XML - fix for XMLParser's URL problem

2005-10-06 Thread Robert Schuster
Hi, here is probably a fix for PR classpath/24249 [0]. 2005-10-07 Robert Schuster <[EMAIL PROTECTED]> * gnu/xml/aelfred2/SAXDriver.java: (absolutize): Replaced URL.toString() with explicit calls to build a new URL. * gnu/xml/dom/ls/DomLSParser.java: (getInputSource): dito.

Re: [cp-patches] Patch: FYI: fix SetOfIntegerSyntax

2005-10-06 Thread Tom Tromey
> "Wolfgang" == Wolfgang Baer <[EMAIL PROTECTED]> writes: Wolfgang> So if you intend to work more on the javax.print package Wolfgang> please contact me so we do not duplicate work. Nope, I'm not. I only did this since I ran across it while looking at japi. I'm sorry if I stepped on your to

Re: [cp-patches] Patch: FYI: fix SetOfIntegerSyntax

2005-10-06 Thread Wolfgang Baer
Hi Tom, Tom Tromey wrote: I'm checking this in. I happened to notice that SetOfIntegerSyntax was mostly stubs. I implemented the class for real, and added the missing constructor. I started already implementation of javax.print.attribute.standard and some other stuff for javax.print.* I am c

[cp-patches] FYI: fixlet for PlainView

2005-10-06 Thread Anthony Balkissoon
This fix spans 2 commits because I made some errors in my first one. Both patches are attached, the one with the "2" at the end of the name is the second one. This fixes an NPE in PlainView by basically doing a ( != null) check. (second patch) 2005-10-06 Anthony Balkissoon <[EMAIL PROTECTED]>

[cp-patches] FYI: complete javax.imageio.metadata.IIOMetadata

2005-10-06 Thread Thomas Fitzsimmons
Hi, This patch completes the 1.5 API coverage for javax.imageio.metadata.IIOMetadata. I added the general description javadocs but not per-method javadocs. Tom 2005-10-06 Thomas Fitzsimmons <[EMAIL PROTECTED]> * javax/imageio/metadata/IIOMetadata.java: Complete. Index: javax/imageio

[cp-patches] FYI: some styled text fixes

2005-10-06 Thread Roman Kennke
Hi, I hacked some more in the views in javax.swing.text, and now we can display some styled text again: http://kennke.org/~roman/styledtext.png 2005-10-06 Roman Kennke <[EMAIL PROTECTED]> * javax/swing/text/BoxView.java (paint): Only call paintChild if child allocation is not e

[cp-patches] FYI: locking implemented for AbstractDocument

2005-10-06 Thread Anthony Balkissoon
This patch implements locking for AbstractDocument. Note that other classes that extend this and override methods like insertString and remove, or classes that in other ways alter the Document, should call writeLock() before altering the Document and writeUnlock() after doing so. This isn't curre

[cp-patches] FYI: JLabel fixlet

2005-10-06 Thread Roman Kennke
A mauve test that I just committed shows that JLabels should have an alignmentX of 0.0F. Fixed. 2005-10-06 Roman Kennke <[EMAIL PROTECTED]> * javax/swing/JLabel.java (JLabel): Set alignmentX value to 0.0F. /Roman Index: javax/swing/JLabel.java =

Re: [cp-patches]: FYI: JTree fix

2005-10-06 Thread Lillian Angel
A few NPEs were being raised after the most recent changes. 2005-10-06 Lillian Angel <[EMAIL PROTECTED]> * javax/swing/plaf/basic/BasicTreeUI.java (startEditing): Should always change the bounds, whenever we start editing. (paintRow): Fixed location where editing

Re: [cp-patches] QT4 configury bits for OS-X

2005-10-06 Thread Andreas Tobler
Hi Mark, Mark Wielaard wrote: I tested this patch on ppclinux, sparc solaris10 and ppc-darwin8.2 with positive and negative configs. I hope I catched all. Comments welcome. 2005-09-27 Andreas Tobler <[EMAIL PROTECTED]> * configure.ac: Add Qt4 configury bits for OS-X. Looks fine

Re: [cp-patches] RFC: VMClassLoader : hashmap for jars from property java.boot.class.path

2005-10-06 Thread Nicolas Geoffray
Hi David, David Lichteblau wrote: Hi, Quoting Nicolas Geoffray ([EMAIL PROTECTED]): [...] 2005-10-06 Nicolas Geoffray <[EMAIL PROTECTED]> * vm/reference/java/lang/VMClassLoader.java (getResources): uses a new static field HashMap to store opened zip files from proper

[cp-patches] Patch: FYI: fix SetOfIntegerSyntax

2005-10-06 Thread Tom Tromey
I'm checking this in. I happened to notice that SetOfIntegerSyntax was mostly stubs. I implemented the class for real, and added the missing constructor. I also wrote a Mauve test. Tom 2005-10-06 Tom Tromey <[EMAIL PROTECTED]> * javax/print/attribute/SetOfIntegerSyntax.java (toString)

Re: [cp-patches] RFC: VMClassLoader : hashmap for jars from property java.boot.class.path

2005-10-06 Thread David Lichteblau
Hi, Quoting Nicolas Geoffray ([EMAIL PROTECTED]): [...] > 2005-10-06 Nicolas Geoffray <[EMAIL PROTECTED]> > > * vm/reference/java/lang/VMClassLoader.java >(getResources): uses a new static field HashMap to >store opened zip files from property java.boot.class.path. your p

[cp-patches] FYI: Completed BasicRootPaneUI

2005-10-06 Thread Roman Kennke
Hi, I added the missing methods in BasicRootPaneUI. 2005-10-06 Roman Kennke <[EMAIL PROTECTED]> * javax/swing/plaf/basic/BasicRootPaneUI.java (installUI): Call new hook methods. (installDefaults): New hook method. (installComponents): New hook method. (i

Re: [cp-patches]: FYI: JTree fix

2005-10-06 Thread Lillian Angel
The click-area for a leaf was slightly off. Fixed. 2005-10-06 Lillian Angel <[EMAIL PROTECTED]> * javax/swing/plaf/basic/BasicTreeUI.java (mousePressed): Shouldn't change x location for leaf. On Wed, 2005-10-05 at 17:49 -0400, Lillian Angel wrote: > Small fix. Added in a comm

[cp-patches] [generics] Patch: FYI: minor java.util fixes

2005-10-06 Thread Tom Tromey
s From: Tom Tromey <[EMAIL PROTECTED]> Reply-To: [EMAIL PROTECTED] BCC: Tom Tromey <[EMAIL PROTECTED]> X-Attribution: Tom Date: 06 Oct 2005 07:35:10 -0600 Message-ID: <[EMAIL PROTECTED]> Lines: 319 User-Agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.3.50 MIME-Version: 1.0 Content-Type: text/plain; cha

[cp-patches] RFC: VMClassLoader : hashmap for jars from property java.boot.class.path

2005-10-06 Thread Nicolas Geoffray
Hi, I improved the reference implementation of VMClassLoader.getRessources by adding a static HashMap which is filled when a boot zip is opened (typically glibj.zip). In the previous implementation, the code kept opening and closing the zip file. Another solution would be to have a static in

Re: [cp-patches] __attribute__ patch (Was: Re: RFC: __attribute__ handling)

2005-10-06 Thread Christian Thalinger
On Wed, 2005-10-05 at 13:12 -0600, Tom Tromey wrote: > > "Twisti" == Christian Thalinger <[EMAIL PROTECTED]> writes: > > Twisti> Here is the actual patch. Tested on IRIX with MIPSPro compiler. > > I'm checking this in. > > FWIW a patch like this is easier to apply if you use 'cvs diff -N' t