Added cvs requirement (from cvs.html) and fixed an example bug.

Index: changelog.html
===================================================================
RCS file: /home/cvspublic/ant/docs/manual/CoreTasks/changelog.html,v
retrieving revision 1.11
diff -u -r1.11 changelog.html
--- changelog.html      19 Feb 2003 09:23:19 -0000      1.11
+++ changelog.html      20 Apr 2003 18:44:06 -0000
@@ -11,6 +11,9 @@
 <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>
+<p><b>Important:</b> This task needs "cvs" on the path. If it isn't, you
will get
+an error (such as error 2 on windows). If &lt;cvs&gt; doesn't work, try to
execute cvs.exe
+from the command line in the target directory in which you are working.
 <h3>Parameters</h3>
 <table border="1" cellpadding="2" cellspacing="0">
   <tr>
@@ -125,7 +128,7 @@
 It writes these changes into the file <code>changelog.xml</code>.</p>

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

@@ -136,13 +139,13 @@
 It writes these changes into the file <code>changelog.xml</code>.</p>

 <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
 a HTML report based on the xml output. The following example illustrates
 how to generate a HTML report from the XML report.</p>

 <pre>
-        &lt;style in="changelog.xml"
-               out="changelog.html"
+        &lt;style in="changelog.xml"
+               out="changelog.html"
                style="${ant.home}/etc/changelog.xsl"&gt;
           &lt;param name="title" expression="Ant ChangeLog"/&gt;
           &lt;param name="module" expression="ant"/&gt;

Reply via email to