[cp-patches] FYI: gnu.CORBA.IOR fix.

2005-11-06 Thread Meskauskas Audrius
2005-11-07 Audrius Meskauskas <[EMAIL PROTECTED]> * gnu/CORBA/IOR.java (equals, hasCode): Compare port number as well and do not crash on .Internet==null. Index: gnu/CORBA/IOR.java === RCS file: /cvsroot/classpath/classpath/gnu/CO

Re: [cp-patches] FYI: Image getScaledInstance() vs AreaAveragingScaleFilter

2005-11-06 Thread Robert Schuster
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi. > RCS file: > /cvsroot/classpath/classpath/java/awt/image/AreaAveragingScaleFilter.java,v > retrieving revision 1.7 > diff -u -r1.7 AreaAveragingScaleFilter.java > --- java/awt/image/AreaAveragingScaleFilter.java 21 Aug 2005 03:11:23 > -000

Re: [cp-patches] FYI: Image getScaledInstance() vs AreaAveragingScaleFilter

2005-11-06 Thread Robert Schuster
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi Mark. > @@ -178,20 +180,25 @@ > */ >public Image getScaledInstance(int width, int height, int flags) >{ > +ImageFilter filter; > switch (flags) > { >case SCALE_DEFAULT: >case SCALE_FAST: >case SCALE

[cp-patches] Re: FYI: Fix javax.swing.Timer

2005-11-06 Thread Tom Tromey
> "Mark" == Mark Wielaard <[EMAIL PROTECTED]> writes: Mark> I forgot to carefully check all mauve results and my last minute Mark> cleanup broke gnu.testlet.javax.swing.Timer.test_23918. Tom, Mark> shouldn't the autotester have caught this? Yeah, you'd think so. According to the file used fo

[cp-patches] FYI: Fix javax.swing.Timer

2005-11-06 Thread Mark Wielaard
Hi all, I introduced a regression in Timer just before the release. My fault, I should have tried to cleanup/fix the Timer code just before releasing. I forgot to carefully check all mauve results and my last minute cleanup broke gnu.testlet.javax.swing.Timer.test_23918. Tom, shouldn't the autotes

[cp-patches] FYI: Image getScaledInstance() vs AreaAveragingScaleFilter

2005-11-06 Thread Mark Wielaard
Hi, I was happy that I could quickly fix the Image.getScaledInstance() method to support the AreaAveragingScaleFilter only to find out that class doesn't actually do something :{ So the important part of this patch is to actually document that fact with a FIXME. 2005-11-06 Mark Wielaard <[EMAIL

Re: [cp-patches] [patch] GdkGraphics2D.c debug code update

2005-11-06 Thread Mark Wielaard
Hi Andreas, On Sun, 2005-11-06 at 22:58 +0100, Andreas Tobler wrote: > this patch is maybe useless, but for completeness. > > 2005-11-06 Andreas Tobler <[EMAIL PROTECTED]> > > * native/jni/gtk-peer/gnu_java_awt_peer_gtk_GdkGraphics2D.c > (Java_gnu_java_awt_peer_gtk_GdkGraphics2D_set

[cp-patches] [patch] GdkGraphics2D.c debug code update

2005-11-06 Thread Andreas Tobler
Hello, this patch is maybe useless, but for completeness. ok? Andreas 2005-11-06 Andreas Tobler <[EMAIL PROTECTED]> * native/jni/gtk-peer/gnu_java_awt_peer_gtk_GdkGraphics2D.c (Java_gnu_java_awt_peer_gtk_GdkGraphics2D_setGradientUnlocked): Update debug output to refl

Re: [cp-patches] Patch: javax.print.event.* API docs

2005-11-06 Thread Wolfgang Baer
Mark Wielaard wrote: Hi Wolfgang, On Thu, 2005-11-03 at 20:40 +0100, Wolfgang Baer wrote: this patch adds api docs to the javax.print.event package. 2005-11-03 Wolfgang Baer <[EMAIL PROTECTED]> * javax/print/event/*: Added API docs all over. Thanks! This looks good. Shall I comm

Re: [cp-patches] Patch: File.getParent fixlet

2005-11-06 Thread Wolfgang Baer
Mark Wielaard wrote: Hi Wolfgang, On Sun, 2005-11-06 at 19:06 +0100, Wolfgang Baer wrote: These are the fixlets needed to make java.io.File pass the submitted mauve tests for an empty file ( new File("") ). 2005-11-06 Wolfgang Baer <[EMAIL PROTECTED]> * java/io/File.java

Re: [cp-patches] Fix for StAX stream writer

2005-11-06 Thread Chris Burdess
Mark Wielaard wrote: + private int count = 0; [...] + protected String createPrefix() + { +return "ns" + (count++); } Looks like this method can be private. Or are you thinking of an subclass that overrides this method to provide different default namespace prefixes? In that case plea

[cp-patches] Conformance patch for XSLT output

2005-11-06 Thread Chris Burdess
This fixes a case where the output mode is HTML and not XHTML, since the HTML DTD does not define the "apos" entity. 2005-11-06 Chris Burdess <[EMAIL PROTECTED]> * gnu/xml/transform/StreamSerializer.java: Avoid undeclared apos entity when output mode is HTML. -- 犬 Chris Burde

Re: [cp-patches] Patch: File.getParent fixlet

2005-11-06 Thread Mark Wielaard
Hi Wolfgang, On Sun, 2005-11-06 at 19:06 +0100, Wolfgang Baer wrote: > These are the fixlets needed to make java.io.File pass the submitted > mauve tests for an empty file ( new File("") ). > > 2005-11-06 Wolfgang Baer <[EMAIL PROTECTED]> > > * java/io/File.java >(getParen

Re: [cp-patches] Patch: File.getParent fixlet

2005-11-06 Thread Wolfgang Baer
Mark Wielaard wrote: Hi Wolfgang, On Fri, 2005-10-28 at 20:47 +0200, Wolfgang Baer wrote: File.getParent fails with an Exception for a file with a pathname of "". A corresponding mauve test is send to mauve-patches. 2005-10-28 Wolfgang Baer <[EMAIL PROTECTED]> * java/io/File.java

[cp-patches] FYI: Fixes in org.omg.CORBA.Object._is_equivalent.

2005-11-06 Thread Meskauskas Audrius
This method provides better functionality for the org.omg.CORBA.Object._is_equivalent. If the objects are remote, it is still possible to check if they are equivalent by comparing the host and object key information. 2005-11-06 Audrius Meskauskas <[EMAIL PROTECTED]> * gnu/CORBA/IOR.java (equ

Re: [cp-patches] Fix for StAX stream writer

2005-11-06 Thread Mark Wielaard
Hi Chris, On Sun, 2005-11-06 at 09:54 +, Chris Burdess wrote: > Commited this patch to fix bug #24250. > > 2005-11-06 Chris Burdess <[EMAIL PROTECTED]> > > * javax/xml/stream/XMLStreamWriterImpl.java: Fixed handling of > namespaces when isPrefixDefaulting is set. If you co

[cp-patches] FYI:Implementing http://, ftp:// and file:// for org.omg.CORBA.ORB.string_to_object(String)

2005-11-06 Thread Meskauskas Audrius
This patch adds support for the three protocols that must be supported by this method as defined in CORBA 3.0.3 (formal/04-03-12). The requirement is to read from the specified location a string that must be the address string, finally following one of the older standards of the stringified obj

[cp-patches] Fix for StAX stream writer

2005-11-06 Thread Chris Burdess
Commited this patch to fix bug #24250. 2005-11-06 Chris Burdess <[EMAIL PROTECTED]> * javax/xml/stream/XMLStreamWriterImpl.java: Fixed handling of namespaces when isPrefixDefaulting is set. -- 犬 Chris Burdess "They that can give up essential liberty to obtain a little safety