diff --git a/WHATSNEW b/WHATSNEW index 334860ecd..3aba922d7 100644 --- a/WHATSNEW +++ b/WHATSNEW @@ -50,6 +50,9 @@ Fixed bugs: * will now pass -source to custom doclets as well. +* would throw a NullPointException if there had been no + differences. + Other changes: -------------- * lets you set the username and password for proxies that want authentication diff --git a/docs/manual/CoreTasks/cvstagdiff.html b/docs/manual/CoreTasks/cvstagdiff.html index 4c1b43072..17e4ef897 100644 --- a/docs/manual/CoreTasks/cvstagdiff.html +++ b/docs/manual/CoreTasks/cvstagdiff.html @@ -135,7 +135,10 @@ It writes these changes into the file tagdiff.xml.

Generates a tagdiff report for all the changes that have been made in the jakarta-ant module in january 2002, with rootdir indicating that the actual location of the jakarta-ant module in cvs is jakarta/ant -rather than jakarta-ant. +rather than jakarta-ant. In this example cvsRoot +has not been set. The current cvsRoot will be used (assuming the build is started +from a folder stored in cvs. +It writes these changes into the file tagdiff.xml.

Generate Report

Ant includes a basic XSLT stylesheet that you can use to generate diff --git a/src/main/org/apache/tools/ant/taskdefs/cvslib/CvsTagDiff.java b/src/main/org/apache/tools/ant/taskdefs/cvslib/CvsTagDiff.java index 168c8b2a5..73fb13129 100644 --- a/src/main/org/apache/tools/ant/taskdefs/cvslib/CvsTagDiff.java +++ b/src/main/org/apache/tools/ant/taskdefs/cvslib/CvsTagDiff.java @@ -96,6 +96,7 @@ import org.apache.tools.ant.util.FileUtils; * * * @author Frederic Lavigne + * @author Rob van Oostrum * @version $Revision$ $Date$ * @since Ant 1.5 * @ant.task name="cvstagdiff"