maven-plugins/xdoc/xdocs/changes-report.xml
evenisse 85df922d35 Update to ASL v.2
git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@114795 13f79535-47bb-0310-9956-ffa450edef68
2004-03-04 18:40:25 +00:00

69 lines
2.3 KiB
XML

<?xml version="1.0"?>
<!--
/*
* Copyright 2001-2004 The Apache Software Foundation.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
-->
<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>