added more documentation to the release

git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/collections/trunk@130650 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Morgan James Delagrange 2002-03-15 17:28:41 +00:00
parent 46d1aa3509
commit 9bf049746b
2 changed files with 10 additions and 5 deletions

View File

@ -5,10 +5,11 @@
<center><h3>NEW COLLECTIONS AND COMPARATORS</h3></center> <center><h3>NEW COLLECTIONS AND COMPARATORS</h3></center>
<p>Collections 2.0 includes a significant number of new collections, in addition to several <p><i>Collections 2.0</i> includes a significant number of new collections, in addition to several
useful Comparator classes.</p> useful Comparator classes. Descriptions of the new collections and comparators follow.
(For descriptions of all classes in <i>Collections</i>, see the <i>STATUS.html</i> file.)</p>
<p>These collections are new to Collections 2.0:</p> <p>These collections are new to <i>Collections 2.0</i>:</p>
<ul> <ul>
@ -76,7 +77,7 @@ useful Comparator classes.</p>
<center><h3>CHANGED COLLECTIONS</h3></center> <center><h3>CHANGED COLLECTIONS</h3></center>
These classes have changed since Collections 1.0: These classes have changed since <i>Collections 1.0</i>:
<p><u>ArrayIterator</u></p> <p><u>ArrayIterator</u></p>

View File

@ -1,4 +1,4 @@
<!-- $Id: build.xml,v 1.20 2002/03/15 17:07:08 morgand Exp $ --> <!-- $Id: build.xml,v 1.21 2002/03/15 17:28:41 morgand Exp $ -->
<project name="commons-collections" default="test" basedir="."> <project name="commons-collections" default="test" basedir=".">
<!-- patternset describing files to be copied from the doc directory --> <!-- patternset describing files to be copied from the doc directory -->
@ -50,6 +50,8 @@
<!-- The current version number of this component --> <!-- The current version number of this component -->
<property name="component.version" value="2.0"/> <property name="component.version" value="2.0"/>
<property name="doc.release.notes" value="RELEASE-NOTES-${component.version}.html"/>
<property name="doc.status" value="STATUS.html"/>
<property name="test.entry" value="org.apache.commons.collections.TestAll"/> <property name="test.entry" value="org.apache.commons.collections.TestAll"/>
<property name="test.failonerror" value="true" /> <property name="test.failonerror" value="true" />
@ -124,6 +126,8 @@
<target name="doc-top" depends="init"> <target name="doc-top" depends="init">
<mkdir dir="${dest}"/> <mkdir dir="${dest}"/>
<copy todir="${dest}" file="../LICENSE"/> <copy todir="${dest}" file="../LICENSE"/>
<copy todir="${dest}" file="${doc.status}"/>
<copy todir="${dest}" file="${doc.release.notes}"/>
</target> </target>
<target name="doc-copy" depends="init" if="available-doc"> <target name="doc-copy" depends="init" if="available-doc">