Author: bayard
Date: Sun Sep 17 01:00:26 2006
New Revision: 447022
URL: http://svn.apache.org/viewvc?view=rev&rev=447022
Log:
Improvements to the documentation for the 2.2 release. Added in the upgrade
page (empty until the release notes are complete), changed users/developers
guide to user/developer guide, and added the text package to the user guide.
Added:
jakarta/commons/proper/lang/trunk/xdocs/upgradeto2_2.xml (with props)
Modified:
jakarta/commons/proper/lang/trunk/xdocs/building.xml
jakarta/commons/proper/lang/trunk/xdocs/developerguide.xml
jakarta/commons/proper/lang/trunk/xdocs/navigation.xml
jakarta/commons/proper/lang/trunk/xdocs/userguide.xml
Modified: jakarta/commons/proper/lang/trunk/xdocs/building.xml
URL:
http://svn.apache.org/viewvc/jakarta/commons/proper/lang/trunk/xdocs/building.xml?view=diff&rev=447022&r1=447021&r2=447022
==============================================================================
--- jakarta/commons/proper/lang/trunk/xdocs/building.xml (original)
+++ jakarta/commons/proper/lang/trunk/xdocs/building.xml Sun Sep 17 01:00:26
2006
@@ -29,6 +29,8 @@
</p>
<p>
You may also be interested in the upgrade notes:<br />
+ <br />
+ Upgrade <a href="upgradeto2_2.html">from 2.1 to 2.2</a><br />
Upgrade <a href="upgradeto2_1.html">from 2.0 to 2.1</a><br />
Upgrade <a href="upgradeto2_0.html">from 1.0 to 2.0</a><br />
</p>
Modified: jakarta/commons/proper/lang/trunk/xdocs/developerguide.xml
URL:
http://svn.apache.org/viewvc/jakarta/commons/proper/lang/trunk/xdocs/developerguide.xml?view=diff&rev=447022&r1=447021&r2=447022
==============================================================================
--- jakarta/commons/proper/lang/trunk/xdocs/developerguide.xml (original)
+++ jakarta/commons/proper/lang/trunk/xdocs/developerguide.xml Sun Sep 17
01:00:26 2006
@@ -20,14 +20,15 @@
</properties>
<body>
+<!-- $Id$ -->
-<section name='Developers guide for Jakarta Commons "Lang"'>
+<section name='Developer guide for Jakarta Commons "Lang"'>
<div align="center">
<h1>The Jakarta Commons <em>Lang</em> Package</h1>
<h2>Developers Guide</h2>
-$Id$<br />
+<br />
<a href="#Introduction">[Introduction]</a>
<a href="#PackageStructure">[Package Structure]</a>
<a href="#UtilityClasses">[Utility Classes]</a>
@@ -41,7 +42,7 @@
<h3>1. INTRODUCTION</h3>
<p>The <em>Lang</em> package contains a set of Java classes that extend
-the basic JDK classes. This developers guide seeks to set
+the basic JDK classes. This developer guide seeks to set
out rules for the naming of classes and methods within the package. The purpose
of this, as with all naming standards, is to improve the coherency and
consistency of the whole API.</p>
Modified: jakarta/commons/proper/lang/trunk/xdocs/navigation.xml
URL:
http://svn.apache.org/viewvc/jakarta/commons/proper/lang/trunk/xdocs/navigation.xml?view=diff&rev=447022&r1=447021&r2=447022
==============================================================================
--- jakarta/commons/proper/lang/trunk/xdocs/navigation.xml (original)
+++ jakarta/commons/proper/lang/trunk/xdocs/navigation.xml Sun Sep 17 01:00:26
2006
@@ -28,7 +28,7 @@
<menu name="Commons Lang">
<item name="Overview" href="/index.html"/>
<item name="Download"
href="http://jakarta.apache.org/site/downloads/downloads_commons-lang.cgi"/>
- <item name="Users guide" href="/userguide.html"/>
+ <item name="User guide" href="/userguide.html"/>
<item name="Javadoc (2.2 release)" href="api-release/index.html"/>
</menu>
@@ -38,7 +38,7 @@
<item name="Team" href="/team-list.html"/>
<item name="Tasks" href="/tasks.html"/>
<item name="Proposal" href="/proposal.html"/>
- <item name="Developers guide" href="/developerguide.html"/>
+ <item name="Developer guide" href="/developerguide.html"/>
<item name="SVN repository"
href="http://svn.apache.org/viewcvs.cgi/jakarta/commons/proper/lang/trunk/"/>
<item name="Javadoc (SVN latest)" href="apidocs/index.html"/>
</menu>
Added: jakarta/commons/proper/lang/trunk/xdocs/upgradeto2_2.xml
URL:
http://svn.apache.org/viewvc/jakarta/commons/proper/lang/trunk/xdocs/upgradeto2_2.xml?view=auto&rev=447022
==============================================================================
--- jakarta/commons/proper/lang/trunk/xdocs/upgradeto2_2.xml (added)
+++ jakarta/commons/proper/lang/trunk/xdocs/upgradeto2_2.xml Sun Sep 17
01:00:26 2006
@@ -0,0 +1,41 @@
+<?xml version="1.0"?>
+<!--
+Licensed to the Apache Software Foundation (ASF) under one or more
+contributor license agreements. See the NOTICE file distributed with
+this work for additional information regarding copyright ownership.
+The ASF licenses this file to You 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>Upgrade from 2.1 to 2.2</title>
+ <author email="[email protected]">Commons Documentation
Team</author>
+ </properties>
+<body>
+
+<section name="Upgrade">
+<p>
+These are the release notes and advice for upgrading Commons-Lang from
+version 2.1 to version 2.2.
+<source>
+INTRODUCTION:
+
+This document contains the release notes for the 2.2 version of Apache Jakarta
Commons Lang.
+Commons Lang is a set of utility functions and reusable components that
+should be of use in any Java environment.
+
+</source>
+</p>
+</section>
+
+</body>
+</document>
Propchange: jakarta/commons/proper/lang/trunk/xdocs/upgradeto2_2.xml
------------------------------------------------------------------------------
svn:eol-style = native
Modified: jakarta/commons/proper/lang/trunk/xdocs/userguide.xml
URL:
http://svn.apache.org/viewvc/jakarta/commons/proper/lang/trunk/xdocs/userguide.xml?view=diff&rev=447022&r1=447021&r2=447022
==============================================================================
--- jakarta/commons/proper/lang/trunk/xdocs/userguide.xml (original)
+++ jakarta/commons/proper/lang/trunk/xdocs/userguide.xml Sun Sep 17 01:00:26
2006
@@ -19,17 +19,18 @@
<document>
<properties>
- <title>Commons Lang - Users guide</title>
+ <title>Commons Lang - User guide</title>
<author email="[email protected]">Commons Documentation
Team</author>
</properties>
<body>
+ <!-- $Id$ -->
- <section name='Users guide for Jakarta Commons "Lang"'>
+ <section name='User guide for Jakarta Commons "Lang"'>
<div align="center">
<h1>The Jakarta Commons <em>Lang</em> Package</h1>
<h2>Users Guide</h2>
-$Id$<br />
+ <br />
<a href="#Description">[Description]</a>
<a href="#lang.*">[lang.*]</a>
<a href="#lang.builder.*">[lang.builder.*]</a>
@@ -37,6 +38,7 @@
<a href="#lang.exception.*">[lang.exception.*]</a>
<a href="#lang.math.*">[lang.math.*]</a>
<a href="#lang.mutable.*">[lang.mutable.*]</a>
+ <a href="#lang.text.*">[lang.text.*]</a>
<a href="#lang.time.*">[lang.time.*]</a>
<br /><br />
</div>
@@ -208,6 +210,19 @@
</p>
</section>
+ <a name="lang.text.*"></a>
+ <section name="lang.text.*">
+ <!--
+ CompositeFormat
+ StrLookup
+ StrSubstitutor
+ StrBuilder
+ StrMatcher
+ StrTokenizer
+ -->
+ <p>The text package was added in Lang 2.2. </p>
+ </section>
+
<a name="lang.time.*"></a>
<section name="lang.time.*">
<!--
@@ -219,18 +234,6 @@
-->
<p>Lang 2.0 saw the arrival of a time package. It contains some basic
utilities for manipulating time (a delorean, police box and grandfather
clock?). These include a StopWatch for simple performance measurements and an
optimised FastDateFormat class. </p>
<p>New in Lang 2.1 is the DurationFormatUtils class, which provides
various methods for formatting durations. </p>
- </section>
-
- <section name="lang.text.*">
- <!--
- CompositeFormat
- StrLookup
- StrSubstitutor
- StrBuilder
- StrMatcher
- StrTokenizer
- -->
- <p>The text package was added in Lang 2.2. </p>
</section>
</body>
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]