Browse Source

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
master
Stefan Bodewig 22 years ago
parent
commit
389d6115a7
3 changed files with 8 additions and 1 deletions
  1. +3
    -0
      WHATSNEW
  2. +4
    -1
      docs/manual/CoreTasks/cvstagdiff.html
  3. +1
    -0
      src/main/org/apache/tools/ant/taskdefs/cvslib/CvsTagDiff.java

+ 3
- 0
WHATSNEW View File

@@ -50,6 +50,9 @@ Fixed bugs:


* <javadoc> will now pass -source to custom doclets as well. * <javadoc> will now pass -source to custom doclets as well.


* <cvstagdiff> would throw a NullPointException if there had been no
differences.

Other changes: Other changes:
-------------- --------------
* <setproxy> lets you set the username and password for proxies that want authentication * <setproxy> lets you set the username and password for proxies that want authentication


+ 4
- 1
docs/manual/CoreTasks/cvstagdiff.html View File

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


<h4>Generate Report</h4> <h4>Generate Report</h4>
<p>Ant includes a basic XSLT stylesheet that you can use to generate <p>Ant includes a basic XSLT stylesheet that you can use to generate


+ 1
- 0
src/main/org/apache/tools/ant/taskdefs/cvslib/CvsTagDiff.java View File

@@ -96,6 +96,7 @@ import org.apache.tools.ant.util.FileUtils;
* </PRE> * </PRE>
* *
* @author <a href="mailto:fred@castify.net">Frederic Lavigne</a> * @author <a href="mailto:fred@castify.net">Frederic Lavigne</a>
* @author <a href="mailto:rvanoo@xs4all.nl">Rob van Oostrum</a>
* @version $Revision$ $Date$ * @version $Revision$ $Date$
* @since Ant 1.5 * @since Ant 1.5
* @ant.task name="cvstagdiff" * @ant.task name="cvstagdiff"


Loading…
Cancel
Save