From bd397529d80e15ce8364669aa76c2f12e86f78b7 Mon Sep 17 00:00:00 2001 From: Peter Donald Date: Thu, 28 Mar 2002 22:57:20 +0000 Subject: [PATCH] Add in ChangeLog documentation git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@272074 13f79535-47bb-0310-9956-ffa450edef68 --- docs/manual/CoreTasks/changelog.html | 107 +++++++++++++++++++++++++++ 1 file changed, 107 insertions(+) create mode 100644 docs/manual/CoreTasks/changelog.html diff --git a/docs/manual/CoreTasks/changelog.html b/docs/manual/CoreTasks/changelog.html new file mode 100644 index 000000000..1894e2d7b --- /dev/null +++ b/docs/manual/CoreTasks/changelog.html @@ -0,0 +1,107 @@ + + + + +Changelog Task + + + + +

Changelog

+

Description

+

Generates an XML report of the changes recorded in a +CVS repository.

+

Parameters

+ + + + + + + + + + + + + + + + + + + + + + + + + + +
AttributeDescriptionRequired
basedirthe directory from which to run "cvs log".Yes
destfilethe file in which to write the changelog.Yes
startthe earliest date of changes that are to be included in report.No
endthe latest date of changes that are to be included in report.No
+ +

user

+

The changelog task all allows a user element. It maps between a usernid +as it appears on the cvs server and a display name. Any time the userid +has made a change in the repository, the author tag in report will use +the supplied displayname rather than the userid..

+ + + + + + + + + + + + + + + + + +
AttributeDescriptionRequired
displaynameThe name to be displayed in CVS changelog.Yes
useridThe userid of person as they exist on the CVS server.Yes
+ + +

Examples

+
  <changelog basedir="dve/network"
+             destfile="changelog.xml"
+  />
+ +

Generates a changelog for the dve/network directory including all changes that +ever occured on repository. It writes these changes into the file "changelog.xml".

+ +
  <changelog basedir="dve/network"
+             destfile="changelog.xml"
+             start="20 Feb 2002"
+             end="20 Mar 2002"
+  />
+ +

Generates a changelog for the dve/network directory for all the changes that occured +between the dates 20th of Feb 2002 and 20th of Mar 2002. It writes these changes into the file "changelog.xml".

+ +
  <changelog basedir="dve/network"
+             destfile="changelog.xml"
+             start="20 Feb 2002"
+  />
+ +

Generates a changelog for the dve/network directory for all the changes that occured +after the 20th of Feb 2002. It writes these changes into the file "changelog.xml".

+ +
  <changelog basedir="dve/network"
+             destfile="changelog.xml"
+       <user displayname="Peter Donald" userid="donaldp"/>
+  />
+ +

Generates a changelog for the dve/network directory for all the changes that +ever occured. It will also specify the author name as "Peter Donald" +any time it encounters the username "donaldp" in the changes.

+ +

Copyright © 2001 Apache Software Foundation. All rights +Reserved.

+ + + +