Re: [cp-patches] Re: Absolute URL parsing bug

2005-07-03 Thread Andrew Haley
Chris Burdess writes:
  Tom Tromey wrote:
   Andrew I have no opinions about the syntax of URIs, I only want to make
   Andrew real-world applications work.  In this case we have to guess what 
   Java
   Andrew libraries are doing.
   
   FWIW we've had some patch churn in this area in the past.
   It would be excellent to have a set of Mauve tests so that future
   changes don't break things that we know need to work.  In particular
   at least the current case should be added.
  
  Perhaps we should also get some feedback from the W3C URI team on how
  they feel the APIs apply to the concepts?

If what W3C wants is different from what Java programmers do, then we
have to go with the API that Java programmers already use.  So, even
if W3C says something is wrong, we have to do it anyway.

Andrew.


___
Classpath-patches mailing list
Classpath-patches@gnu.org
http://lists.gnu.org/mailman/listinfo/classpath-patches


Re: [cp-patches] Re: Serialization: readResolve and writeReplace in parent class

2005-07-03 Thread Mark Wielaard
Hi,

On Mon, 2005-06-27 at 19:32 +0200, Daniel Bonniot wrote:
  I wonder if there is a strange case here where someone adds a private
  method to the class hierarchy later (after all the other classes are
  compiled).  Should the private method hide the superclass methods of
  the same signature?  Perhaps this is an incompatible change, offhand I
  forget.
 
 I don't know the answer. If somebody can come up with a mauve test...

 In the mean time, my patch improves on the current behavior.

Agreed and there are Mauve tests to proof that. Thanks.
I have no idea how this strange case looks like. Since it seems that any
later class can only be added at the bottom of the class hierarchy.
Tom, do you have an example of what you are thinking of?

I have checked this in with the following ChangeLog entry:

2005-07-03  Daniel Bonniot  [EMAIL PROTECTED]

   * java/io/ObjectStreamClass.java (inSamePackage): New private method.
   (findAccessibleMethod): Likewise.
   (cacheMethods): Lookup readResolve and writeReplace using the new
   findAccessibleMethod().

Thanks Daniel.

Cheers,

Mark



___
Classpath-patches mailing list
Classpath-patches@gnu.org
http://lists.gnu.org/mailman/listinfo/classpath-patches


Re: Eclipse broken with 0.16

2005-07-03 Thread Thomas Zander
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Sunday 3 July 2005 07:02, Grzegorz B. Prokopski wrote:
  ... but there are a whole load of related changes that I've been
  applying over the last couple of days.

 I am sure there was.  But from a VM developer POV I must admit that as
 much as I would love to include the profitable changes that have been
 made in last days, still it would be hard for me to choose which ones
 they were and which of these are not too risky for a stable SableVM
 release :-)

 In other words, if you feel that some of other parts of your patches
 were also critically important (~bugfixes only), it would be great if
 you could send them as separate patches.  As Mark said, it's unlikely
 that VM devs would ship GNU Classpath unpatched, so this sounds like
 the right thing to do.  We (the VM devs) just need to know which
 patches we should apply :-)

Let me point to the option to create a stable-branch again, this kind of 
work is exactly what they are meant for.

- -- 
Thomas Zander
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.2.5 (GNU/Linux)

iD8DBQFCx58uCojCW6H2z/QRAhVrAKDj+c5swpjvBU9rEXzgvGP9MNzzTQCaAw2h
jDYbDV5qY/vqjf+R9+bT4cU=
=Njaj
-END PGP SIGNATURE-


___
Classpath mailing list
Classpath@gnu.org
http://lists.gnu.org/mailman/listinfo/classpath


Re: New volunteer needing task

2005-07-03 Thread Dimitri Koussa

Hi David,

Thanks for the tasks.
I am interested in working on the imageio plugin for PNG images.

The ImageIO.getReaderFormatNames() method returns an entry that is png.
ImageIO.getWriterFormatNames() does the same.
Does this mean that the plugins have been written?

I searched the mailing list and found this:
http://lists.gnu.org/archive/html/classpath/2002-07/msg00013.html
Although it does not show whether the class was written or not.

Which package would a PNG imageio plugin go under?
Would it be javax.imageio.plugins.png?

Thanks
- Dimitri


___
Classpath mailing list
Classpath@gnu.org
http://lists.gnu.org/mailman/listinfo/classpath


Fix for configure test

2005-07-03 Thread Archie Cobbs

2005-07-03  Archie Cobbs  [EMAIL PROTECTED]

* m4/acinclude.m4: fix broken expr(1) syntax

-Archie

__
Archie Cobbs  *CTO, Awarix*  http://www.awarix.com
Index: m4/acinclude.m4
===
RCS file: /cvsroot/classpath/classpath/m4/acinclude.m4,v
retrieving revision 1.4
diff -u -r1.4 acinclude.m4
--- m4/acinclude.m4 17 Jun 2005 19:32:13 -  1.4
+++ m4/acinclude.m4 3 Jul 2005 20:02:54 -
@@ -147,7 +147,7 @@
 JIKES_VERSION=`$JIKES --version | awk '/^Jikes Compiler/' | cut -d ' ' -f 
5`
 JIKES_VERSION_MAJOR=`echo $JIKES_VERSION | cut -d '.' -f 1`
 JIKES_VERSION_MINOR=`echo $JIKES_VERSION | cut -d '.' -f 2`
-if expr $JIKES_VERSION_MAJOR == 1  /dev/null; then
+if expr $JIKES_VERSION_MAJOR = 1  /dev/null; then
   if expr $JIKES_VERSION_MINOR \ 19  /dev/null; then
 JIKES=
   fi
___
Classpath mailing list
Classpath@gnu.org
http://lists.gnu.org/mailman/listinfo/classpath


[commit-cp] classpath ./ChangeLog m4/acinclude.m4

2005-07-03 Thread Archie Cobbs
CVSROOT:/cvsroot/classpath
Module name:classpath
Branch: 
Changes by: Archie Cobbs [EMAIL PROTECTED]05/07/03 20:06:15

Modified files:
.  : ChangeLog 
m4 : acinclude.m4 

Log message:
* m4/acinclude.m4: fix broken expr(1) syntax

CVSWeb URLs:
http://savannah.gnu.org/cgi-bin/viewcvs/classpath/classpath/ChangeLog.diff?tr1=1.3976tr2=1.3977r1=textr2=text
http://savannah.gnu.org/cgi-bin/viewcvs/classpath/classpath/m4/acinclude.m4.diff?tr1=1.4tr2=1.5r1=textr2=text



___
Commit-classpath mailing list
Commit-classpath@gnu.org
http://lists.gnu.org/mailman/listinfo/commit-classpath