donaldp 02/04/05 17:32:22
Modified: . build.xml
docs/manual/CoreTasks changelog.html
Log:
Add changelog.xsl to distribution and also make sure it is documented.
Revision Changes Path
1.285 +1 -0 jakarta-ant/build.xml
Index: build.xml
===================================================================
RCS file: /home/cvs/jakarta-ant/build.xml,v
retrieving revision 1.284
retrieving revision 1.285
diff -u -r1.284 -r1.285
--- build.xml 5 Apr 2002 12:55:01 -0000 1.284
+++ build.xml 6 Apr 2002 01:32:22 -0000 1.285
@@ -754,6 +754,7 @@
<include name="coverage-frames.xsl"/>
<include name="maudit-frames.xsl"/>
<include name="mmetrics-frames.xsl"/>
+ <include name="changelog.xsl"/>
<include name="jdepend.xsl"/>
<include name="jdepend-frames.xsl"/>
<include name="checkstyle-frames.xsl"/>
1.10 +15 -0 jakarta-ant/docs/manual/CoreTasks/changelog.html
Index: changelog.html
===================================================================
RCS file: /home/cvs/jakarta-ant/docs/manual/CoreTasks/changelog.html,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- changelog.html 3 Apr 2002 09:11:09 -0000 1.9
+++ changelog.html 6 Apr 2002 01:32:22 -0000 1.10
@@ -135,6 +135,21 @@
anytime it encounters a change made by the user ID "donaldp".
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
+a HTML report based on the xml output. The following example illustrates
+how to generate a HTML report from the XML report.</p>
+
+<pre>
+ <style in="changelog.xml"
+ out="changelog.html"
+ style="${ant.home}/etc/changelog.xsl">
+ <param name="title" expression="Ant ChangeLog"/>
+ <param name="module" expression="jakarta-ant"/>
+ <param name="cvsweb"
expression="http://cvs.apache.org/viewcvs/"/>
+ </style>
+</pre>
+
<h4>Sample Output</h4>
<pre>
<changelog>
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>