You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by ni...@apache.org on 2006/07/11 05:35:57 UTC

svn commit: r420692 - in /jakarta/commons/proper/beanutils/trunk: ./ xdocs/ xdocs/style/

Author: niallp
Date: Mon Jul 10 20:35:56 2006
New Revision: 420692

URL: http://svn.apache.org/viewvc?rev=420692&view=rev
Log:
Various build/site changes:
- remove dependency on commons-build
- update maven build to add missing files from src/binary distros
- update maven build to generate checksums
- de-tab project.xml
- correct archive info regarding previous releases on index page
- Improve Issue Tracking
- Add "Building" page
- Add "Changes Report"
- Add "Downloads" page
- Improve site navigation

Added:
    jakarta/commons/proper/beanutils/trunk/xdocs/building.xml   (with props)
    jakarta/commons/proper/beanutils/trunk/xdocs/changes.xml   (with props)
    jakarta/commons/proper/beanutils/trunk/xdocs/downloads.xml   (with props)
Modified:
    jakarta/commons/proper/beanutils/trunk/maven.xml
    jakarta/commons/proper/beanutils/trunk/project.properties
    jakarta/commons/proper/beanutils/trunk/project.xml
    jakarta/commons/proper/beanutils/trunk/xdocs/cvs-usage.xml
    jakarta/commons/proper/beanutils/trunk/xdocs/index.xml
    jakarta/commons/proper/beanutils/trunk/xdocs/issue-tracking.xml
    jakarta/commons/proper/beanutils/trunk/xdocs/navigation.xml
    jakarta/commons/proper/beanutils/trunk/xdocs/style/project.css

Modified: jakarta/commons/proper/beanutils/trunk/maven.xml
URL: http://svn.apache.org/viewvc/jakarta/commons/proper/beanutils/trunk/maven.xml?rev=420692&r1=420691&r2=420692&view=diff
==============================================================================
--- jakarta/commons/proper/beanutils/trunk/maven.xml (original)
+++ jakarta/commons/proper/beanutils/trunk/maven.xml Mon Jul 10 20:35:56 2006
@@ -1,5 +1,5 @@
 <!--
-   Copyright 2001-2004 The Apache Software Foundation
+   Copyright 2006 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.
@@ -13,24 +13,79 @@
    See the License for the specific language governing permissions and
    limitations under the License.
 -->
-<project default="java:jar"
-  xmlns:j="jelly:core">
 
-  <!-- ================================================================== -->
-  <!-- START : C O M M O N S - B U I L D                                  -->
-  <!-- ================================================================== -->
-  <!-- Required: Look and Feel for documentation within distributions     -->
-  <!-- ================================================================== -->
-  <postGoal name="xdoc:copy-resources">  
-    <copy todir="${basedir}/target/docs/style/" failonerror="false">
-      <fileset dir="${basedir}/../commons-build/xdocs/style">
-      	<include name='**/*'/>
-      	<exclude name='**/CVS/**'/>
-      </fileset>
-    </copy>
-  </postGoal>
-  <!-- ================================================================== -->
-  <!-- END: C O M M O N S - B U I L D                                     -->
-  <!-- ================================================================== -->
+<project default="java:jar"
+  xmlns:ant="jelly:ant"
+  xmlns:j="jelly:core"
+  xmlns:util="jelly:util">
   
+    <!-- ================================================================== -->
+    <!-- Copy into the binary distribution                                  -->
+    <!-- ================================================================== -->
+    <postGoal name="dist:prepare-bin-filesystem">
+
+         <!-- Copy the NOTICE -->
+         <copy todir="${maven.dist.bin.assembly.dir}">
+             <fileset file="${basedir}/NOTICE.txt"/>
+             <fileset file="${basedir}/RELEASE-NOTES.txt"/>
+         </copy>
+
+    </postGoal>
+
+    <!-- ================================================================== -->
+    <!-- Copy into the source distribution                                  -->
+    <!-- ================================================================== -->
+    <postGoal name="dist:prepare-src-filesystem">
+
+         <!-- Copy the NOTICE -->
+         <copy todir="${maven.dist.src.assembly.dir}">
+             <fileset file="${basedir}/NOTICE.txt"/>
+             <fileset file="${basedir}/RELEASE-NOTES.txt"/>
+             <fileset file="${basedir}/build.properties.sample"/>
+         </copy>
+
+         <!-- Copy xdoc files -->
+         <copy todir="${maven.dist.src.assembly.dir}/xdocs">
+             <fileset dir="xdocs"/>
+         </copy>
+
+         <!-- Copy optional files -->
+         <copy todir="${maven.dist.src.assembly.dir}/optional">
+             <fileset dir="optional"/>
+         </copy>
+
+    </postGoal>
+
+    <!-- ================================================================== -->
+    <!-- Create MD5 Check Sums                                              -->
+    <!-- ================================================================== -->
+    <postGoal name="dist">
+
+         <!-- create checksum for jar -->
+         <ant:checksum file="${maven.build.dir}/${maven.final.name}.jar" property="jar.md5"/>
+         <ant:echo message="${jar.md5} *${maven.final.name}.jar" 
+                   file="${maven.build.dir}/${maven.final.name}.jar.md5" />
+
+         <!-- create checksum for binary zip -->
+         <ant:checksum file="${maven.dist.dir}/${maven.final.name}.zip" property="zip.md5"/>
+         <ant:echo message="${zip.md5} *${maven.final.name}.zip" 
+                   file="${maven.dist.dir}/${maven.final.name}.zip.md5" />
+
+         <!-- create checksum for binary tar.gz -->
+         <ant:checksum file="${maven.dist.dir}/${maven.final.name}.tar.gz" property="tar.gz.md5"/>
+         <ant:echo message="${tar.gz.md5} *${maven.final.name}.tar.gz" 
+                   file="${maven.dist.dir}/${maven.final.name}.tar.gz.md5" />
+
+         <!-- create checksum for source zip -->
+         <ant:checksum file="${maven.dist.dir}/${maven.final.name}-src.zip" property="src.zip.md5"/>
+         <ant:echo message="${src.zip.md5} *${maven.final.name}-src.zip" 
+                   file="${maven.dist.dir}/${maven.final.name}-src.zip.md5" />
+
+         <!-- create checksum for source tar.gz -->
+         <ant:checksum file="${maven.dist.dir}/${maven.final.name}-src.tar.gz" property="src.tar.gz.md5"/>
+         <ant:echo message="${src.tar.gz.md5} *${maven.final.name}-src.tar.gz" 
+                   file="${maven.dist.dir}/${maven.final.name}-src.tar.gz.md5" />
+
+    </postGoal>
+
 </project>

Modified: jakarta/commons/proper/beanutils/trunk/project.properties
URL: http://svn.apache.org/viewvc/jakarta/commons/proper/beanutils/trunk/project.properties?rev=420692&r1=420691&r2=420692&view=diff
==============================================================================
--- jakarta/commons/proper/beanutils/trunk/project.properties (original)
+++ jakarta/commons/proper/beanutils/trunk/project.properties Mon Jul 10 20:35:56 2006
@@ -13,7 +13,6 @@
 #   limitations under the License.
 
 # documentation properties
-maven.xdoc.jsl=../commons-build/commons-site.jsl
 maven.xdoc.date=left
 maven.xdoc.version=${pom.currentVersion}
 maven.xdoc.developmentProcessUrl=http://jakarta.apache.org/commons/charter.html
@@ -32,4 +31,5 @@
 
 beanutils.cvs=pserver:anoncvs@cvs.apache.org:/home/cvspublic
 maven.changelog.factory=org.apache.maven.svnlib.SvnChangeLogFactory
+maven.changes.issue.template=%URL%/browse/%ISSUE% 
 

Modified: jakarta/commons/proper/beanutils/trunk/project.xml
URL: http://svn.apache.org/viewvc/jakarta/commons/proper/beanutils/trunk/project.xml?rev=420692&r1=420691&r2=420692&view=diff
==============================================================================
--- jakarta/commons/proper/beanutils/trunk/project.xml (original)
+++ jakarta/commons/proper/beanutils/trunk/project.xml Mon Jul 10 20:35:56 2006
@@ -35,11 +35,11 @@
   </organization>
   
   <licenses>
-	<license>
-    	<name>The Apache Software License, Version 2.0</name>
-    	<url>/LICENSE.txt</url>
-    	<distribution>repo</distribution>
-	</license>
+      <license>
+          <name>The Apache Software License, Version 2.0</name>
+          <url>/LICENSE.txt</url>
+          <distribution>repo</distribution>
+      </license>
   </licenses>
   
   <gumpRepositoryId>jakarta</gumpRepositoryId>
@@ -50,7 +50,7 @@
   
   <repository>
     <connection>scm:svn:http://svn.apache.org/repos/asf/jakarta/commons/proper/${pom.artifactId.substring(8)}/trunk</connection>
-    <url>http://svn.apache.org/repos/asf/jakarta/commons/proper/${pom.artifactId.substring(8)}/trunk</url>
+    <url>http://svn.apache.org/viewvc</url>
   </repository>
   
   <mailingLists>
@@ -239,38 +239,46 @@
   </dependencies>
 
   <build>
-    	<nagEmailAddress>commons-dev@jakarta.apache.org</nagEmailAddress>
-    	<sourceDirectory>src/java</sourceDirectory>
-    	<unitTestSourceDirectory>src/test</unitTestSourceDirectory>
-    	<integrationUnitTestSourceDirectory/>
-    	<aspectSourceDirectory/>
-
-    	<!-- Unit test classes -->
-    	<unitTest>
-            <includes>
-                <include>**/*TestCase.java</include>
-            </includes>
-            <excludes>
-                <!-- This test case is known to fail, and there isn't any proposed fix
-                  -  so we will just exclude it until someone comes up with a solution.
-		  -->
-                <exclude>**/*MemoryTestCase.java</exclude>
-            </excludes>
-            <resources>
-                <resource>
-                    <directory>${pom.build.unitTestSourceDirectory}</directory>
-                    <includes>
-                        <include>**/*.xml</include>
-                    </includes>
-                </resource>
-            </resources>
-   		</unitTest>
-
-  	</build>
+     <nagEmailAddress>commons-dev@jakarta.apache.org</nagEmailAddress>
+     <sourceDirectory>src/java</sourceDirectory>
+     <unitTestSourceDirectory>src/test</unitTestSourceDirectory>
+     <integrationUnitTestSourceDirectory/>
+     <aspectSourceDirectory/>
+     <resources>
+         <resource>
+             <directory>${basedir}</directory>
+             <targetPath>META-INF</targetPath>
+             <includes>
+                 <include>NOTICE.txt</include>
+             </includes>
+         </resource>
+     </resources>
+
+     <!-- Unit test classes -->
+     <unitTest>
+         <includes>
+             <include>**/*TestCase.java</include>
+         </includes>
+         <excludes>
+             <!-- This test case is known to fail, and there isn't any proposed fix
+               -  so we will just exclude it until someone comes up with a solution.
+             -->
+             <exclude>**/*MemoryTestCase.java</exclude>
+         </excludes>
+         <resources>
+             <resource>
+                 <directory>${pom.build.unitTestSourceDirectory}</directory>
+                 <includes>
+                     <include>**/*.xml</include>
+                 </includes>
+             </resource>
+         </resources>
+     </unitTest>
+  </build>
 
   <reports>
-  	<report>maven-changelog-plugin</report>
-   	<report>maven-changes-plugin</report>
+    <report>maven-changelog-plugin</report>
+    <report>maven-changes-plugin</report>
     <report>maven-developer-activity-plugin</report>
     <report>maven-file-activity-plugin</report>
     <report>maven-javadoc-plugin</report>

Added: jakarta/commons/proper/beanutils/trunk/xdocs/building.xml
URL: http://svn.apache.org/viewvc/jakarta/commons/proper/beanutils/trunk/xdocs/building.xml?rev=420692&view=auto
==============================================================================
--- jakarta/commons/proper/beanutils/trunk/xdocs/building.xml (added)
+++ jakarta/commons/proper/beanutils/trunk/xdocs/building.xml Mon Jul 10 20:35:56 2006
@@ -0,0 +1,61 @@
+<?xml version="1.0"?>
+<!--
+Copyright 2006 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>Building</title>
+  <author email="commons-dev@jakarta.apache.org">Commons Documentation Team</author>
+ </properties>
+<body>
+<!-- ================================================== -->
+<section name="Overview">
+<p>
+  Commons BeanUtils uses <a href="http://maven.apache.org">Maven</a> or
+  <a href="http://ant.apache.org">Ant</a> as a build system.
+</p>
+</section>
+<!-- ================================================== -->
+<section name="Maven Goals">
+  <p>
+    To build a jar file, change into BeanUtils's root directory and run 
+    <strong><code>maven jar</code></strong>.
+    The result will be in the "target" subdirectory.
+  </p>
+  <p>
+    To build the Javadocs, run <strong><code>maven javadoc</code></strong>.
+    The result will be in "target/docs/apidocs".
+  </p>
+  <p>
+    To build the full website, run <strong><code>maven site</code></strong>.
+
+    The result will be in "target/docs".
+  </p>
+  <p>
+	Further details can be found in the
+	<a href="http://jakarta.apache.org/commons/building.html">commons build instructions</a>.
+  </p>
+</section>
+<!-- ================================================== -->
+<section name="Ant Goals">
+  <p>
+    To build a jar file and the javadocs, change into Validator's root directory
+    and run <strong><code>ant dist</code></strong>.
+    The result will be in the "dist" subdirectory.
+  </p>
+</section>
+<!-- ================================================== -->
+</body>
+</document>

Propchange: jakarta/commons/proper/beanutils/trunk/xdocs/building.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: jakarta/commons/proper/beanutils/trunk/xdocs/building.xml
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Added: jakarta/commons/proper/beanutils/trunk/xdocs/changes.xml
URL: http://svn.apache.org/viewvc/jakarta/commons/proper/beanutils/trunk/xdocs/changes.xml?rev=420692&view=auto
==============================================================================
--- jakarta/commons/proper/beanutils/trunk/xdocs/changes.xml (added)
+++ jakarta/commons/proper/beanutils/trunk/xdocs/changes.xml Mon Jul 10 20:35:56 2006
@@ -0,0 +1,225 @@
+<?xml version="1.0"?>
+<!--
+   Copyright 2006 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.
+-->
+
+<!--
+This file is used by the maven-changes-plugin to generate the release notes.
+Useful ways of finding items to add to this file are:
+
+1.  Add items when you fix a bug or add a feature (this makes the 
+release process easy :-).
+
+2.  Do a Jira search for tickets closed since the previous release.
+
+3.  Use the report generated by the maven-changelog-plugin to see all
+SVN commits.  Set the project.properties' maven.changelog.range 
+property to the number of days since the last release.
+
+
+The <action> type attribute can be add,update,fix,remove.
+-->
+
+<document>
+  <properties>
+    <title>Release Notes</title>
+  </properties>
+  <body>
+
+    <release version="1.7.1" date="in SVN">
+      <action dev="niallp" type="fix" issue="BEANUTILS-54" due-to="Pascal Grange">
+         Add Implementation-Vendor-Id entry to jar's manifest.
+      </action>
+      <action dev="niallp" type="fix" issue="BEANUTILS-133" due-to="Masoud Omidvar">
+         LazyDynabean JavaDoc corrections.
+      </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.
+      </action>
+      <action dev="niallp" type="fix" issue="BEANUTILS-69" due-to="Chris Audley">
+         MappedPropertyDescriptor doesn't recognize boolean property accessor.
+      </action>
+      <action dev="niallp" type="fix" issue="BEANUTILS-17">
+         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-163">
+         Add test for MappedPropertyDescriptor with different types on get/set methods.
+      </action>
+      <action dev="niallp" type="fix" issue="BEANUTILS-23" due-to="Aslak Hellesoy">
+         Misleading error message in ConvertingWrapDynaBean.
+      </action>
+      <action dev="niallp" type="fix" issue="BEANUTILS-110" due-to="Etienne Bernard">
+         BeanUtilsBean.getArrayProperty() does not use ConvertUtils.
+      </action>
+      <action dev="niallp" type="fix" issue="BEANUTILS-217" due-to="Carlos Sanchez">
+         Improvements to maven build.
+      </action>
+      <action dev="niallp" type="add" due-to="Vic Cekvenich">
+         Add lazyDynaList.
+      </action>
+      <action dev="niallp" type="fix">
+         Make WrapDynaBean Serializable.
+      </action>
+      <action dev="niallp" type="fix" issue="BEANUTILS-24" due-to="Roi Ares">
+         LazyDynaBean: don't try and instantiate properties of type Object.class.
+      </action>
+      <action dev="niallp" type="fix" issue="BEANUTILS-6" due-to="Sam Ruby">
+         Replace copied code.
+      </action>
+      <action dev="skitching" type="fix">
+         WrapDynaClass: Added comment re potential memory leak, and safety when using
+         shared classloader
+      </action>
+      <action dev="skitching" type="fix">
+         MappedPropertyDescriptor: Add comments re: * use of static variable safe in shared
+         classloader * memory leak possible on webapp undeploy.
+      </action>
+      <action dev="skitching" type="fix">
+         Replace use of static Log objects with instance or local variables. It isn't safe
+         to use static Log objects in code that might be deployed via a shared classloader
+         as they will bind to the Log object from the context classloader in use when the
+         first use happens.
+      </action>
+      <action dev="skitching" type="fix" issue="BEANUTILS-162">
+         Create new methods getPropertyOfMapBean and setPropertyOfMapBean that the existing
+         setNestedProperty and getNestedProperty methods now call when they discover the bean
+         they are accessing implements Map. This makes it much easier for users to subclass
+         and customise this behaviour of PropertyUtilsBean, eg in order to restore pre-1.5 behaviour.
+         This patch also causes an exception to be thrown when the propertyName passed to 
+         getPropertyOfMapBean or setPropertyOfMapBean has MAPPED_DELIM or INDEXED_DELIM chars in
+         it. This never worked as expected before (the whole string was treated literally as the
+         propertyName), so throwing an exception here should not break any existing code. It should
+         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.
+      </action>
+      <action dev="niallp" type="fix" issue="BEANUTILS-78" due-to="Stefan Lotscher">
+         DecimalLocaleConverter and subClasses never throw a ConversionException.
+      </action>
+      <action dev="niallp" type="fix" issue="BEANUTILS-36" due-to="Jack">
+         WrapDynaBeanTestCase failing with jikes/kaffe because of static List in TestBean.
+      </action>
+      <action dev="scolebourne" type="fix" due-to="Dimiter Dimitrov">
+         BeanMap: Fix internal variable to not include non-existant write methods.
+         Fix for <a href="http://issues.apache.org/jira/browse/COLLECTIONS-22">COLLECTIONS-22</a>
+         ported from Commons Collections.
+      </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> 
+      </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> 
+      </action>
+      <action dev="skitching" type="update">
+         AbstractArrayConverter: provide ability to pass special NO_DEFAULT object as the
+         "defaultValue" constructor parameter.
+      </action>
+      <action dev="rdonkin" type="fix" issue="BEANUTILS-158">
+         Added warning about describe behaviour to the javadocs.
+      </action>
+      <action dev="niallp" type="fix" issue="BEANUTILS-97">
+         Problems on indexed property with JDK 1.4.
+      </action>
+      <action dev="rdonkin" type="update" due-to="Steve Cohen">
+         Change MethodUtils to make getMatchingAccessibleMethod() method selection more
+         rational.
+      </action>
+    </release>
+
+    <release version="1.7.0" date="2004-08-02">
+      <action type="update">
+         See <a href="http://jakarta.apache.org/commons/beanutils/commons-beanutils-1.7.0/RELEASE-NOTES.txt">
+         1.7.0 Release Notes</a>
+      </action>
+    </release>
+
+    <release version="1.6.1" date="2003-02-18">
+      <action type="update">
+         See <a href="http://jakarta.apache.org/commons/beanutils/commons-beanutils-1.6.1/RELEASE-NOTES.txt">
+         1.6.1 Release Notes</a>
+      </action>
+    </release>
+
+    <release version="1.6" date="2003-01-21">
+      <action type="update">
+         See <a href="http://jakarta.apache.org/commons/beanutils/commons-beanutils-1.6/RELEASE-NOTES.txt">
+         1.6 Release Notes</a>
+      </action>
+    </release>
+
+    <release version="1.5" date="2002-10-23">
+      <action type="update">
+         See <a href="http://jakarta.apache.org/commons/beanutils/commons-beanutils-1.5/RELEASE-NOTES.txt">
+         1.5 Release Notes</a>
+      </action>
+    </release>
+
+    <release version="1.4.1" date="2002-08-28">
+      <action type="fix">
+         See <a href="http://jakarta.apache.org/commons/beanutils/commons-beanutils-1.4.1/RELEASE-NOTES.txt">
+         1.4.1 Release Notes</a>
+      </action>
+    </release>
+
+    <release version="1.4" date="2002-08-13">
+      <action type="update">
+         See <a href="http://jakarta.apache.org/commons/beanutils/commons-beanutils-1.4/RELEASE-NOTES.txt">
+         1.4 Release Notes</a>
+      </action>
+    </release>
+
+    <release version="1.3" date="2002-04-29">
+      <action type="update">
+         See <a href="http://jakarta.apache.org/commons/beanutils/commons-beanutils-1.3/RELEASE-NOTES.txt">
+         1.3 Release Notes</a>
+      </action>
+    </release>
+
+    <release version="1.2" date="2001-12-24">
+      <action type="update">
+         See <a href="http://jakarta.apache.org/commons/beanutils/commons-beanutils-1.2/RELEASE-NOTES.txt">
+         1.2 Release Notes</a>
+      </action>
+    </release>
+
+    <release version="1.1" date="2001-09-22">
+      <action type="update">Version 1.1</action>
+    </release>
+
+    <release version="1.0" date="2001-07-14" description="Initial Release">
+      <action type="add">Initial Release</action>
+    </release>
+    
+  </body>
+</document>

Propchange: jakarta/commons/proper/beanutils/trunk/xdocs/changes.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: jakarta/commons/proper/beanutils/trunk/xdocs/changes.xml
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Modified: jakarta/commons/proper/beanutils/trunk/xdocs/cvs-usage.xml
URL: http://svn.apache.org/viewvc/jakarta/commons/proper/beanutils/trunk/xdocs/cvs-usage.xml?rev=420692&r1=420691&r2=420692&view=diff
==============================================================================
--- jakarta/commons/proper/beanutils/trunk/xdocs/cvs-usage.xml (original)
+++ jakarta/commons/proper/beanutils/trunk/xdocs/cvs-usage.xml Mon Jul 10 20:35:56 2006
@@ -35,7 +35,7 @@
 </p>
 <p>
   The best way to view the repository is via the
-  <a href="http://svn.apache.org/viewcvs.cgi/jakarta/commons/proper/beanutils/trunk/">subversion viewer</a>.
+  <a href="http://svn.apache.org/viewvc/jakarta/commons/proper/beanutils/trunk/">subversion viewer</a>.
 </p>
 <p>
   The alternative is to use the

Added: jakarta/commons/proper/beanutils/trunk/xdocs/downloads.xml
URL: http://svn.apache.org/viewvc/jakarta/commons/proper/beanutils/trunk/xdocs/downloads.xml?rev=420692&view=auto
==============================================================================
--- jakarta/commons/proper/beanutils/trunk/xdocs/downloads.xml (added)
+++ jakarta/commons/proper/beanutils/trunk/xdocs/downloads.xml Mon Jul 10 20:35:56 2006
@@ -0,0 +1,56 @@
+<?xml version="1.0"?>
+<!--
+   Copyright 2006 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>Downloads</title>
+   </properties>
+
+   <body>
+      <section name="Download BeanUtils">
+         
+         <subsection name="Releases">
+            <p>Download the <a href="http://jakarta.apache.org/site/downloads/downloads_commons-beanutils.cgi">Latest Release</a>
+               of Commons BeanUtils.
+            </p>
+            <p>For details of whats new in each version see the <a href="changes-report.html">Release History</a>.</p>
+         </subsection>
+
+         <subsection name="Nightly Builds">
+            <p>
+               <a href="http://people.apache.org/builds/jakarta-commons/nightly/commons-beanutils/">Nightly Builds</a>
+               are built once a day from the current SVN HEAD. This is (nearly) the latest code and so should
+               be treated with caution.
+            </p>
+         </subsection>
+
+         <subsection name="Archived Releases">
+            <p>
+               Older releases are retained by the Apache Software Foundation but are
+               moved into a
+               <a href="http://archive.apache.org/dist/jakarta/commons/beanutils/">
+             special archive area</a>.
+            </p>
+            <p>
+               BeanUtils <b>version 1.5 and earlier</b> are available
+               <a href="http://archive.apache.org/dist/jakarta/commons/beanutils/old/">here</a>.
+            </p>
+         </subsection>
+
+      </section>
+
+   </body>
+</document>

Propchange: jakarta/commons/proper/beanutils/trunk/xdocs/downloads.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: jakarta/commons/proper/beanutils/trunk/xdocs/downloads.xml
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Modified: jakarta/commons/proper/beanutils/trunk/xdocs/index.xml
URL: http://svn.apache.org/viewvc/jakarta/commons/proper/beanutils/trunk/xdocs/index.xml?rev=420692&r1=420691&r2=420692&view=diff
==============================================================================
--- jakarta/commons/proper/beanutils/trunk/xdocs/index.xml (original)
+++ jakarta/commons/proper/beanutils/trunk/xdocs/index.xml Mon Jul 10 20:35:56 2006
@@ -107,16 +107,14 @@
 <section name="Releases">
     <subsection name='Mirrored Releases'>
 <p>
-Releases after 1.5 should be downloaded from a mirror. Please remember to verify the 
+Releases after 1.7.0 should be downloaded from a mirror. Please remember to verify the 
 sigature of the release from the 
 <a href='http://www.apache.org/dist/jakarta/commons/beanutils/'>main apache site</a>
 when downloading from a mirror.
 </p>
 <p>
-    Binary releases are available 
-       <a href="http://jakarta.apache.org/site/binindex.cgi">here</a>.
-    Source releases are available
-       <a href="http://jakarta.apache.org/site/sourceindex.cgi">here</a>
+    Binary and Source releases are available 
+    <a href="http://jakarta.apache.org/site/downloads/downloads_commons-beanutils.cgi">here</a>.
 </p>
 </subsection>
 <subsection name='1.7.x Releases (Mirrored)'>
@@ -146,23 +144,22 @@
 commons collections 3.
 </p>
 </subsection>
-<subsection name='1.6.x Releases (Mirrored)'>
-<ul>
-       <li>Version 1.6.1 (latest) - 18 Feb 2003</li>
-       <li>Version 1.6 - 21 Jan 2003</li>
-</ul>
-    </subsection>
     <subsection name='Older Releases (Not Mirrored)'>
     <p>
     <ul>
-    <li><a href="http://jakarta.apache.org/builds/jakarta-commons/release/commons-beanutils/v1.5/">Version 1.5 </a> - 23 Oct 2002</li>
-    <li><a href="http://jakarta.apache.org/builds/jakarta-commons/release/commons-beanutils/v1.4.1/">Version 1.4.1</a> - 28 Aug 2002</li>
-    <li><a href="http://jakarta.apache.org/builds/jakarta-commons/release/commons-beanutils/v1.4/">Version 1.4</a> - 13 Aug 2002
-</li>
-    <li><a href="http://jakarta.apache.org/builds/jakarta-commons/release/commons-beanutils/v1.3/">Version 1.3</a> - 29 Apr 2002</li>
-    <li><a href="http://jakarta.apache.org/builds/jakarta-commons/release/commons-beanutils/v1.2/">Version 1.2</a> - 24 Dec 2001</li>
-    <li><a href="http://jakarta.apache.org/builds/jakarta-commons/release/commons-beanutils/v1.1/">Version 1.1</a> - 22 Sep 2001</li>
-    <li><a href="http://jakarta.apache.org/builds/jakarta-commons/release/commons-beanutils/v1.0/">Version 1.0</a> - 14 July 2001</li>
+    <li>Version 1.6.1 - 18 Feb 2003 
+        <a href="http://archive.apache.org/dist/jakarta/commons/beanutils/binaries/">binary</a> and
+        <a href="http://archive.apache.org/dist/jakarta/commons/beanutils/source/">source</a></li>
+    <li>Version 1.6 - 21 Jan 2003 
+        <a href="http://archive.apache.org/dist/jakarta/commons/beanutils/binaries/">binary</a> and
+        <a href="http://archive.apache.org/dist/jakarta/commons/beanutils/source/">source</a></li>
+    <li><a href="http://archive.apache.org/dist/jakarta/commons/beanutils/old/v1.5/">Version 1.5 </a> - 23 Oct 2002</li>
+    <li><a href="http://archive.apache.org/dist/jakarta/commons/beanutils/old/v1.4.1/">Version 1.4.1</a> - 28 Aug 2002</li>
+    <li><a href="http://archive.apache.org/dist/jakarta/commons/beanutils/old/v1.4/">Version 1.4</a> - 13 Aug 2002</li>
+    <li><a href="http://archive.apache.org/dist/jakarta/commons/beanutils/old/v1.3/">Version 1.3</a> - 29 Apr 2002</li>
+    <li><a href="http://archive.apache.org/dist/jakarta/commons/beanutils/old/v1.2/">Version 1.2</a> - 24 Dec 2001</li>
+    <li><a href="http://archive.apache.org/dist/jakarta/commons/beanutils/old/v1.1/">Version 1.1</a> - 22 Sep 2001</li>
+    <li><a href="http://archive.apache.org/dist/jakarta/commons/beanutils/old/v1.0/">Version 1.0</a> - 14 July 2001</li>
     </ul>
     </p>
     </subsection>
@@ -179,9 +176,7 @@
     </p>
 
     <p>
-    Issues may be reported via <a href="issue-tracking.html">ASF Bugzilla</a>.
-    Please remember that Bugzilla is shared between all commons components,
-    so prefix your issue by [beanutils].
+    Issues may be reported via <a href="issue-tracking.html">ASF JIRA</a>.
     </p>
     </section>
 

Modified: jakarta/commons/proper/beanutils/trunk/xdocs/issue-tracking.xml
URL: http://svn.apache.org/viewvc/jakarta/commons/proper/beanutils/trunk/xdocs/issue-tracking.xml?rev=420692&r1=420691&r2=420692&view=diff
==============================================================================
--- jakarta/commons/proper/beanutils/trunk/xdocs/issue-tracking.xml (original)
+++ jakarta/commons/proper/beanutils/trunk/xdocs/issue-tracking.xml Mon Jul 10 20:35:56 2006
@@ -23,7 +23,8 @@
 <!-- ================================================== -->
 <section name="Issue tracking">
 <p>
-  Commons BeanUtils uses <a href="http://issues.apache.org/jira/browse/BEANUTILS">ASF Jira</a> for tracking issues.
+  Commons BeanUtils uses <a href="http://issues.apache.org/jira/">ASF Jira</a> for for tracking issues.
+  See the <a href="http://issues.apache.org/jira/browse/BEANUTILS">BeanUtils's Jira project page</a>.
 </p>
 <p>
   To use Jira you may need to <a href="http://issues.apache.org/jira/secure/Signup!default.jspa">create an account</a>
@@ -39,7 +40,9 @@
   If you find your issue listed then please add a comment with your details.</li>
   <li><a href="http://mail-archives.apache.org/mod_mbox/jakarta-commons-dev/">Search the mailing list archive</a>.
   You may find your issue or idea has already been discussed.</li>
-  <li><a href="http://issues.apache.org/jira/browse/BEANUTILS">Submit a bug report or enhancement request</a>.</li>
+  <li>Decide if your issue is a bug or an enhancement.</li>
+  <li>Submit either a <a href="http://issues.apache.org/jira/secure/CreateIssueDetails!init.jspa?pid=12310460&amp;issuetype=1&amp;priority=4&amp;assignee=-1">bug report</a>
+  or <a href="http://issues.apache.org/jira/secure/CreateIssueDetails!init.jspa?pid=12310460&amp;issuetype=4&amp;priority=4&amp;assignee=-1">enhancement request</a>.</li>
   </ol>
 </p>
 <p>

Modified: jakarta/commons/proper/beanutils/trunk/xdocs/navigation.xml
URL: http://svn.apache.org/viewvc/jakarta/commons/proper/beanutils/trunk/xdocs/navigation.xml?rev=420692&r1=420691&r2=420692&view=diff
==============================================================================
--- jakarta/commons/proper/beanutils/trunk/xdocs/navigation.xml (original)
+++ jakarta/commons/proper/beanutils/trunk/xdocs/navigation.xml Mon Jul 10 20:35:56 2006
@@ -14,7 +14,7 @@
    See the License for the specific language governing permissions and
    limitations under the License.
 -->
-<!DOCTYPE org.apache.commons.menus SYSTEM '../../commons-build/menus/menus.dtd'>
+<!DOCTYPE org.apache.commons.menus SYSTEM 'http://jakarta.apache.org/commons/build/maven-build.dtd'>
 <project name="BeanUtils">
 
   <title>BeanUtils</title>
@@ -24,20 +24,15 @@
 
   <body>
     <links>
-      <item name="Jakarta"                   
-            href="http://jakarta.apache.org"/>
-      <item name="Jakarta Commons"                   
-            href="http://jakarta.apache.org/commons/"/>
+      <item name="Apache"  href="http://www.apache.org"/>
+      <item name="Jakarta" href="http://jakarta.apache.org"/>
+      <item name="Commons" href="http://jakarta.apache.org/commons/"/>
     </links>
 
-    <menu name="Commons BeanUtils">
+    <menu name="BeanUtils">
       <item name="Overview" href="/index.html"/>   
-      <item name="Mailing lists" href="/mail-lists.html"/>
-      <item name="Team" href="/team-list.html"/>
-      <!--item name="Tasks" href="/tasks.html"/-->
-      <item name="Source Repository" href="cvs-usage.html"/>
+      <item name="Download"                href="/downloads.html"/>
       <item name="User Guide (SVN latest)" href="apidocs/org/apache/commons/beanutils/package-summary.html#package_description"/>
-      <item name="Javadoc (SVN latest)" href="apidocs/index.html"/>
       <item name='1.7.0 Release'>
             <item   name='User Guide'
                     href='http://jakarta.apache.org/commons/beanutils/commons-beanutils-1.7.0/docs/api/org/apache/commons/beanutils/package-summary.html#package_description'/>
@@ -56,13 +51,23 @@
             <item   name='Release Notes'
                     href='http://jakarta.apache.org/commons/beanutils/commons-beanutils-1.6.1/RELEASE-NOTES.txt'/>
       </item>
+      <item name='Modules'>
+            <item name="Bean Collections" href="bean-collections/index.html"/>
+      </item>
+      <item name="Wiki" href="http://wiki.apache.org/jakarta-commons/BeanUtils"/>
     </menu>
     
-    <menu name='Modules'>
-        <item name="Bean Collections" href="bean-collections/index.html"/>
+    <menu name="Development">
+      <item name="History"                 href="/changes-report.html"/>
+      <item name="Building"                href="/building.html"/>
+      <item name="Mailing Lists"           href="/mail-lists.html"/>
+      <item name="Issue Tracking"          href="/issue-tracking.html"/>
+      <item name="Team"                    href="/team-list.html"/>
+      <item name="Source Repository"       href="/cvs-usage.html"/>
+      <item name="Javadoc (latest)"        href="http://jakarta.apache.org/commons/chain/apidocs/"/>
     </menu>
-    
-    &common-menus;
+
+    &commons;
 
   </body>
 </project>

Modified: jakarta/commons/proper/beanutils/trunk/xdocs/style/project.css
URL: http://svn.apache.org/viewvc/jakarta/commons/proper/beanutils/trunk/xdocs/style/project.css?rev=420692&r1=420691&r2=420692&view=diff
==============================================================================
--- jakarta/commons/proper/beanutils/trunk/xdocs/style/project.css (original)
+++ jakarta/commons/proper/beanutils/trunk/xdocs/style/project.css Mon Jul 10 20:35:56 2006
@@ -1,5 +1 @@
-#banner, #banner td { 
- background: #fff;
- color: #000;
-}
-
+@import url("http://jakarta.apache.org/style/jakarta-maven.css");



---------------------------------------------------------------------
To unsubscribe, e-mail: commons-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: commons-dev-help@jakarta.apache.org