Author: niallp
Date: Tue Aug 19 20:38:24 2008
New Revision: 687228
URL: http://svn.apache.org/viewvc?rev=687228&view=rev
Log:
Update the site/docs for BeanUtils 1.8.0
Modified:
commons/proper/beanutils/trunk/RELEASE-NOTES.txt
commons/proper/beanutils/trunk/pom.xml
commons/proper/beanutils/trunk/src/site/site.xml
commons/proper/beanutils/trunk/xdocs/building.xml
commons/proper/beanutils/trunk/xdocs/changes.xml
commons/proper/beanutils/trunk/xdocs/download_beanutils.xml
commons/proper/beanutils/trunk/xdocs/index.xml
commons/proper/beanutils/trunk/xdocs/navigation.xml
Modified: commons/proper/beanutils/trunk/RELEASE-NOTES.txt
URL:
http://svn.apache.org/viewvc/commons/proper/beanutils/trunk/RELEASE-NOTES.txt?rev=687228&r1=687227&r2=687228&view=diff
==============================================================================
--- commons/proper/beanutils/trunk/RELEASE-NOTES.txt (original)
+++ commons/proper/beanutils/trunk/RELEASE-NOTES.txt Tue Aug 19 20:38:24 2008
@@ -109,6 +109,8 @@
=====================
The following is a list of the bugs fixed since the 1.8.0-BETA release, with
their Jira issue number:
+
+ * [BEANUTILS-265] - Allow access to non public class's public methods from a
public sub-classes
* [BEANUTILS-291] - Circular Reference on WeakHashMap
* [BEANUTILS-294] - BeanUtilsBean.setProperty() does not support nested map
* [BEANUTILS-295] - Unnecessary Garbage Objects in Class PropertyUtilsBean
@@ -116,6 +118,9 @@
* [BEANUTILS-298] - MethodUtils.getAccessibleMethod(Method method) could not
find right public method
* [BEANUTILS-302] - NPE in ArrayConverter when converting a non-quoted
string with underscores to a string array
* [BEANUTILS-306] - LocaleConvertUtilsBean.convert throws NPE on null Locale
when debug logging is enabled
+ * [BEANUTILS-318] - Fix WeakHashMap is not thread safe in MethodUtils using
new FastWeakHashMap
+ * [BEANUTILS-319] - PropertyUtils.getPropertyType fails for DynaBeans
contained within a normal bean
+ * [BEANUTILS-326] - Iterating by a Map' key/value pairs in BeanUtilsBean and
PropertyUtilsBean
The following is a list of the bugs fixed since the 1.7.0 release, with their
Jira issue number:
Modified: commons/proper/beanutils/trunk/pom.xml
URL:
http://svn.apache.org/viewvc/commons/proper/beanutils/trunk/pom.xml?rev=687228&r1=687227&r2=687228&view=diff
==============================================================================
--- commons/proper/beanutils/trunk/pom.xml (original)
+++ commons/proper/beanutils/trunk/pom.xml Tue Aug 19 20:38:24 2008
@@ -240,8 +240,7 @@
<maven.compile.source>1.3</maven.compile.source>
<maven.compile.target>1.3</maven.compile.target>
<commons.componentid>beanutils</commons.componentid>
- <commons.release.version>1.8.0-BETA</commons.release.version>
- <commons.binary.suffix></commons.binary.suffix>
+ <commons.release.version>1.8.0</commons.release.version>
<commons.jira.id>BEANUTILS</commons.jira.id>
<commons.jira.pid>12310460</commons.jira.pid>
<commons.osgi.export>
Modified: commons/proper/beanutils/trunk/src/site/site.xml
URL:
http://svn.apache.org/viewvc/commons/proper/beanutils/trunk/src/site/site.xml?rev=687228&r1=687227&r2=687228&view=diff
==============================================================================
--- commons/proper/beanutils/trunk/src/site/site.xml (original)
+++ commons/proper/beanutils/trunk/src/site/site.xml Tue Aug 19 20:38:24 2008
@@ -37,10 +37,10 @@
<item name="Building" href="/building.html"/>
<!-- item name="History" href="/changes-report.html"/
-->
<item name="Wiki"
href="http://wiki.apache.org/commons/BeanUtils"/>
- <item name="1.8.0-BETA">
- <item name="Release Notes"
href='http://commons.apache.org/beanutils/v1.8.0-BETA/RELEASE-NOTES.txt'/>
- <item name="User Guide"
href="http://commons.apache.org/beanutils/v1.8.0-BETA/apidocs/org/apache/commons/beanutils/package-summary.html#package_description"/>
- <item name="API"
href="http://commons.apache.org/beanutils/v1.8.0-BETA/apidocs/index.html"/>
+ <item name="1.8.0">
+ <item name="Release Notes"
href='http://commons.apache.org/beanutils/v1.8.0/RELEASE-NOTES.txt'/>
+ <item name="User Guide"
href="http://commons.apache.org/beanutils/v1.8.0/apidocs/org/apache/commons/beanutils/package-summary.html#package_description"/>
+ <item name="API"
href="http://commons.apache.org/beanutils/v1.8.0/apidocs/index.html"/>
</item>
<item name="1.7.0 Release">
<item name="User Guide"
href="http://commons.apache.org/beanutils/commons-beanutils-1.7.0/docs/api/org/apache/commons/beanutils/package-summary.html#package_description"/>
Modified: commons/proper/beanutils/trunk/xdocs/building.xml
URL:
http://svn.apache.org/viewvc/commons/proper/beanutils/trunk/xdocs/building.xml?rev=687228&r1=687227&r2=687228&view=diff
==============================================================================
--- commons/proper/beanutils/trunk/xdocs/building.xml (original)
+++ commons/proper/beanutils/trunk/xdocs/building.xml Tue Aug 19 20:38:24 2008
@@ -74,14 +74,5 @@
The result will be in the "dist" subdirectory.
</p>
</section>
-<!-- ================================================== -->
-<section name="Nightly Builds">
- <p>
- <a
href="http://people.apache.org/builds/commons/nightly/commons-beanutils/">Nightly
Builds</a>
- are built once a day from the current SVN HEAD. These are provided
purely for test purposes and are <b>NOT
- official releases</b> of the Apache Software Foundation - Released
versions of Commons BeanUtils are
- available <a
href="http://commons.apache.org/downloads/download_beanutils.cgi">here</a>.
- </p>
-</section>
</body>
</document>
Modified: commons/proper/beanutils/trunk/xdocs/changes.xml
URL:
http://svn.apache.org/viewvc/commons/proper/beanutils/trunk/xdocs/changes.xml?rev=687228&r1=687227&r2=687228&view=diff
==============================================================================
--- commons/proper/beanutils/trunk/xdocs/changes.xml (original)
+++ commons/proper/beanutils/trunk/xdocs/changes.xml Tue Aug 19 20:38:24 2008
@@ -39,49 +39,55 @@
</properties>
<body>
- <release version="1.8.0-BETA" date="2007-08-04" description="Converter
improvements, Plugable expression Resolver and bug fixes for 1.7.0">
+ <release version="1.8.0" date="2008-09-01" description="Converter
improvements, Plugable expression Resolver and bug fixes for 1.7.0">
+ <action dev="niallp" type="fix" issue="BEANUTILS-265" due-to="Tom
Schindl and Romain Muller">
+ Allow access to non public class's public methods from a public
sub-classes.
+ </action>
+ <action dev="niallp" type="fix" issue="BEANUTILS-291" due-to="Clebert
Suconic ">
+ Circular Reference on WeakHashMap.
+ </action>
+ <action dev="niallp" type="fix" issue="BEANUTILS-294" due-to="Stephen
Leung">
+ BeanUtilsBean.setProperty() does not support nested map.
+ </action>
+ <action dev="bayard" type="fix" issue="BEANUTILS-295" due-to="Stefan
Wohlgemuth">
+ Unnecessary Garbage Objects in Class PropertyUtilsBean.
+ </action>
+ <action dev="niallp" type="fix" issue="BEANUTILS-297" due-to="Alex
Tkachev">
+ ConvertingWrapDynaBean hides cause exceptions.
+ </action>
+ <action dev="niallp" type="fix" issue="BEANUTILS-298" due-to="Roman
Mukhin">
+ MethodUtils.getAccessibleMethod(Method method) could not find right
public method.
+ </action>
+ <action dev="niallp" type="fix" issue="BEANUTILS-302" due-to="Martin
Bartlett">
+ NPE in ArrayConverter when converting a non-quoted string with
underscores to a string array.
+ </action>
+ <action dev="niallp" type="fix" issue="BEANUTILS-306" due-to="Lucian
Chirita">
+ LocaleConvertUtilsBean.convert throws NPE on null Locale when debug
logging is enabled.
+ </action>
+ <action dev="niallp" type="fix" issue="BEANUTILS-318" due-to="Sylvain
Legault">
+ Fix WeakHashMap is not thread safe in MethodUtils using new
FastWeakHashMap.
+ </action>
+ <action dev="niallp" type="fix" issue="BEANUTILS-319" due-to="Erik
Erskine">
+ PropertyUtils.getPropertyType fails for DynaBeans contained within a
normal bean.
+ </action>
+ <action dev="niallp" type="fix" issue="BEANUTILS-326" due-to="Vladimir
Orlov">
+ Iterating by a Map' key/value pairs in BeanUtilsBean and
PropertyUtilsBean.
+ </action>
+ </release>
+
+ <release version="1.8.0-BETA" date="2007-08-04" description="Trial Beta
release">
<action dev="niallp" type="add" issue="BEANUTILS-259">
- Add plugable property name expression <b><i>Resolver</i></b>.
+ Add plugable property name expression Resolver.
</action>
<action dev="niallp" type="update" issue="BEANUTILS-258">
- General Converter implementation improvements:
- <ul>
- <li>New <b>AbstractConverter</b> which provides a basic structure
for
- Converter implementations:</li>
- <ul>
- <li>Provides structure for converting to and from a String
- for the type the converter handles.</li>
- <li>Provides a mechanism for default values.</li>
- <li>Handles missing and invalid values in a uniform
way.</li>
- </ul>
- <li>New <b>NumberConverter</b> implementation:</li>
- <ul>
- <li>Converts both to and from <code>String</code> for
numbers.</li>
- <li>Can be configured to convert using the default format
for either
- the default Locale or a specified Locale.</li>
- <li>Can be configured to convert using a specified
- <code>DecimalFormat</code> pattern, either for the
default
- Locale or a specified Locale.</li>
- <li>Provides the basis for all the number converters in
BeanUtils.</li>
- </ul>
- </ul>
+ General Converter implementation improvements: New AbstractConverter
which provides
+ a basic structure for Converter implementations and new
NumberConverter implementation.
</action>
<action dev="niallp" type="add" issue="BEANUTILS-242">
- Add new generic <b>ArrayConverter</b> implementation.
+ Add new generic ArrayConverter implementation.
</action>
<action dev="niallp" type="add" issue="BEANUTILS-255">
- Add new generic <b>DateTimeConverter</b> implementation.
- <ul>
- <li>Converts both to and from <code>String</code> for dates.</li>
- <li>Can be configured to convert using the default format for
either
- the default Locale or a specified Locale.</li>
- <li>Can be configured to convert using a set of
- <code>DateFormat</code> patterns.</li>
- <li>Provides the basis for all the date converters in
BeanUtils.</li>
- <li>Handles conversion for (and between)
<code>java.util.Date</code>,
- <code>java.util.Calendar</code>, <code>java.sql.Date</code>,
- <code>java.sql.Time</code> and
<code>java.sql.Timestamp</code></li>
- </ul>
+ Add new generic DateTimeConverter implementation.
</action>
<action dev="vgritsenko" type="update" issue="BEANUTILS-239"
due-to="Rafael Afonso">
Better implementation of SqlDateConverter. Modified SqlDateConverter,
@@ -146,11 +152,9 @@
<action dev="niallp" type="fix" issue="BEANUTILS-249" due-to="Brad">
BeanUtilsBean's setProperty() does not convert objects using custom
converters properly.
</action>
- <action dev="niallp" type="fix" issue="BEANUTILS-17">
+ <action dev="niallp" type="fix" issue="BEANUTILS-17" due-to="Matthew
Sgarlata and Corey Scott">
Fix javadoc - IllegalArgumentException in BeanUtils.copyProperties
when property types don't match.
- <dueto name="Matthew Sgarlata"/>
- <dueto name="Corey Scott"/>
</action>
<action dev="niallp" type="fix" issue="BEANUTILS-68" due-to="Dmitry
Platonoff">
Writing to a mapped property requires a setter for a map, but never
uses it.
@@ -215,11 +219,9 @@
be of help to future developers who make this mistake though...
</action>
<action dev="skitching" type="fix">
- Ignore simple properties on <code>java.util.Map</code> objects -
- <i>Map methods are always used on a Map object</i>.
- Reverts <a
href="http://issues.apache.org/jira/browse/BEANUTILS-144">BEANUTILS-144</a>.
- See <a
href="http://issues.apache.org/jira/browse/BEANUTILS-162">BEANUTILS-162</a> for
- discussion.
+ Ignore simple properties on java.util.Map objects -
+ Map methods are always used on a Map object. Reverts BEANUTILS-144.
+ See BEANUTILS-162 for discussion.
</action>
<action dev="niallp" type="fix" issue="BEANUTILS-262">
Correct getPropertyDescriptor() and setNestedProperty() methods to
throw
@@ -230,21 +232,14 @@
Problems on indexed property with JDK 1.4.
</action>
<action dev="skitching" type="update">
- BooleanArrayConverter:
- <ul>
- <li>Use new AbstractArrayConverter constructors</li>
- <li>Convert strings to booleans by invoking a BooleanConverter
rather than
- hard-wiring the conversion.</li>
- </ul>
+ BooleanArrayConverter: Use new AbstractArrayConverter constructors and
+ Convert strings to booleans by invoking a BooleanConverter rather than
+ hard-wiring the conversion.
</action>
<action dev="skitching" type="update" due-to="Eric Rizzo">
- BooleanConverter:
- <ul>
- <li>Add facility for user to override the default set of true and
false
- string definitions</li>
- <li>provide ability to pass special NO_DEFAULT object as the
- "defaultValue" constructor parameter.</li>
- </ul>
+ BooleanConverter: Add facility for user to override the default set
+ of true and false string definitions and provide ability to pass
special
+ NO_DEFAULT object as the "defaultValue" constructor parameter.
</action>
<action dev="skitching" type="update">
AbstractArrayConverter: provide ability to pass special NO_DEFAULT
object as the
@@ -336,57 +331,49 @@
<release version="1.7.0" date="2004-08-02">
<action type="update">
- See <a
href="http://commons.apache.org/beanutils/commons-beanutils-1.7.0/RELEASE-NOTES.txt">
- 1.7.0 Release Notes</a>
+ See
href="http://commons.apache.org/beanutils/commons-beanutils-1.7.0/RELEASE-NOTES.txt
</action>
</release>
<release version="1.6.1" date="2003-02-18">
<action type="update">
- See <a
href="http://commons.apache.org/beanutils/commons-beanutils-1.6.1/RELEASE-NOTES.txt">
- 1.6.1 Release Notes</a>
+ See
http://commons.apache.org/beanutils/commons-beanutils-1.6.1/RELEASE-NOTES.txt
</action>
</release>
<release version="1.6" date="2003-01-21">
<action type="update">
- See <a
href="http://commons.apache.org/beanutils/commons-beanutils-1.6/RELEASE-NOTES.txt">
- 1.6 Release Notes</a>
+ See
http://commons.apache.org/beanutils/commons-beanutils-1.6/RELEASE-NOTES.txt
</action>
</release>
<release version="1.5" date="2002-10-23">
<action type="update">
- See <a
href="http://commons.apache.org/beanutils/commons-beanutils-1.5/RELEASE-NOTES.txt">
- 1.5 Release Notes</a>
+ See
http://commons.apache.org/beanutils/commons-beanutils-1.5/RELEASE-NOTES.txt
</action>
</release>
<release version="1.4.1" date="2002-08-28">
<action type="fix">
- See <a
href="http://commons.apache.org/beanutils/commons-beanutils-1.4.1/RELEASE-NOTES.txt">
- 1.4.1 Release Notes</a>
+ See
http://commons.apache.org/beanutils/commons-beanutils-1.4.1/RELEASE-NOTES.txt
</action>
</release>
<release version="1.4" date="2002-08-13">
<action type="update">
- See <a
href="http://commons.apache.org/beanutils/commons-beanutils-1.4/RELEASE-NOTES.txt">
- 1.4 Release Notes</a>
+ See
http://commons.apache.org/beanutils/commons-beanutils-1.4/RELEASE-NOTES.txt
</action>
</release>
<release version="1.3" date="2002-04-29">
<action type="update">
- See <a
href="http://commons.apache.org/beanutils/commons-beanutils-1.3/RELEASE-NOTES.txt">
- 1.3 Release Notes</a>
+ See
http://commons.apache.org/beanutils/commons-beanutils-1.3/RELEASE-NOTES.txt
</action>
</release>
<release version="1.2" date="2001-12-24">
<action type="update">
- See <a
href="http://commons.apache.org/beanutils/commons-beanutils-1.2/RELEASE-NOTES.txt">
- 1.2 Release Notes</a>
+ See
http://commons.apache.org/beanutils/commons-beanutils-1.2/RELEASE-NOTES.txt
</action>
</release>
Modified: commons/proper/beanutils/trunk/xdocs/download_beanutils.xml
URL:
http://svn.apache.org/viewvc/commons/proper/beanutils/trunk/xdocs/download_beanutils.xml?rev=687228&r1=687227&r2=687228&view=diff
==============================================================================
--- commons/proper/beanutils/trunk/xdocs/download_beanutils.xml (original)
+++ commons/proper/beanutils/trunk/xdocs/download_beanutils.xml Tue Aug 19
20:38:24 2008
@@ -102,17 +102,17 @@
<ul class="downloads">
<li class="group"><div class="links"><span
class="label">Binary</span></div>
<ul>
- <li class="download"><a
href="[preferred]/commons/beanutils/binaries/commons-beanutils-1.8.0-BETA.tar.gz">1.8.0-BETA.tar.gz</a>
+ <li class="download"><a
href="[preferred]/commons/beanutils/binaries/commons-beanutils-1.8.0-bin.tar.gz">1.8.0.tar.gz</a>
<ul class="attributes">
- <li><span class="md5">[<a
href="http://www.apache.org/dist/commons/beanutils/binaries/commons-beanutils-1.8.0-BETA.tar.gz.md5">md5</a>]</span>
- <span class="pgp">[<a
href="http://www.apache.org/dist/commons/beanutils/binaries/commons-beanutils-1.8.0-BETA.tar.gz.asc">pgp</a>]</span>
+ <li><span class="md5">[<a
href="http://www.apache.org/dist/commons/beanutils/binaries/commons-beanutils-1.8.0-bin.tar.gz.md5">md5</a>]</span>
+ <span class="pgp">[<a
href="http://www.apache.org/dist/commons/beanutils/binaries/commons-beanutils-1.8.0-bin.tar.gz.asc">pgp</a>]</span>
</li>
</ul>
</li>
- <li class="download"><a
href="[preferred]/commons/beanutils/binaries/commons-beanutils-1.8.0-BETA.zip">1.8.0-BETA.zip</a>
+ <li class="download"><a
href="[preferred]/commons/beanutils/binaries/commons-beanutils-1.8.0-bin.zip">1.8.0.zip</a>
<ul class="attributes">
- <li><span class="md5">[<a
href="http://www.apache.org/dist/commons/beanutils/binaries/commons-beanutils-1.8.0-BETA.zip.md5">md5</a>]</span>
- <span class="pgp">[<a
href="http://www.apache.org/dist/commons/beanutils/binaries/commons-beanutils-1.8.0-BETA.zip.asc">pgp</a>]</span>
+ <li><span class="md5">[<a
href="http://www.apache.org/dist/commons/beanutils/binaries/commons-beanutils-1.8.0-bin.zip.md5">md5</a>]</span>
+ <span class="pgp">[<a
href="http://www.apache.org/dist/commons/beanutils/binaries/commons-beanutils-1.8.0-bin.zip.asc">pgp</a>]</span>
</li>
</ul>
</li>
@@ -120,17 +120,17 @@
</li>
<li class="group"><div class="links"><span
class="label">Source</span></div>
<ul>
- <li class="download"><a
href="[preferred]/commons/beanutils/source/commons-beanutils-1.8.0-BETA-src.tar.gz">1.8.0-BETA.tar.gz</a>
+ <li class="download"><a
href="[preferred]/commons/beanutils/source/commons-beanutils-1.8.0-src.tar.gz">1.8.0.tar.gz</a>
<ul class="attributes">
- <li><span class="md5">[<a
href="http://www.apache.org/dist/commons/beanutils/source/commons-beanutils-1.8.0-BETA-src.tar.gz.md5">md5</a>]</span>
- <span class="pgp">[<a
href="http://www.apache.org/dist/commons/beanutils/source/commons-beanutils-1.8.0-BETA-src.tar.gz.asc">pgp</a>]</span>
+ <li><span class="md5">[<a
href="http://www.apache.org/dist/commons/beanutils/source/commons-beanutils-1.8.0-src.tar.gz.md5">md5</a>]</span>
+ <span class="pgp">[<a
href="http://www.apache.org/dist/commons/beanutils/source/commons-beanutils-1.8.0-src.tar.gz.asc">pgp</a>]</span>
</li>
</ul>
</li>
- <li class="download"><a
href="[preferred]/commons/beanutils/source/commons-beanutils-1.8.0-BETA-src.zip">1.8.0-BETA.zip</a>
+ <li class="download"><a
href="[preferred]/commons/beanutils/source/commons-beanutils-1.8.0-src.zip">1.8.0.zip</a>
<ul class="attributes">
- <li><span class="md5">[<a
href="http://www.apache.org/dist/commons/beanutils/source/commons-beanutils-1.8.0-BETA-src.zip.md5">md5</a>]</span>
- <span class="pgp">[<a
href="http://www.apache.org/dist/commons/beanutils/source/commons-beanutils-1.8.0-BETA-src.zip.asc">pgp</a>]</span>
+ <li><span class="md5">[<a
href="http://www.apache.org/dist/commons/beanutils/source/commons-beanutils-1.8.0-src.zip.md5">md5</a>]</span>
+ <span class="pgp">[<a
href="http://www.apache.org/dist/commons/beanutils/source/commons-beanutils-1.8.0-src.zip.asc">pgp</a>]</span>
</li>
</ul>
</li>
Modified: commons/proper/beanutils/trunk/xdocs/index.xml
URL:
http://svn.apache.org/viewvc/commons/proper/beanutils/trunk/xdocs/index.xml?rev=687228&r1=687227&r2=687228&view=diff
==============================================================================
--- commons/proper/beanutils/trunk/xdocs/index.xml (original)
+++ commons/proper/beanutils/trunk/xdocs/index.xml Tue Aug 19 20:38:24 2008
@@ -28,11 +28,6 @@
<section name="Commons BeanUtils">
<p>
-<strong>Please <a
href="http://commons.apache.org/downloads/download_beanutils.cgi">download</a>
-and test the BeanUtils <a
href="http://commons.apache.org/beanutils/v1.8.0-BETA/RELEASE-NOTES.txt">1.8.0
Beta</a>
-release</strong> (see <a href="issue-tracking.html">here</a> for reporting any
issues).
-</p>
-<p>
Most Java developers are used to creating Java classes that conform to the
JavaBeans naming patterns for property getters and setters. It is natural to
then access these methods directly, using calls to the corresponding
@@ -107,20 +102,16 @@
<section name="Releases">
-<subsection name="1.8.0 Beta">
-<p>
-<strong>Please <a
href="http://commons.apache.org/downloads/download_beanutils.cgi">download</a>
-and test the BeanUtils <a
href="http://commons.apache.org/beanutils/v1.8.0-BETA/RELEASE-NOTES.txt">1.8.0
Beta</a>
-release</strong> (see <a href="issue-tracking.html">here</a> for reporting any
issues).
-</p>
+<subsection name="1.8.0">
<p>
-BeanUtils <strong>1.8.0 Beta</strong> is binary compatible with version 1.7.0
+BeanUtils <strong>1.8.0</strong> is binary compatible with version 1.7.0
and contains quite a few
<a href="http://commons.apache.org/beanutils/v1.8.0-BETA/RELEASE-NOTES.txt">
-bug fixes and enhancements</a>. Since it has been nearly three years since the
-last BeanUtils release, it is hoped that this <strong><i>Beta</i></strong>
release
-will facilitate wider testing to ensure that there are no major compatibility
issues
-before the final 1.8.0 release.
+bug fixes and enhancements</a>.
+</p>
+<p>
+BeanUtils 1.8.0 is available to download
+<a href="http://commons.apache.org/downloads/download_beanutils.cgi">here</a>.
</p>
</subsection>
<subsection name="1.7.0">
Modified: commons/proper/beanutils/trunk/xdocs/navigation.xml
URL:
http://svn.apache.org/viewvc/commons/proper/beanutils/trunk/xdocs/navigation.xml?rev=687228&r1=687227&r2=687228&view=diff
==============================================================================
--- commons/proper/beanutils/trunk/xdocs/navigation.xml (original)
+++ commons/proper/beanutils/trunk/xdocs/navigation.xml Tue Aug 19 20:38:24 2008
@@ -44,10 +44,10 @@
<item name="Building" href="/building.html"/>
<item name="Wiki"
href="http://wiki.apache.org/commons/BeanUtils"/>
- <item name="1.8.0-BETA">
- <item name="Release Notes"
href='http://commons.apache.org/beanutils/v1.8.0-BETA/RELEASE-NOTES.txt'/>
- <item name="User Guide"
href="http://commons.apache.org/beanutils/v1.8.0-BETA/apidocs/org/apache/commons/beanutils/package-summary.html#package_description"/>
- <item name="API"
href="http://commons.apache.org/beanutils/v1.8.0-BETA/apidocs/index.html"/>
+ <item name="1.8.0">
+ <item name="Release Notes"
href='http://commons.apache.org/beanutils/v1.8.0/RELEASE-NOTES.txt'/>
+ <item name="User Guide"
href="http://commons.apache.org/beanutils/v1.8.0/apidocs/org/apache/commons/beanutils/package-summary.html#package_description"/>
+ <item name="API"
href="http://commons.apache.org/beanutils/v1.8.0/apidocs/index.html"/>
</item>
<item name='1.7.0 Release'>