Add docs for HEAD code, as the top level stuff will reflect the release as per discussions

git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@113885 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
dion 2003-08-28 07:03:02 +00:00
parent b60812f878
commit 2550436fa2
4 changed files with 104 additions and 0 deletions

View File

@ -0,0 +1,24 @@
<?xml version="1.0"?>
<document>
<properties>
<title>Changes</title>
<author email="dion@apache.org">dIon Gillard</author>
</properties>
<body>
<release version="1.3" date="2003-08-28">
<action dev="dion" type="fix">
Correctly handle files with <code>..</code> in the names
</action>
<action dev="dion" type="fix">
Open the word documents in readonly mode
</action>
<action dev="dion" type="fix">
Make plugin run when maven site is invoked
</action>
</release>
</body>
</document>

View File

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8"?>
<document>
<properties>
<title>Maven word2html Plug-in Goals</title>
<author email="dion@apache.org">dIon Gillard</author>
</properties>
<body>
<goals>
<goal>
<name>word2html:generate</name>
<description>Generate HTML docs from Word via CScript</description>
</goal>
<goal>
<name>word2html:prepare-filesystem</name>
<description>Create directories needed for the plugin</description>
</goal>
</goals>
</body>
</document>

View File

@ -0,0 +1,33 @@
<?xml version="1.0" encoding="ISO-8859-1"?>
<document>
<properties>
<title>Maven Word 2 HTML Plug-in</title>
<author email="dion@multitask.com.au">dIon Gillard</author>
</properties>
<body>
<section name="Maven Word to HTML Plug-in">
<p>
This plug-in allows you to write your project documentation in Microsoft
Word, and generate HTML from it on a <strong>Windows</strong> platform
only.
</p>
<p>
It converts Word documents to HTML using the
<a href="http://msdn.microsoft.com/downloads/default.asp?url=/downloads/topic.asp?URL=/MSDN-FILES/028/001/175/topic.xml">
Microsoft® Windows® Script</a>. You will need this installed to
successfully use this plugin.
</p>
<p>
To use this plug-in, make sure the property
<code>${maven.word2html.src.dir}</code> has been set and run the
<code>site:generate</code> goal.
</p>
<p>
All documents matching <code>*.doc</code> in the directory will be
converted to HTML.
</p>
</section>
</body>
</document>

View File

@ -0,0 +1,27 @@
<?xml version="1.0" encoding="UTF-8"?>
<document>
<properties>
<title>word2html Properties</title>
<author email="dion@apache.org">dIon Gillard</author>
</properties>
<body>
<section name="word2html Settings">
<table>
<tr>
<th>Property</th>
<th>Optional?</th>
<th>Description</th>
</tr>
<tr>
<td>maven.word2html.src.dir</td>
<td>Yes</td>
<td>
<p>Default value is
<code>MAVEN_WORD2HTML_SRC_DIR_NOT_SET</code>.</p>
</td>
</tr>
</table>
</section>
</body>
</document>