git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@112724 13f79535-47bb-0310-9956-ffa450edef68
51 lines
1.7 KiB
XML
51 lines
1.7 KiB
XML
<?xml version="1.0"?>
|
|
<document>
|
|
<properties>
|
|
<title>Changes Report</title>
|
|
<author email="vmassol@octo.com">Vincent Massol</author>
|
|
</properties>
|
|
|
|
<body>
|
|
<section name="A usable changes report">
|
|
<p>
|
|
I've also wanted to be able to browse Maven's website and have a summary
|
|
of all changes. Then come back a few days later and then again see
|
|
what's new. This is for example what you can see on
|
|
<a href="http://jakarta.apache.org/cactus/changes.html">Cactus's changes web page</a>
|
|
</p>
|
|
<p>
|
|
In order to activate this report, you need to create a changes.xml
|
|
file in your xdocs directory. The format of this file is as follows:
|
|
</p>
|
|
<source><![CDATA[
|
|
<?xml version="1.0"?>
|
|
<document>
|
|
<properties>
|
|
<title>Changes</title>
|
|
<author email="vmassol@octo.com">Vincent Massol</author>
|
|
</properties>
|
|
<body>
|
|
<release version="1.5" date="in CVS">
|
|
<action dev="vmassol" type="add" due-to="Jason Robertson"
|
|
due-to-email="Jason.Robertson@acs-inc.com">
|
|
Added Form-based authentication support (Submitted by Jason Robertson).
|
|
</action>
|
|
<action dev="vmassol" type="add">
|
|
Added a <link href="howto_build.html">tutorial</link> that
|
|
explains how to build Cactus from the sources.
|
|
</action>
|
|
[...]
|
|
</release>
|
|
</body>
|
|
</document>
|
|
]]>
|
|
</source>
|
|
<p>Where the "type" attribute can be: add, remove, update or fix.</p>
|
|
|
|
<p>
|
|
An example of the generated report can be seen on the
|
|
<a href="http://patterntesting.sourceforge.net/changes.html">PatternTesting web page</a>
|
|
</p>
|
|
</section>
|
|
</body>
|
|
</document> |