Re: [cp-patches] HTMLWriter

2006-11-10 Thread fchoong
Hi Roman, Can you commit this patch after you fix p-implied? This patch removes all the CP specific sections. Thanks! David Fu. Hi David, Thanks for checking the file in! The IMPLIED tag in the RI is implemented as a p-implied Tag

[cp-patches] FYI: HTML table rendering

2006-11-10 Thread Roman Kennke
This adds support for relative column widths (percent width attribute values) for HTML tables. It also fixes a whole bunch of smaller layout problems. Many tables should now be rendered reasonable well, like the following: http://kennke.org/~roman/google2.png 2006-11-10 Roman Kennke [EMAIL

Re: [cp-patches] HTMLWriter

2006-11-10 Thread fchoong
Hi Roman, I tried it just now, and your fix works with the new patch, as the implied tag is now recognized as a HTML.Tag.IMPLIED Tag! So the implied tags for CP and the RI behave the same now! David Fu. Hi David, Am Freitag, den

Re: [cp-patches] HTMLWriter

2006-11-10 Thread Roman Kennke
Hi David, I tried it just now, and your fix works with the new patch, as the implied tag is now recognized as a HTML.Tag.IMPLIED Tag! So the implied tags for CP and the RI behave the same now! Very good. I checked in your patch (attached again). 2006-11-10 David Fu [EMAIL PROTECTED]

[cp-patches] FYI: Collections.java - minor API doc addition

2006-11-10 Thread David Gilbert
This patch (committed) adds info about null arguments to the API docs for the Collections.sort() methods: 2006-11-10 David Gilbert [EMAIL PROTECTED] * java/util/Collections.java (sort(List)): Minor API doc addition, (sort(List, Comparator)): Likewise. Regards, Dave

Re: [cp-patches] FYI: Collections.java - minor API doc addition

2006-11-10 Thread David Gilbert
David Gilbert wrote: This patch (committed) adds info about null arguments to the API docs for the Collections.sort() methods: 2006-11-10 David Gilbert [EMAIL PROTECTED] * java/util/Collections.java (sort(List)): Minor API doc addition, (sort(List, Comparator)): Likewise. Regards,

[cp-patches] QName

2006-11-10 Thread Chris Burdess
I'd like some feedback on a change I'd like to make to a small part of the JAXP implementation. The API in question is the javax.xml.namespace.QName class, which is a common cause of developer error as its constructor uses plain Strings and you have to remember which order the arguments go

[cp-patches] FYI: Swing text performance fix

2006-11-10 Thread Roman Kennke
This should significantly improve performance in Swing text components. Before we always called repaint() on _the whole component_ for each and every little insert/remove/change operation. With this fix, this is going down to the actual views which can calculate a much better repaint region.

RE: [cp-patches] QName

2006-11-10 Thread Jeroen Frijters
Chris Burdess wrote: I'd like some feedback on a change I'd like to make to a small part of the JAXP implementation. [...] Note that this is contentious, because Sun's QName *doesn't do any validation* of its input. However, I still think it's the right thing to do, and I'm not alone:

[cp-patches] FYI: BeanContextSupport.getChildBeanContextChild() implemented

2006-11-10 Thread Dave Gilbert
This patch (committed) implements a missing method in the BeanContextSupport class: 2006-11-11 David Gilbert [EMAIL PROTECTED] * java/beans/beancontext/BeanContextSupport.java (getChildBeanContextChild): Implemented. I already committed a Mauve test to back this up. Regards,