Browse Source

changelog -> cvschangelog

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@272174 13f79535-47bb-0310-9956-ffa450edef68
master
Stefan Bodewig 23 years ago
parent
commit
97bb19005e
5 changed files with 23 additions and 23 deletions
  1. +1
    -1
      WHATSNEW
  2. +16
    -16
      docs/manual/CoreTasks/changelog.html
  3. +1
    -1
      docs/manual/coretasklist.html
  4. +4
    -4
      docs/manual/tasksoverview.html
  5. +1
    -1
      src/main/org/apache/tools/ant/taskdefs/defaults.properties

+ 1
- 1
WHATSNEW View File

@@ -93,7 +93,7 @@ Other changes:
--------------
* <available> has a new attribute named ignoreSystemClasses.

* New task <changelog/> generates an XML report of changes that occur
* New task <cvschangelog/> generates an XML report of changes that occur
on CVS repository.

* New filter readers: ClassConstants, ExpandProperties, HeadFilter,


+ 16
- 16
docs/manual/CoreTasks/changelog.html View File

@@ -7,7 +7,7 @@

<body>

<h2><a name="changelog">ChangeLog</a></h2>
<h2><a name="changelog">CvsChangeLog</a></h2>
<h3>Description</h3>
<p>Generates an XML-formatted report file of the change logs recorded in a
<a href="http://www.cvshome.org/" target="_top">CVS</a> repository. </p>
@@ -87,27 +87,27 @@ the name specified in <code>displayname</code> rather than the user ID.


<h3>Examples</h3>
<pre> &lt;changelog dir=&quot;dve/network&quot;
destfile=&quot;changelog.xml&quot;
<pre> &lt;cvschangelog dir=&quot;dve/network&quot;
destfile=&quot;changelog.xml&quot;
/&gt;</pre>

<p>Generates a change log report for all the changes that have been made
under the <code>dve/network</code> directory.
It writes these changes into the file <code>changelog.xml</code>.</p>

<pre> &lt;changelog dir=&quot;dve/network&quot;
destfile=&quot;changelog.xml&quot;
daysinpast=&quot;10&quot;
<pre> &lt;cvschangelog dir=&quot;dve/network&quot;
destfile=&quot;changelog.xml&quot;
daysinpast=&quot;10&quot;
/&gt;</pre>

<p>Generates a change log report for any changes that were made
under the <code>dve/network</code> directory in the past 10 days.
It writes these changes into the file <code>changelog.xml</code>.</p>

<pre> &lt;changelog dir=&quot;dve/network&quot;
destfile=&quot;changelog.xml&quot;
start=&quot;20 Feb 2002&quot;
end=&quot;20 Mar 2002&quot;
<pre> &lt;cvschangelog dir=&quot;dve/network&quot;
destfile=&quot;changelog.xml&quot;
start=&quot;20 Feb 2002&quot;
end=&quot;20 Mar 2002&quot;
/&gt;</pre>

<p>Generates a change log report for any changes that were made
@@ -115,19 +115,19 @@ between February 20, 2002 and March 20, 2002
under the <code>dve/network</code> directory.
It writes these changes into the file <code>changelog.xml</code>.</p>

<pre> &lt;changelog dir=&quot;dve/network&quot;
destfile=&quot;changelog.xml&quot;
start=&quot;20 Feb 2002&quot;
<pre> &lt;cvschangelog dir=&quot;dve/network&quot;
destfile=&quot;changelog.xml&quot;
start=&quot;20 Feb 2002&quot;
/&gt;</pre>

<p>Generates a change log report for any changes that were made
after February 20, 2002 under the <code>dve/network</code> directory.
It writes these changes into the file <code>changelog.xml</code>.</p>

<pre> &lt;changelog dir=&quot;dve/network&quot;
destfile=&quot;changelog.xml&quot;/&gt;
<pre> &lt;cvschangelog dir=&quot;dve/network&quot;
destfile=&quot;changelog.xml&quot;/&gt;
&lt;user displayname=&quot;Peter Donald&quot; userid=&quot;donaldp&quot;/&gt;
&lt;/changelog&gt;</pre>
&lt;/cvschangelog&gt;</pre>

<p>Generates a change log report for all the changes that were made
under the <code>dve/network</code> directory, substituting the name


+ 1
- 1
docs/manual/coretasklist.html View File

@@ -22,7 +22,6 @@
<a href="CoreTasks/buildnumber.html">BuildNumber</a><br>
<a href="CoreTasks/unpack.html">BUnzip2</a><br>
<a href="CoreTasks/pack.html">BZip2</a><br>
<a href="CoreTasks/changelog.html">ChangeLog</a><br>
<a href="CoreTasks/checksum.html">Checksum</a><br>
<a href="CoreTasks/chmod.html">Chmod</a><br>
<a href="CoreTasks/concat.html">Concat</a><br>
@@ -32,6 +31,7 @@
<a href="CoreTasks/copydir.html"><i>Copydir</i></a><br>
<a href="CoreTasks/copyfile.html"><i>Copyfile</i></a><br>
<a href="CoreTasks/cvs.html">Cvs</a><br>
<a href="CoreTasks/changelog.html">CvsChangeLog</a><br>
<a href="CoreTasks/cvspass.html">CVSPass</a><br>
<a href="CoreTasks/delete.html">Delete</a><br>
<a href="CoreTasks/deltree.html"><i>Deltree</i></a><br>


+ 4
- 4
docs/manual/tasksoverview.html View File

@@ -940,15 +940,15 @@ documentation.</p>
</tr>

<tr valign="top">
<td nowrap><a href="CoreTasks/changelog.html">ChangeLog</a></td>
<td><p>Generates an XML report of the changes recorded in a
<td nowrap><a href="CoreTasks/cvs.html">Cvs</a></td>
<td><p>Handles packages/modules retrieved from a
<a href="http://www.cvshome.org/" target="_top">CVS</a>
repository.</p></td>
</tr>

<tr valign="top">
<td nowrap><a href="CoreTasks/cvs.html">Cvs</a></td>
<td><p>Handles packages/modules retrieved from a
<td nowrap><a href="CoreTasks/changelog.html">CvsChangeLog</a></td>
<td><p>Generates an XML report of the changes recorded in a
<a href="http://www.cvshome.org/" target="_top">CVS</a>
repository.</p></td>
</tr>


+ 1
- 1
src/main/org/apache/tools/ant/taskdefs/defaults.properties View File

@@ -63,7 +63,7 @@ manifest=org.apache.tools.ant.taskdefs.Manifest
loadproperties=org.apache.tools.ant.taskdefs.LoadProperties
basename=org.apache.tools.ant.taskdefs.Basename
dirname=org.apache.tools.ant.taskdefs.Dirname
changelog=org.apache.tools.ant.taskdefs.cvslib.ChangeLogTask
cvschangelog=org.apache.tools.ant.taskdefs.cvslib.ChangeLogTask
buildnumber=org.apache.tools.ant.taskdefs.BuildNumber
concat=org.apache.tools.ant.taskdefs.Concat



Loading…
Cancel
Save