From 389d6115a763a5e023a4a957da6edfdbaa00d810 Mon Sep 17 00:00:00 2001 From: Stefan Bodewig Date: Fri, 15 Nov 2002 13:15:23 +0000 Subject: [PATCH] merge some minor changes from 1.5 branch git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@273547 13f79535-47bb-0310-9956-ffa450edef68 --- WHATSNEW | 3 +++ docs/manual/CoreTasks/cvstagdiff.html | 5 ++++- .../org/apache/tools/ant/taskdefs/cvslib/CvsTagDiff.java | 1 + 3 files changed, 8 insertions(+), 1 deletion(-) 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"