You can subscribe to this list here.
2003 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(15) |
Oct
(23) |
Nov
|
Dec
(25) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2004 |
Jan
(9) |
Feb
|
Mar
|
Apr
|
May
(76) |
Jun
(207) |
Jul
(242) |
Aug
(42) |
Sep
(33) |
Oct
|
Nov
(7) |
Dec
(1) |
2005 |
Jan
|
Feb
|
Mar
(5) |
Apr
|
May
|
Jun
|
Jul
(3) |
Aug
(66) |
Sep
(38) |
Oct
(6) |
Nov
|
Dec
(2) |
2006 |
Jan
(17) |
Feb
(5) |
Mar
(28) |
Apr
(6) |
May
|
Jun
|
Jul
(1) |
Aug
|
Sep
|
Oct
(1) |
Nov
(1) |
Dec
(7) |
2007 |
Jan
|
Feb
|
Mar
|
Apr
(7) |
May
(33) |
Jun
(4) |
Jul
(3) |
Aug
|
Sep
(5) |
Oct
|
Nov
|
Dec
|
2008 |
Jan
(4) |
Feb
(3) |
Mar
(2) |
Apr
|
May
(1) |
Jun
|
Jul
(6) |
Aug
(8) |
Sep
(5) |
Oct
(20) |
Nov
(7) |
Dec
(9) |
2009 |
Jan
(8) |
Feb
(3) |
Mar
(20) |
Apr
(10) |
May
(40) |
Jun
(11) |
Jul
(23) |
Aug
(4) |
Sep
(1) |
Oct
(1) |
Nov
|
Dec
(2) |
2010 |
Jan
(5) |
Feb
(1) |
Mar
|
Apr
|
May
|
Jun
(1) |
Jul
|
Aug
(2) |
Sep
|
Oct
|
Nov
|
Dec
|
2011 |
Jan
|
Feb
|
Mar
|
Apr
(3) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(1) |
2012 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(1) |
Sep
|
Oct
|
Nov
|
Dec
|
2013 |
Jan
|
Feb
|
Mar
|
Apr
(6) |
May
(22) |
Jun
(2) |
Jul
|
Aug
|
Sep
|
Oct
(2) |
Nov
(1) |
Dec
(2) |
2014 |
Jan
(5) |
Feb
|
Mar
|
Apr
|
May
(1) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(1) |
Dec
|
2015 |
Jan
(1) |
Feb
(2) |
Mar
(1) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2016 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(1) |
Nov
|
Dec
|
2017 |
Jan
|
Feb
|
Mar
(1) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Lars K?h. <lk...@us...> - 2004-05-23 08:16:12
|
Update of /cvsroot/clirr/clirr/src/java/net/sf/clirr/ant In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19670/src/java/net/sf/clirr/ant Modified Files: AntTask.java Log Message: fail in case filesets are empty (RFE #958808) Index: AntTask.java =================================================================== RCS file: /cvsroot/clirr/clirr/src/java/net/sf/clirr/ant/AntTask.java,v retrieving revision 1.8 retrieving revision 1.9 diff -u -r1.8 -r1.9 --- AntTask.java 22 May 2004 14:03:58 -0000 1.8 +++ AntTask.java 23 May 2004 08:15:59 -0000 1.9 @@ -175,7 +175,7 @@ if (origFiles == null || newFiles == null) { - throw new BuildException("Missing nested filesetes origFiles and newFiles.", getLocation()); + throw new BuildException("Missing nested filesets origFiles and newFiles.", getLocation()); } if (newClassPath == null) @@ -191,6 +191,18 @@ final File[] origJars = scanFileSet(origFiles); final File[] newJars = scanFileSet(newFiles); + if (origJars.length == 0) + { + throw new BuildException("No files in nested fileset origFiles - nothing to check!" + + " Please check your fileset specification."); + } + + if (newJars.length == 0) + { + throw new BuildException("No files in nested fileset newFiles - nothing to check!" + + " Please check your fileset specification."); + } + final ClassLoader origThirdPartyLoader = createClasspathLoader(origClassPath); final ClassLoader newThirdPartyLoader = createClasspathLoader(newClassPath); |
From: Lars K?h. <lk...@us...> - 2004-05-23 07:55:22
|
Update of /cvsroot/clirr/clirr In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16635 Modified Files: project.xml Log Message: next version: 0.3 Index: project.xml =================================================================== RCS file: /cvsroot/clirr/clirr/project.xml,v retrieving revision 1.16 retrieving revision 1.17 diff -u -r1.16 -r1.17 --- project.xml 23 May 2004 05:57:19 -0000 1.16 +++ project.xml 23 May 2004 07:55:14 -0000 1.17 @@ -12,7 +12,7 @@ <!-- The version of the project under development, e.g. 1.1, 1.2, 2.0-dev --> - <currentVersion>0.2</currentVersion> + <currentVersion>0.3-dev</currentVersion> <!-- details about the organization that 'owns' the project --> <organization> |
From: Lars K?h. <lk...@us...> - 2004-05-23 07:54:26
|
Update of /cvsroot/clirr/clirr/src/java/net/sf/clirr/checks In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16459 Modified Files: FieldSetCheck.java Log Message: remove debug messages to System.out Index: FieldSetCheck.java =================================================================== RCS file: /cvsroot/clirr/clirr/src/java/net/sf/clirr/checks/FieldSetCheck.java,v retrieving revision 1.5 retrieving revision 1.6 diff -u -r1.5 -r1.6 --- FieldSetCheck.java 23 May 2004 07:45:37 -0000 1.5 +++ FieldSetCheck.java 23 May 2004 07:54:17 -0000 1.6 @@ -123,12 +123,6 @@ { final String bSig = bField.getType().toString(); final String cSig = cField.getType().toString(); - System.out.println("====================================="); - System.out.println("bField = " + bField); - System.out.println("bSig = " + bSig); - System.out.println("cField = " + cField); - System.out.println("cSig = " + cSig); - System.out.println("====================================="); if (!bSig.equals(cSig)) { fireDiff("Changed type of field " + bField.getName() + " from " + bSig + " to " + cSig, |
From: Lars K?h. <lk...@us...> - 2004-05-23 07:45:49
|
Update of /cvsroot/clirr/clirr/src/test/net/sf/clirr/checks In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15095/src/test/net/sf/clirr/checks Modified Files: FieldSetCheckTest.java Log Message: detect changes of field types (RFE #958810) Index: FieldSetCheckTest.java =================================================================== RCS file: /cvsroot/clirr/clirr/src/test/net/sf/clirr/checks/FieldSetCheckTest.java,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- FieldSetCheckTest.java 23 May 2004 05:41:27 -0000 1.2 +++ FieldSetCheckTest.java 23 May 2004 07:45:37 -0000 1.3 @@ -27,6 +27,8 @@ new ApiDifference("Added public field stat8 in testlib.MembersChange", Severity.INFO, "testlib.MembersChange", null, "stat8"), new ApiDifference("Field fin4 is now non-final in testlib.MembersChange", Severity.INFO, "testlib.MembersChange", null, "fin4"), new ApiDifference("Field pub2 is now static in testlib.MembersChange", Severity.ERROR, "testlib.MembersChange", null, "pub2"), + new ApiDifference("Changed type of field obj1 from java.lang.Object to java.lang.String in testlib.MembersChange", Severity.ERROR, "testlib.MembersChange", null, "obj1"), + new ApiDifference("Changed type of field obj2 from java.lang.Boolean to java.lang.String in testlib.MembersChange", Severity.ERROR, "testlib.MembersChange", null, "obj2"), }; verify(expected); } |
From: Lars K?h. <lk...@us...> - 2004-05-23 07:45:48
|
Update of /cvsroot/clirr/clirr/src/java/net/sf/clirr/checks In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15095/src/java/net/sf/clirr/checks Modified Files: FieldSetCheck.java Log Message: detect changes of field types (RFE #958810) Index: FieldSetCheck.java =================================================================== RCS file: /cvsroot/clirr/clirr/src/java/net/sf/clirr/checks/FieldSetCheck.java,v retrieving revision 1.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- FieldSetCheck.java 23 May 2004 05:41:27 -0000 1.4 +++ FieldSetCheck.java 23 May 2004 07:45:37 -0000 1.5 @@ -99,6 +99,7 @@ newInCurrent[cIdx] = false; checkForModifierChange(bField, cField, currentClass); checkForVisibilityChange(bField, cField, currentClass); + checkForReturnTypeChange(bField, cField, currentClass); } } @@ -118,6 +119,23 @@ // TODO: warn about constant value changes (see JLS, section 13.4.8) } + private void checkForReturnTypeChange(Field bField, Field cField, JavaClass currentClass) + { + final String bSig = bField.getType().toString(); + final String cSig = cField.getType().toString(); + System.out.println("====================================="); + System.out.println("bField = " + bField); + System.out.println("bSig = " + bSig); + System.out.println("cField = " + cField); + System.out.println("cSig = " + cSig); + System.out.println("====================================="); + if (!bSig.equals(cSig)) + { + fireDiff("Changed type of field " + bField.getName() + " from " + bSig + " to " + cSig, + Severity.ERROR, currentClass, bField); + } + } + private void checkForModifierChange(Field bField, Field cField, JavaClass clazz) { if (bField.isFinal() && !cField.isFinal()) |
From: Lars K?h. <lk...@us...> - 2004-05-23 07:45:48
|
Update of /cvsroot/clirr/clirr/xdocs In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15095/xdocs Modified Files: changes.xml Log Message: detect changes of field types (RFE #958810) Index: changes.xml =================================================================== RCS file: /cvsroot/clirr/clirr/xdocs/changes.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- changes.xml 23 May 2004 05:50:33 -0000 1.1 +++ changes.xml 23 May 2004 07:45:37 -0000 1.2 @@ -8,11 +8,15 @@ <body> <release version="0.3" date="in CVS"> - <action dev="lkuehne" due-to="Stephen Colebourne" type="fix"> - Fixed a copy + paste error in field modifier comparison logic - that would lead to false alarms and undetected compatibility - problems. - </action> + <action dev="lkuehne" due-to="Stephen Colebourne" type="fix"> + Fixed a copy + paste error in field modifier comparison logic + that would lead to false alarms and undetected compatibility + problems. + </action> + <action dev="lkuehne" type="add"> + <!-- RFE #958810 --> + Detect changes of field types. + </action> </release> <release version="0.2" date="2004-05-22"> |
From: Lars K?h. <lk...@us...> - 2004-05-23 05:57:28
|
Update of /cvsroot/clirr/clirr In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31510 Modified Files: project.xml Log Message: added Stephen Colebourne as a contributor Index: project.xml =================================================================== RCS file: /cvsroot/clirr/clirr/project.xml,v retrieving revision 1.15 retrieving revision 1.16 diff -u -r1.15 -r1.16 --- project.xml 23 May 2004 05:50:33 -0000 1.15 +++ project.xml 23 May 2004 05:57:19 -0000 1.16 @@ -101,6 +101,21 @@ </developers> + <contributors> + <contributor> + <name>Stephen Colebourne</name> + <email/> + <organization>Apache Software Foundation</organization> + <roles> + <role>Feedback</role> + <role>Bug reports</role> + <role>Usability testing</role> + </roles> + <url/> + <timezone/> + </contributor> + </contributors> + <!-- jar files the project is dependent on --> <dependencies> <dependency> |
From: Lars K?h. <lk...@us...> - 2004-05-23 05:50:43
|
Update of /cvsroot/clirr/clirr In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30512 Modified Files: project.xml Log Message: added changelog page Index: project.xml =================================================================== RCS file: /cvsroot/clirr/clirr/project.xml,v retrieving revision 1.14 retrieving revision 1.15 diff -u -r1.14 -r1.15 --- project.xml 22 May 2004 13:40:09 -0000 1.14 +++ project.xml 23 May 2004 05:50:33 -0000 1.15 @@ -3,24 +3,24 @@ <!-- the version of maven's project object model --> <pomVersion>3</pomVersion> - + <!-- a unique name for this project --> <id>clirr</id> - + <!-- a short but descriptive name for the project --> <name>Clirr</name> - + <!-- The version of the project under development, e.g. 1.1, 1.2, 2.0-dev --> <currentVersion>0.2</currentVersion> - + <!-- details about the organization that 'owns' the project --> <organization> <name>Lars Kühne</name> <url>mailto:cli...@li...</url> <!-- <logo>http://maven.apache.org/images/jakarta-logo-blue.gif</logo> --> </organization> - + <!-- the year the project started --> <inceptionYear>2003</inceptionYear> <package>net.sf.clirr</package> @@ -72,7 +72,7 @@ <archive>http://lists.sourceforge.net/lists/listinfo/clirr-devel</archive> </mailingList> </mailingLists> - + <!-- who the developers are for the project --> <developers> <developer> @@ -116,7 +116,7 @@ <url>http://ant.apache.org</url> </dependency> </dependencies> - + <!-- build information for the project --> <build> <nagEmailAddress>cli...@li...</nagEmailAddress> @@ -138,7 +138,7 @@ <reports> <!-- <report>maven-changelog-plugin</report> --> -<!-- <report>maven-changes-plugin</report> --> + <report>maven-changes-plugin</report> <report>maven-checkstyle-plugin</report> <!-- <report>maven-developer-activity-plugin</report> --> <!-- <report>maven-file-activity-plugin</report> --> |
From: Lars K?h. <lk...@us...> - 2004-05-23 05:50:42
|
Update of /cvsroot/clirr/clirr/xdocs In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30512/xdocs Added Files: changes.xml Log Message: added changelog page --- NEW FILE --- <?xml version="1.0" encoding="ISO-8859-1"?> <document> <properties> <title>Changes</title> <author>Lars Kühne</author> </properties> <body> <release version="0.3" date="in CVS"> <action dev="lkuehne" due-to="Stephen Colebourne" type="fix"> Fixed a copy + paste error in field modifier comparison logic that would lead to false alarms and undetected compatibility problems. </action> </release> <release version="0.2" date="2004-05-22"> <action dev="lkuehne" type="add"> Initial public release. </action> </release> </body> </document> |
From: Lars K?h. <lk...@us...> - 2004-05-23 05:41:42
|
Update of /cvsroot/clirr/clirr/src/java/net/sf/clirr/checks In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29054/src/java/net/sf/clirr/checks Modified Files: FieldSetCheck.java Log Message: Fixed Copy and Paste error in FieldSetCheck, reported by Stephen Colebourne Index: FieldSetCheck.java =================================================================== RCS file: /cvsroot/clirr/clirr/src/java/net/sf/clirr/checks/FieldSetCheck.java,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- FieldSetCheck.java 22 May 2004 13:26:03 -0000 1.3 +++ FieldSetCheck.java 23 May 2004 05:41:27 -0000 1.4 @@ -49,11 +49,6 @@ final String name1 = f1.getName(); final String name2 = f2.getName(); - if (name1 == null || name2 == null) - { - System.out.println("name2 = " + name2); - System.out.println("name1 = " + name1); - } return name1.compareTo(name2); } } @@ -135,12 +130,12 @@ fireDiff("Field " + bField.getName() + " is now final", Severity.ERROR, clazz, cField); } - if (!bField.isStatic() && cField.isStatic()) + if (bField.isStatic() && !cField.isStatic()) { fireDiff("Field " + bField.getName() + " is now non-static", Severity.ERROR, clazz, cField); } - if (!bField.isFinal() && cField.isFinal()) + if (!bField.isStatic() && cField.isStatic()) { fireDiff("Field " + bField.getName() + " is now static", Severity.ERROR, clazz, cField); } |
From: Lars K?h. <lk...@us...> - 2004-05-23 05:41:39
|
Update of /cvsroot/clirr/clirr/src/test/net/sf/clirr/checks In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29054/src/test/net/sf/clirr/checks Modified Files: FieldSetCheckTest.java Log Message: Fixed Copy and Paste error in FieldSetCheck, reported by Stephen Colebourne Index: FieldSetCheckTest.java =================================================================== RCS file: /cvsroot/clirr/clirr/src/test/net/sf/clirr/checks/FieldSetCheckTest.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- FieldSetCheckTest.java 31 Dec 2003 09:48:09 -0000 1.1 +++ FieldSetCheckTest.java 23 May 2004 05:41:27 -0000 1.2 @@ -20,10 +20,13 @@ new ApiDifference("Added public field priv2 in testlib.MembersChange", Severity.INFO, "testlib.MembersChange", null, "priv2"), new ApiDifference("Accessibility of field stat5 has been weakened in testlib.MembersChange", Severity.ERROR, "testlib.MembersChange", null, "stat5"), new ApiDifference("Field stat2 is now final in testlib.MembersChange", Severity.ERROR, "testlib.MembersChange", null, "stat2"), + new ApiDifference("Field pub3 is now final in testlib.MembersChange", Severity.ERROR, "testlib.MembersChange", null, "pub3"), new ApiDifference("Accessibility of field stat6 has been weakened in testlib.MembersChange", Severity.ERROR, "testlib.MembersChange", null, "stat6"), - new ApiDifference("Field stat2 is now static in testlib.MembersChange", Severity.ERROR, "testlib.MembersChange", null, "stat2"), + new ApiDifference("Field stat3 is now non-static in testlib.MembersChange", Severity.ERROR, "testlib.MembersChange", null, "stat3"), + new ApiDifference("Field fin3 is now non-static in testlib.MembersChange", Severity.ERROR, "testlib.MembersChange", null, "fin3"), new ApiDifference("Added public field stat8 in testlib.MembersChange", Severity.INFO, "testlib.MembersChange", null, "stat8"), - new ApiDifference("Field fin4 is now non-final in testlib.MembersChange", Severity.INFO, "testlib.MembersChange", null, "fin4") + new ApiDifference("Field fin4 is now non-final in testlib.MembersChange", Severity.INFO, "testlib.MembersChange", null, "fin4"), + new ApiDifference("Field pub2 is now static in testlib.MembersChange", Severity.ERROR, "testlib.MembersChange", null, "pub2"), }; verify(expected); } |
From: Lars K?h. <lk...@us...> - 2004-05-23 05:41:39
|
Update of /cvsroot/clirr/clirr/src/testinput/testlib-v2/testlib In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29054/src/testinput/testlib-v2/testlib Modified Files: MembersChange.java Log Message: Fixed Copy and Paste error in FieldSetCheck, reported by Stephen Colebourne Index: MembersChange.java =================================================================== RCS file: /cvsroot/clirr/clirr/src/testinput/testlib-v2/testlib/MembersChange.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- MembersChange.java 22 May 2004 14:06:30 -0000 1.1 +++ MembersChange.java 23 May 2004 05:41:28 -0000 1.2 @@ -17,8 +17,8 @@ public static int fin4 = 0; // removed final public int pub1 = 0; - public int pub2 = 0; - public int pub3 = 0; + public static int pub2 = 0; // added static + public final int pub3 = 0; // added final public int pub4 = 0; protected int prot1 = 0; |
From: Vincent M. <vm...@pi...> - 2004-05-22 17:15:22
|
> -----Original Message----- > From: Lars K=FChne [mailto:lak...@t-...] > Sent: 22 May 2004 19:03 > To: Vincent Massol > Cc: cli...@li... > Subject: Re: [Clirr-user] RE: [Clirr-devel] Clirr 0.2 is available >=20 > Thanks, it was about time to get an initial release out the door. >=20 > Oh and thanks for mentioning Clirr together with all those > well-established tools in one of your recent blog entries :-) :-) I'll post more about it once I've tried the new 0.2 version. Thanks -Vincent >=20 > Cheers, > Lars >=20 >=20 > Vincent Massol wrote: >=20 > >Congrats Lars! I'm going to try to use it soon on Cactus. I'm silent on > >the list but I'm watching... ;-) > > > >Thanks > >-Vincent > > > > > > > >>-----Original Message----- > >>From: cli...@li... [mailto:clirr-devel- > >>ad...@li...] On Behalf Of Lars K=FChne > >>Sent: 22 May 2004 18:14 > >>To: cli...@li... > >>Cc: cli...@li... > >>Subject: [Clirr-devel] Clirr 0.2 is available > >> > >>Hi, > >> > >>I have released the first public version of Clirr, available via the > >>sourceforge project page at http://sourceforge.net/projects/clirr/ > >> > >>Enjoy, > >>Lars > >> > >> > >> |
From: <lak...@t-...> - 2004-05-22 17:00:25
|
Thanks, it was about time to get an initial release out the door. Oh and thanks for mentioning Clirr together with all those well-established tools in one of your recent blog entries :-) Cheers, Lars Vincent Massol wrote: >Congrats Lars! I'm going to try to use it soon on Cactus. I'm silent on >the list but I'm watching... ;-) > >Thanks >-Vincent > > > >>-----Original Message----- >>From: cli...@li... [mailto:clirr-devel- >>ad...@li...] On Behalf Of Lars Kühne >>Sent: 22 May 2004 18:14 >>To: cli...@li... >>Cc: cli...@li... >>Subject: [Clirr-devel] Clirr 0.2 is available >> >>Hi, >> >>I have released the first public version of Clirr, available via the >>sourceforge project page at http://sourceforge.net/projects/clirr/ >> >>Enjoy, >>Lars >> >> >> |
From: Vincent M. <vm...@pi...> - 2004-05-22 16:29:38
|
Congrats Lars! I'm going to try to use it soon on Cactus. I'm silent on the list but I'm watching... ;-) Thanks -Vincent > -----Original Message----- > From: cli...@li... [mailto:clirr-devel- > ad...@li...] On Behalf Of Lars K=FChne > Sent: 22 May 2004 18:14 > To: cli...@li... > Cc: cli...@li... > Subject: [Clirr-devel] Clirr 0.2 is available >=20 > Hi, >=20 > I have released the first public version of Clirr, available via the > sourceforge project page at http://sourceforge.net/projects/clirr/ >=20 > Enjoy, > Lars >=20 >=20 >=20 > ------------------------------------------------------- > This SF.Net email is sponsored by: Oracle 10g > Get certified on the hottest thing ever to hit the market... Oracle 10g. > Take an Oracle 10g class now, and we'll give you the exam FREE. > http://ads.osdn.com/?ad_id=3D3149&alloc_id=3D8166&op=3Dclick > _______________________________________________ > Clirr-devel mailing list > Cli...@li... > https://lists.sourceforge.net/lists/listinfo/clirr-devel |
From: <lak...@t-...> - 2004-05-22 16:12:14
|
Hi, I have released the first public version of Clirr, available via the sourceforge project page at http://sourceforge.net/projects/clirr/ Enjoy, Lars |
From: Lars K?h. <lk...@us...> - 2004-05-22 14:25:11
|
Update of /cvsroot/clirr/clirr/xdocs In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32045 Modified Files: download.xml Log Message: clirr will shortly be available via the sf download page Index: download.xml =================================================================== RCS file: /cvsroot/clirr/clirr/xdocs/download.xml,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- download.xml 28 Dec 2003 09:07:42 -0000 1.3 +++ download.xml 22 May 2004 14:25:01 -0000 1.4 @@ -11,7 +11,6 @@ The latest release of Clirr is available from the <a href="http://sourceforge.net/project/showfiles.php?group_id=89627">Sourceforge download page</a>. - Currently no files have been released, but stay tuned! </p> <p> Development snapshots are occasionally made available |
From: Lars K?h. <lk...@us...> - 2004-05-22 14:06:42
|
Update of /cvsroot/clirr/clirr/src/testinput/testlib-v1/testlib In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29021/src/testinput/testlib-v1/testlib Added Files: MembersChange.java Log Message: added test input files for FieldSetChangeTest --- NEW FILE --- package testlib; public class MembersChange { public static int stat1 = 0; public static int stat2 = 0; public static int stat3 = 0; public static int stat4 = 0; public static int stat5 = 0; public static int stat6 = 0; public static int stat7 = 0; public static final int fin1 = 0; public static final int fin2 = 0; public static final int fin3 = 0; public static final int fin4 = 0; public int pub1 = 0; public int pub2 = 0; public int pub3 = 0; public int pub4 = 0; protected int prot1 = 0; protected int prot2 = 0; protected int prot3 = 0; protected int prot4 = 0; public Object obj1 = new String(); public Boolean obj2 = Boolean.FALSE; private int priv1 = 0; private int priv2 = 0; } |
From: Lars K?h. <lk...@us...> - 2004-05-22 14:06:42
|
Update of /cvsroot/clirr/clirr/src/testinput/testlib-v2/testlib In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29021/src/testinput/testlib-v2/testlib Added Files: MembersChange.java Log Message: added test input files for FieldSetChangeTest --- NEW FILE --- package testlib; public class MembersChange { public static int stat1 = 0; // same public static final int stat2 = 0; // added final public int stat3 = 0; // removed static protected static int stat4 = 0; // public -> protected private static int stat5 = 0; // public -> private static int stat6 = 0; // public -> package // removed stat7 public static int stat8 = 0; // new member public static final int fin1 = 0; // same protected static final int fin2 = 0; // public -> protected public final int fin3 = 0; // removed static public static int fin4 = 0; // removed final public int pub1 = 0; public int pub2 = 0; public int pub3 = 0; public int pub4 = 0; protected int prot1 = 0; protected int prot2 = 0; protected int prot3 = 0; protected int prot4 = 0; public String obj1 = new String(); // member type changed Object -> String public String obj2 = new String(); // member type changed Boolean -> String private int priv1 = 0; // same public int priv2 = 0; // private -> public } |
From: Lars K?h. <lk...@us...> - 2004-05-22 14:04:07
|
Update of /cvsroot/clirr/clirr/src/java/net/sf/clirr/ant In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28508 Modified Files: AntTask.java Log Message: added release tag info, so I have a minimal chance of providing support Index: AntTask.java =================================================================== RCS file: /cvsroot/clirr/clirr/src/java/net/sf/clirr/ant/AntTask.java,v retrieving revision 1.7 retrieving revision 1.8 diff -u -r1.7 -r1.8 --- AntTask.java 22 May 2004 13:26:03 -0000 1.7 +++ AntTask.java 22 May 2004 14:03:58 -0000 1.8 @@ -171,6 +171,8 @@ public void execute() { + log("Running Clirr, built from tag $Name$", Project.MSG_VERBOSE); + if (origFiles == null || newFiles == null) { throw new BuildException("Missing nested filesetes origFiles and newFiles.", getLocation()); |
From: Lars K?h. <lk...@us...> - 2004-05-22 13:40:18
|
Update of /cvsroot/clirr/clirr In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24104 Modified Files: project.xml Log Message: get ready for release 0.2 Index: project.xml =================================================================== RCS file: /cvsroot/clirr/clirr/project.xml,v retrieving revision 1.13 retrieving revision 1.14 diff -u -r1.13 -r1.14 --- project.xml 5 Oct 2003 18:01:56 -0000 1.13 +++ project.xml 22 May 2004 13:40:09 -0000 1.14 @@ -12,7 +12,7 @@ <!-- The version of the project under development, e.g. 1.1, 1.2, 2.0-dev --> - <currentVersion>0.2-dev</currentVersion> + <currentVersion>0.2</currentVersion> <!-- details about the organization that 'owns' the project --> <organization> |
From: Lars K?h. <lk...@us...> - 2004-05-22 13:26:30
|
Update of /cvsroot/clirr/clirr/src/java/net/sf/clirr/event In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20999/src/java/net/sf/clirr/event Modified Files: ApiDifference.java DiffListener.java DiffListenerAdapter.java FileDiffListener.java PlainDiffListener.java Severity.java XmlDiffListener.java Log Message: changed copyright year Index: ApiDifference.java =================================================================== RCS file: /cvsroot/clirr/clirr/src/java/net/sf/clirr/event/ApiDifference.java,v retrieving revision 1.8 retrieving revision 1.9 diff -u -r1.8 -r1.9 --- ApiDifference.java 31 Dec 2003 09:50:37 -0000 1.8 +++ ApiDifference.java 22 May 2004 13:26:03 -0000 1.9 @@ -1,6 +1,6 @@ ////////////////////////////////////////////////////////////////////////////// // Clirr: compares two versions of a java library for binary compatibility -// Copyright (C) 2003 Lars Kühne +// Copyright (C) 2003 - 2004 Lars Kühne // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public Index: DiffListener.java =================================================================== RCS file: /cvsroot/clirr/clirr/src/java/net/sf/clirr/event/DiffListener.java,v retrieving revision 1.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- DiffListener.java 27 Sep 2003 05:28:43 -0000 1.4 +++ DiffListener.java 22 May 2004 13:26:03 -0000 1.5 @@ -1,6 +1,6 @@ ////////////////////////////////////////////////////////////////////////////// // Clirr: compares two versions of a java library for binary compatibility -// Copyright (C) 2003 Lars Kühne +// Copyright (C) 2003 - 2004 Lars Kühne // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public Index: DiffListenerAdapter.java =================================================================== RCS file: /cvsroot/clirr/clirr/src/java/net/sf/clirr/event/DiffListenerAdapter.java,v retrieving revision 1.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- DiffListenerAdapter.java 27 Sep 2003 05:28:43 -0000 1.4 +++ DiffListenerAdapter.java 22 May 2004 13:26:03 -0000 1.5 @@ -1,6 +1,6 @@ ////////////////////////////////////////////////////////////////////////////// // Clirr: compares two versions of a java library for binary compatibility -// Copyright (C) 2003 Lars Kühne +// Copyright (C) 2003 - 2004 Lars Kühne // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public Index: FileDiffListener.java =================================================================== RCS file: /cvsroot/clirr/clirr/src/java/net/sf/clirr/event/FileDiffListener.java,v retrieving revision 1.6 retrieving revision 1.7 diff -u -r1.6 -r1.7 --- FileDiffListener.java 27 Dec 2003 19:08:42 -0000 1.6 +++ FileDiffListener.java 22 May 2004 13:26:03 -0000 1.7 @@ -1,6 +1,6 @@ ////////////////////////////////////////////////////////////////////////////// // Clirr: compares two versions of a java library for binary compatibility -// Copyright (C) 2003 Lars Kühne +// Copyright (C) 2003 - 2004 Lars Kühne // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public Index: PlainDiffListener.java =================================================================== RCS file: /cvsroot/clirr/clirr/src/java/net/sf/clirr/event/PlainDiffListener.java,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- PlainDiffListener.java 27 Sep 2003 05:28:43 -0000 1.3 +++ PlainDiffListener.java 22 May 2004 13:26:03 -0000 1.4 @@ -1,6 +1,6 @@ ////////////////////////////////////////////////////////////////////////////// // Clirr: compares two versions of a java library for binary compatibility -// Copyright (C) 2003 Lars Kühne +// Copyright (C) 2003 - 2004 Lars Kühne // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public Index: Severity.java =================================================================== RCS file: /cvsroot/clirr/clirr/src/java/net/sf/clirr/event/Severity.java,v retrieving revision 1.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- Severity.java 27 Sep 2003 05:28:43 -0000 1.4 +++ Severity.java 22 May 2004 13:26:03 -0000 1.5 @@ -1,6 +1,6 @@ ////////////////////////////////////////////////////////////////////////////// // Clirr: compares two versions of a java library for binary compatibility -// Copyright (C) 2003 Lars Kühne +// Copyright (C) 2003 - 2004 Lars Kühne // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public Index: XmlDiffListener.java =================================================================== RCS file: /cvsroot/clirr/clirr/src/java/net/sf/clirr/event/XmlDiffListener.java,v retrieving revision 1.8 retrieving revision 1.9 diff -u -r1.8 -r1.9 --- XmlDiffListener.java 20 May 2004 06:38:01 -0000 1.8 +++ XmlDiffListener.java 22 May 2004 13:26:03 -0000 1.9 @@ -1,6 +1,6 @@ ////////////////////////////////////////////////////////////////////////////// // Clirr: compares two versions of a java library for binary compatibility -// Copyright (C) 2003 Lars Kühne +// Copyright (C) 2003 - 2004 Lars Kühne // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public |
From: Lars K?h. <lk...@us...> - 2004-05-22 13:26:28
|
Update of /cvsroot/clirr/clirr/src/java/net/sf/clirr/checks In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20999/src/java/net/sf/clirr/checks Modified Files: AbstractClassSetChangeCheck.java AddedClassCheck.java ClassHierarchyCheck.java ClassModifierCheck.java FieldSetCheck.java GenderChangeCheck.java InterfaceSetCheck.java MethodSetCheck.java RemovedClassCheck.java Log Message: changed copyright year Index: AbstractClassSetChangeCheck.java =================================================================== RCS file: /cvsroot/clirr/clirr/src/java/net/sf/clirr/checks/AbstractClassSetChangeCheck.java,v retrieving revision 1.8 retrieving revision 1.9 diff -u -r1.8 -r1.9 --- AbstractClassSetChangeCheck.java 28 Dec 2003 15:43:12 -0000 1.8 +++ AbstractClassSetChangeCheck.java 22 May 2004 13:26:03 -0000 1.9 @@ -1,6 +1,6 @@ ////////////////////////////////////////////////////////////////////////////// // Clirr: compares two versions of a java library for binary compatibility -// Copyright (C) 2003 Lars Kühne +// Copyright (C) 2003 - 2004 Lars Kühne // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public Index: AddedClassCheck.java =================================================================== RCS file: /cvsroot/clirr/clirr/src/java/net/sf/clirr/checks/AddedClassCheck.java,v retrieving revision 1.6 retrieving revision 1.7 diff -u -r1.6 -r1.7 --- AddedClassCheck.java 28 Dec 2003 15:43:26 -0000 1.6 +++ AddedClassCheck.java 22 May 2004 13:26:03 -0000 1.7 @@ -1,6 +1,6 @@ ////////////////////////////////////////////////////////////////////////////// // Clirr: compares two versions of a java library for binary compatibility -// Copyright (C) 2003 Lars Kühne +// Copyright (C) 2003 - 2004 Lars Kühne // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public Index: ClassHierarchyCheck.java =================================================================== RCS file: /cvsroot/clirr/clirr/src/java/net/sf/clirr/checks/ClassHierarchyCheck.java,v retrieving revision 1.7 retrieving revision 1.8 diff -u -r1.7 -r1.8 --- ClassHierarchyCheck.java 27 Dec 2003 19:08:42 -0000 1.7 +++ ClassHierarchyCheck.java 22 May 2004 13:26:03 -0000 1.8 @@ -1,6 +1,6 @@ ////////////////////////////////////////////////////////////////////////////// // Clirr: compares two versions of a java library for binary compatibility -// Copyright (C) 2003 Lars Kühne +// Copyright (C) 2003 - 2004 Lars Kühne // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public Index: ClassModifierCheck.java =================================================================== RCS file: /cvsroot/clirr/clirr/src/java/net/sf/clirr/checks/ClassModifierCheck.java,v retrieving revision 1.7 retrieving revision 1.8 diff -u -r1.7 -r1.8 --- ClassModifierCheck.java 27 Dec 2003 19:08:42 -0000 1.7 +++ ClassModifierCheck.java 22 May 2004 13:26:03 -0000 1.8 @@ -1,6 +1,6 @@ ////////////////////////////////////////////////////////////////////////////// // Clirr: compares two versions of a java library for binary compatibility -// Copyright (C) 2003 Lars Kühne +// Copyright (C) 2003 - 2004 Lars Kühne // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public Index: FieldSetCheck.java =================================================================== RCS file: /cvsroot/clirr/clirr/src/java/net/sf/clirr/checks/FieldSetCheck.java,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- FieldSetCheck.java 11 Jan 2004 14:53:47 -0000 1.2 +++ FieldSetCheck.java 22 May 2004 13:26:03 -0000 1.3 @@ -1,6 +1,6 @@ ////////////////////////////////////////////////////////////////////////////// // Clirr: compares two versions of a java library for binary compatibility -// Copyright (C) 2003 Lars Kühne +// Copyright (C) 2003 - 2004 Lars Kühne // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public Index: GenderChangeCheck.java =================================================================== RCS file: /cvsroot/clirr/clirr/src/java/net/sf/clirr/checks/GenderChangeCheck.java,v retrieving revision 1.6 retrieving revision 1.7 diff -u -r1.6 -r1.7 --- GenderChangeCheck.java 27 Dec 2003 19:08:42 -0000 1.6 +++ GenderChangeCheck.java 22 May 2004 13:26:03 -0000 1.7 @@ -1,6 +1,6 @@ ////////////////////////////////////////////////////////////////////////////// // Clirr: compares two versions of a java library for binary compatibility -// Copyright (C) 2003 Lars Kühne +// Copyright (C) 2003 - 2004 Lars Kühne // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public Index: InterfaceSetCheck.java =================================================================== RCS file: /cvsroot/clirr/clirr/src/java/net/sf/clirr/checks/InterfaceSetCheck.java,v retrieving revision 1.7 retrieving revision 1.8 diff -u -r1.7 -r1.8 --- InterfaceSetCheck.java 20 May 2004 14:07:57 -0000 1.7 +++ InterfaceSetCheck.java 22 May 2004 13:26:03 -0000 1.8 @@ -1,6 +1,6 @@ ////////////////////////////////////////////////////////////////////////////// // Clirr: compares two versions of a java library for binary compatibility -// Copyright (C) 2003 Lars Kühne +// Copyright (C) 2003 - 2004 Lars Kühne // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public Index: MethodSetCheck.java =================================================================== RCS file: /cvsroot/clirr/clirr/src/java/net/sf/clirr/checks/MethodSetCheck.java,v retrieving revision 1.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- MethodSetCheck.java 22 May 2004 13:21:44 -0000 1.4 +++ MethodSetCheck.java 22 May 2004 13:26:03 -0000 1.5 @@ -1,6 +1,6 @@ ////////////////////////////////////////////////////////////////////////////// // Clirr: compares two versions of a java library for binary compatibility -// Copyright (C) 2003 Lars Kühne +// Copyright (C) 2003 - 2004 Lars Kühne // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public Index: RemovedClassCheck.java =================================================================== RCS file: /cvsroot/clirr/clirr/src/java/net/sf/clirr/checks/RemovedClassCheck.java,v retrieving revision 1.7 retrieving revision 1.8 diff -u -r1.7 -r1.8 --- RemovedClassCheck.java 28 Dec 2003 15:43:40 -0000 1.7 +++ RemovedClassCheck.java 22 May 2004 13:26:03 -0000 1.8 @@ -1,6 +1,6 @@ ////////////////////////////////////////////////////////////////////////////// // Clirr: compares two versions of a java library for binary compatibility -// Copyright (C) 2003 Lars Kühne +// Copyright (C) 2003 - 2004 Lars Kühne // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public |
From: Lars K?h. <lk...@us...> - 2004-05-22 13:26:17
|
Update of /cvsroot/clirr/clirr/src/java/net/sf/clirr/framework In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20999/src/java/net/sf/clirr/framework Modified Files: AbstractDiffReporter.java ApiDiffDispatcher.java ClassChangeCheck.java ClassSetChangeCheck.java Log Message: changed copyright year Index: AbstractDiffReporter.java =================================================================== RCS file: /cvsroot/clirr/clirr/src/java/net/sf/clirr/framework/AbstractDiffReporter.java,v retrieving revision 1.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- AbstractDiffReporter.java 28 Dec 2003 09:37:49 -0000 1.4 +++ AbstractDiffReporter.java 22 May 2004 13:26:04 -0000 1.5 @@ -1,6 +1,6 @@ ////////////////////////////////////////////////////////////////////////////// // Clirr: compares two versions of a java library for binary compatibility -// Copyright (C) 2003 Lars Kühne +// Copyright (C) 2003 - 2004 Lars Kühne // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public Index: ApiDiffDispatcher.java =================================================================== RCS file: /cvsroot/clirr/clirr/src/java/net/sf/clirr/framework/ApiDiffDispatcher.java,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- ApiDiffDispatcher.java 27 Sep 2003 05:28:43 -0000 1.2 +++ ApiDiffDispatcher.java 22 May 2004 13:26:04 -0000 1.3 @@ -1,6 +1,6 @@ ////////////////////////////////////////////////////////////////////////////// // Clirr: compares two versions of a java library for binary compatibility -// Copyright (C) 2003 Lars Kühne +// Copyright (C) 2003 - 2004 Lars Kühne // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public Index: ClassChangeCheck.java =================================================================== RCS file: /cvsroot/clirr/clirr/src/java/net/sf/clirr/framework/ClassChangeCheck.java,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- ClassChangeCheck.java 27 Sep 2003 05:28:43 -0000 1.2 +++ ClassChangeCheck.java 22 May 2004 13:26:04 -0000 1.3 @@ -1,6 +1,6 @@ ////////////////////////////////////////////////////////////////////////////// // Clirr: compares two versions of a java library for binary compatibility -// Copyright (C) 2003 Lars Kühne +// Copyright (C) 2003 - 2004 Lars Kühne // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public Index: ClassSetChangeCheck.java =================================================================== RCS file: /cvsroot/clirr/clirr/src/java/net/sf/clirr/framework/ClassSetChangeCheck.java,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- ClassSetChangeCheck.java 27 Sep 2003 05:28:43 -0000 1.3 +++ ClassSetChangeCheck.java 22 May 2004 13:26:04 -0000 1.4 @@ -1,6 +1,6 @@ ////////////////////////////////////////////////////////////////////////////// // Clirr: compares two versions of a java library for binary compatibility -// Copyright (C) 2003 Lars Kühne +// Copyright (C) 2003 - 2004 Lars Kühne // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public |
From: Lars K?h. <lk...@us...> - 2004-05-22 13:26:17
|
Update of /cvsroot/clirr/clirr/src/java/net/sf/clirr/ant In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20999/src/java/net/sf/clirr/ant Modified Files: AntLogger.java AntTask.java ChangeCounter.java Log Message: changed copyright year Index: AntLogger.java =================================================================== RCS file: /cvsroot/clirr/clirr/src/java/net/sf/clirr/ant/AntLogger.java,v retrieving revision 1.5 retrieving revision 1.6 diff -u -r1.5 -r1.6 --- AntLogger.java 20 May 2004 13:15:55 -0000 1.5 +++ AntLogger.java 22 May 2004 13:26:03 -0000 1.6 @@ -1,6 +1,6 @@ ////////////////////////////////////////////////////////////////////////////// // Clirr: compares two versions of a java library for binary compatibility -// Copyright (C) 2003 Lars Kühne +// Copyright (C) 2003 - 2004 Lars Kühne // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public Index: AntTask.java =================================================================== RCS file: /cvsroot/clirr/clirr/src/java/net/sf/clirr/ant/AntTask.java,v retrieving revision 1.6 retrieving revision 1.7 diff -u -r1.6 -r1.7 --- AntTask.java 27 Dec 2003 19:05:34 -0000 1.6 +++ AntTask.java 22 May 2004 13:26:03 -0000 1.7 @@ -1,6 +1,6 @@ ////////////////////////////////////////////////////////////////////////////// // Clirr: compares two versions of a java library for binary compatibility -// Copyright (C) 2003 Lars Kühne +// Copyright (C) 2003 - 2004 Lars Kühne // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public Index: ChangeCounter.java =================================================================== RCS file: /cvsroot/clirr/clirr/src/java/net/sf/clirr/ant/ChangeCounter.java,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- ChangeCounter.java 27 Sep 2003 05:28:43 -0000 1.3 +++ ChangeCounter.java 22 May 2004 13:26:03 -0000 1.4 @@ -1,6 +1,6 @@ ////////////////////////////////////////////////////////////////////////////// // Clirr: compares two versions of a java library for binary compatibility -// Copyright (C) 2003 Lars Kühne +// Copyright (C) 2003 - 2004 Lars Kühne // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public |