public inbox for mauve-discuss@sourceware.org
 help / color / mirror / Atom feed
* Can I commit a bug fix in CreateTags.java ?
@ 2005-09-17 11:23 Fabien DUMINY
  2005-09-17 11:54 ` Michael Koch
  0 siblings, 1 reply; 7+ messages in thread
From: Fabien DUMINY @ 2005-09-17 11:23 UTC (permalink / raw)
  To: mauve-discuss

Hi,
I found and fixed a bug in CreateTags. The ';' wasn't removed from the 
package declaration and it was written in the testlet className.

Can I commit the bug fix (when I will have the rights to do) ?
I ask you that question because I read that such modification (in the 
core of Mauve, not in the testlets) should be discussed here.

Fabien.



^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: Can I commit a bug fix in CreateTags.java ?
  2005-09-17 11:23 Can I commit a bug fix in CreateTags.java ? Fabien DUMINY
@ 2005-09-17 11:54 ` Michael Koch
  2005-09-17 12:20   ` Fabien DUMINY
  0 siblings, 1 reply; 7+ messages in thread
From: Michael Koch @ 2005-09-17 11:54 UTC (permalink / raw)
  To: Fabien DUMINY; +Cc: mauve-discuss

On Sat, Sep 17, 2005 at 01:24:00PM +0200, Fabien DUMINY wrote:
> Hi,
> I found and fixed a bug in CreateTags. The ';' wasn't removed from the package declaration and it 
> was written in the testlet className.
> 
> Can I commit the bug fix (when I will have the rights to do) ?
> I ask you that question because I read that such modification (in the core of Mauve, not in the 
> testlets) should be discussed here.

Please send a patch representing this change here.


Michael
-- 
Escape the Java Trap with GNU Classpath!
http://www.gnu.org/philosophy/java-trap.html

Join the community at http://planet.classpath.org/

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: Can I commit a bug fix in CreateTags.java ?
  2005-09-17 11:54 ` Michael Koch
@ 2005-09-17 12:20   ` Fabien DUMINY
  2005-09-19 12:51     ` David Gilbert
  2005-09-22 15:48     ` Tom Tromey
  0 siblings, 2 replies; 7+ messages in thread
From: Fabien DUMINY @ 2005-09-17 12:20 UTC (permalink / raw)
  To: Michael Koch; +Cc: mauve-discuss

[-- Attachment #1: Type: text/plain, Size: 572 bytes --]

Michael Koch a écrit :

>On Sat, Sep 17, 2005 at 01:24:00PM +0200, Fabien DUMINY wrote:
>  
>
>>Hi,
>>I found and fixed a bug in CreateTags. The ';' wasn't removed from the package declaration and it 
>>was written in the testlet className.
>>
>>Can I commit the bug fix (when I will have the rights to do) ?
>>I ask you that question because I read that such modification (in the core of Mauve, not in the 
>>testlets) should be discussed here.
>>    
>>
>
>Please send a patch representing this change here.
>
>
>Michael
>  
>
Here is the patch (joined file).

Fabien.

[-- Attachment #2: CreateTags_bugfix.patch --]
[-- Type: text/plain, Size: 823 bytes --]

Index: CreateTags.java
===================================================================
RCS file: /cvs/mauve/mauve/gnu/testlet/runner/CreateTags.java,v
retrieving revision 1.1
diff -u -r1.1 CreateTags.java
--- CreateTags.java	1 Jul 2005 18:33:43 -0000	1.1
+++ CreateTags.java	17 Sep 2005 12:14:22 -0000
@@ -130,7 +130,10 @@
                                 tags = line;
                         }
                         else if(buf.indexOf("package ") == 0)
-                            pckage = buf.substring(8, buf.length()-1);
+                        {
+                            int idx = buf.lastIndexOf(";");
+                            pckage = buf.substring(8, idx);
+                        }
                         buf = new StringBuffer();
                         maxLines--;
                     }


^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: Can I commit a bug fix in CreateTags.java ?
  2005-09-17 12:20   ` Fabien DUMINY
@ 2005-09-19 12:51     ` David Gilbert
  2005-09-24  8:18       ` Fabien DUMINY
  2005-09-22 15:48     ` Tom Tromey
  1 sibling, 1 reply; 7+ messages in thread
From: David Gilbert @ 2005-09-19 12:51 UTC (permalink / raw)
  To: Fabien DUMINY; +Cc: Michael Koch, mauve-discuss

Fabien DUMINY wrote:

> Michael Koch a écrit :
>
>> On Sat, Sep 17, 2005 at 01:24:00PM +0200, Fabien DUMINY wrote:
>>  
>>
>>> Hi,
>>> I found and fixed a bug in CreateTags. The ';' wasn't removed from 
>>> the package declaration and it was written in the testlet className.
>>>
>>> Can I commit the bug fix (when I will have the rights to do) ?
>>> I ask you that question because I read that such modification (in 
>>> the core of Mauve, not in the testlets) should be discussed here.
>>>   
>>
>>
>> Please send a patch representing this change here.
>>
>>
>> Michael
>>  
>>
> Here is the patch (joined file).
>
> Fabien.
>
>------------------------------------------------------------------------
>
>Index: CreateTags.java
>===================================================================
>RCS file: /cvs/mauve/mauve/gnu/testlet/runner/CreateTags.java,v
>retrieving revision 1.1
>diff -u -r1.1 CreateTags.java
>--- CreateTags.java	1 Jul 2005 18:33:43 -0000	1.1
>+++ CreateTags.java	17 Sep 2005 12:14:22 -0000
>@@ -130,7 +130,10 @@
>                                 tags = line;
>                         }
>                         else if(buf.indexOf("package ") == 0)
>-                            pckage = buf.substring(8, buf.length()-1);
>+                        {
>+                            int idx = buf.lastIndexOf(";");
>+                            pckage = buf.substring(8, idx);
>+                        }
>                         buf = new StringBuffer();
>                         maxLines--;
>                     }
>  
>
I ran the CreateTags program (for the first time) and didn't see a 
problem.  Here's the first few lines of the output file:

[JDK1.0]
gnu.testlet.java.io.LineNumberInputStream.Test
gnu.testlet.java.io.FilterInputStream.MarkReset
gnu.testlet.java.io.FilterInputStream.SimpleRead
gnu.testlet.java.io.BufferedInputStream.ProtectedVars
gnu.testlet.java.io.BufferedInputStream.MarkReset
gnu.testlet.java.io.BufferedInputStream.ZeroRead
gnu.testlet.java.io.BufferedInputStream.BigMark
gnu.testlet.java.io.BufferedInputStream.SimpleRead

What do you get when you run it? What are you running it with?  (I tried 
both JamVM with Classpath CVS and Sun's JDK1.4.2_08 on GNU Linux).

Regards,

Dave

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: Can I commit a bug fix in CreateTags.java ?
  2005-09-17 12:20   ` Fabien DUMINY
  2005-09-19 12:51     ` David Gilbert
@ 2005-09-22 15:48     ` Tom Tromey
  1 sibling, 0 replies; 7+ messages in thread
From: Tom Tromey @ 2005-09-22 15:48 UTC (permalink / raw)
  To: Fabien DUMINY; +Cc: Michael Koch, mauve-discuss

>>>>> "Fabien" == Fabien DUMINY <fduminy@users.sourceforge.net> writes:

>> Please send a patch representing this change here.
Fabien> Here is the patch (joined file).
[...]

Just FYI ... note that all mauve changes require a ChangeLog entry.
There are some docs online about how to write these, I can dig up a
URL if you like.

Tom

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: Can I commit a bug fix in CreateTags.java ?
  2005-09-19 12:51     ` David Gilbert
@ 2005-09-24  8:18       ` Fabien DUMINY
  2005-10-08 14:02         ` RFA: " Fabien DUMINY
  0 siblings, 1 reply; 7+ messages in thread
From: Fabien DUMINY @ 2005-09-24  8:18 UTC (permalink / raw)
  To: David Gilbert; +Cc: Michael Koch, mauve-discuss

David Gilbert a écrit :

> Fabien DUMINY wrote:
>
>> Michael Koch a écrit :
>>
>>> On Sat, Sep 17, 2005 at 01:24:00PM +0200, Fabien DUMINY wrote:
>>>  
>>>
>>>> Hi,
>>>> I found and fixed a bug in CreateTags. The ';' wasn't removed from 
>>>> the package declaration and it was written in the testlet className.
>>>>
>>>> Can I commit the bug fix (when I will have the rights to do) ?
>>>> I ask you that question because I read that such modification (in 
>>>> the core of Mauve, not in the testlets) should be discussed here.
>>>>   
>>>
>>>
>>>
>>> Please send a patch representing this change here.
>>>
>>>
>>> Michael
>>>  
>>>
>> Here is the patch (joined file).
>>
>> Fabien.
>>
>> ------------------------------------------------------------------------
>>
>> Index: CreateTags.java
>> ===================================================================
>> RCS file: /cvs/mauve/mauve/gnu/testlet/runner/CreateTags.java,v
>> retrieving revision 1.1
>> diff -u -r1.1 CreateTags.java
>> --- CreateTags.java    1 Jul 2005 18:33:43 -0000    1.1
>> +++ CreateTags.java    17 Sep 2005 12:14:22 -0000
>> @@ -130,7 +130,10 @@
>>                                 tags = line;
>>                         }
>>                         else if(buf.indexOf("package ") == 0)
>> -                            pckage = buf.substring(8, buf.length()-1);
>> +                        {
>> +                            int idx = buf.lastIndexOf(";");
>> +                            pckage = buf.substring(8, idx);
>> +                        }
>>                         buf = new StringBuffer();
>>                         maxLines--;
>>                     }
>>  
>>
> I ran the CreateTags program (for the first time) and didn't see a 
> problem.  Here's the first few lines of the output file:
>
> [JDK1.0]
> gnu.testlet.java.io.LineNumberInputStream.Test
> gnu.testlet.java.io.FilterInputStream.MarkReset
> gnu.testlet.java.io.FilterInputStream.SimpleRead
> gnu.testlet.java.io.BufferedInputStream.ProtectedVars
> gnu.testlet.java.io.BufferedInputStream.MarkReset
> gnu.testlet.java.io.BufferedInputStream.ZeroRead
> gnu.testlet.java.io.BufferedInputStream.BigMark
> gnu.testlet.java.io.BufferedInputStream.SimpleRead
>
> What do you get when you run it? What are you running it with?  (I 
> tried both JamVM with Classpath CVS and Sun's JDK1.4.2_08 on GNU Linux).
>
> Regards,
>
> Dave
>
>
I tried with Sun's jdk 1.5.0_03 and Classpath under eclipse 
3.2M1/Windows XP.
Without that patch I get something like that

gnu.testlet.java.io.LineNumberInputStream;.Test
gnu.testlet.java.io.FilterInputStream;.MarkReset
...
So, for me, the ';' at the end of the package declaration is not removed.
I think that it is due to the fact that under Windows end of line are on 
2 characters CR LF ("\r\n") and Linux it is only 1 character.

In fact, the patch give something more safe even on Linux because we can 
be sure that nobody will add blank characters after the ';' on the 
package declaration line.
Ok, I must say that I forgot to add a trim() on the package name, in 
case of there were some blank(s) between it and the ';'.
... maybe the ';' can also be on the next line but I don't thnik that 
will occure.




^ permalink raw reply	[flat|nested] 7+ messages in thread

* RFA: Can I commit a bug fix in CreateTags.java ?
  2005-09-24  8:18       ` Fabien DUMINY
@ 2005-10-08 14:02         ` Fabien DUMINY
  0 siblings, 0 replies; 7+ messages in thread
From: Fabien DUMINY @ 2005-10-08 14:02 UTC (permalink / raw)
  To: mauve-discuss

Hi all,
Is there anybody that can test that under linux ?
If nobody answer I will assume that it works under Linux and will commit
that to CVS.

Fabien.

Fabien DUMINY a écrit :

> David Gilbert a écrit :
>
>> Fabien DUMINY wrote:
>>
>>> Michael Koch a écrit :
>>>
>>>> On Sat, Sep 17, 2005 at 01:24:00PM +0200, Fabien DUMINY wrote:
>>>>  
>>>>
>>>>> Hi,
>>>>> I found and fixed a bug in CreateTags. The ';' wasn't removed from 
>>>>> the package declaration and it was written in the testlet className.
>>>>>
>>>>> Can I commit the bug fix (when I will have the rights to do) ?
>>>>> I ask you that question because I read that such modification (in 
>>>>> the core of Mauve, not in the testlets) should be discussed here.
>>>>>   
>>>>
>>>>
>>>>
>>>>
>>>> Please send a patch representing this change here.
>>>>
>>>>
>>>> Michael
>>>>  
>>>>
>>> Here is the patch (joined file).
>>>
>>> Fabien.
>>>
>>> ------------------------------------------------------------------------ 
>>>
>>>
>>> Index: CreateTags.java
>>> ===================================================================
>>> RCS file: /cvs/mauve/mauve/gnu/testlet/runner/CreateTags.java,v
>>> retrieving revision 1.1
>>> diff -u -r1.1 CreateTags.java
>>> --- CreateTags.java    1 Jul 2005 18:33:43 -0000    1.1
>>> +++ CreateTags.java    17 Sep 2005 12:14:22 -0000
>>> @@ -130,7 +130,10 @@
>>>                                 tags = line;
>>>                         }
>>>                         else if(buf.indexOf("package ") == 0)
>>> -                            pckage = buf.substring(8, buf.length()-1);
>>> +                        {
>>> +                            int idx = buf.lastIndexOf(";");
>>> +                            pckage = buf.substring(8, idx);
>>> +                        }
>>>                         buf = new StringBuffer();
>>>                         maxLines--;
>>>                     }
>>>  
>>>
>> I ran the CreateTags program (for the first time) and didn't see a 
>> problem.  Here's the first few lines of the output file:
>>
>> [JDK1.0]
>> gnu.testlet.java.io.LineNumberInputStream.Test
>> gnu.testlet.java.io.FilterInputStream.MarkReset
>> gnu.testlet.java.io.FilterInputStream.SimpleRead
>> gnu.testlet.java.io.BufferedInputStream.ProtectedVars
>> gnu.testlet.java.io.BufferedInputStream.MarkReset
>> gnu.testlet.java.io.BufferedInputStream.ZeroRead
>> gnu.testlet.java.io.BufferedInputStream.BigMark
>> gnu.testlet.java.io.BufferedInputStream.SimpleRead
>>
>> What do you get when you run it? What are you running it with?  (I 
>> tried both JamVM with Classpath CVS and Sun's JDK1.4.2_08 on GNU Linux).
>>
>> Regards,
>>
>> Dave
>>
>>
> I tried with Sun's jdk 1.5.0_03 and Classpath under eclipse 
> 3.2M1/Windows XP.
> Without that patch I get something like that
>
> gnu.testlet.java.io.LineNumberInputStream;.Test
> gnu.testlet.java.io.FilterInputStream;.MarkReset
> ...
> So, for me, the ';' at the end of the package declaration is not removed.
> I think that it is due to the fact that under Windows end of line are 
> on 2 characters CR LF ("\r\n") and Linux it is only 1 character.
>
> In fact, the patch give something more safe even on Linux because we 
> can be sure that nobody will add blank characters after the ';' on the 
> package declaration line.
> Ok, I must say that I forgot to add a trim() on the package name, in 
> case of there were some blank(s) between it and the ';'.
> ... maybe the ';' can also be on the next line but I don't thnik that 
> will occure.
>
>





^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2005-10-08 14:02 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2005-09-17 11:23 Can I commit a bug fix in CreateTags.java ? Fabien DUMINY
2005-09-17 11:54 ` Michael Koch
2005-09-17 12:20   ` Fabien DUMINY
2005-09-19 12:51     ` David Gilbert
2005-09-24  8:18       ` Fabien DUMINY
2005-10-08 14:02         ` RFA: " Fabien DUMINY
2005-09-22 15:48     ` Tom Tromey

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).