You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by gg...@apache.org on 2003/11/08 02:52:25 UTC

cvs commit: jakarta-commons/codec/xdocs index.xml

ggregory    2003/11/07 17:52:25

  Modified:    codec/src/java/org/apache/commons/codec/net URLCodec.java
               codec    project.xml RELEASE-NOTES.txt default.properties
               codec/xdocs index.xml
  Log:
  Prep for version 1.2-rc1
  
  Revision  Changes    Path
  1.10      +2 -1      jakarta-commons/codec/src/java/org/apache/commons/codec/net/URLCodec.java
  
  Index: URLCodec.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/codec/src/java/org/apache/commons/codec/net/URLCodec.java,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- URLCodec.java	13 Oct 2003 16:49:24 -0000	1.9
  +++ URLCodec.java	8 Nov 2003 01:52:25 -0000	1.10
  @@ -86,6 +86,7 @@
    * 
    * @author <a href="mailto:oleg@ural.ru">Oleg Kalnichevski</a>
    * @author <a href="mailto:ggregory@seagullsw.com">Gary Gregory</a>
  + * @since 1.2
    * @version $Id$
    */
   
  
  
  
  1.21      +6 -1      jakarta-commons/codec/project.xml
  
  Index: project.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/codec/project.xml,v
  retrieving revision 1.20
  retrieving revision 1.21
  diff -u -r1.20 -r1.21
  --- project.xml	3 Nov 2003 19:21:24 -0000	1.20
  +++ project.xml	8 Nov 2003 01:52:25 -0000	1.21
  @@ -3,7 +3,7 @@
       <extend>../project.xml</extend>
       <name>Codec</name>
       <id>commons-codec</id>
  -    <currentVersion>1.2-dev</currentVersion>
  +    <currentVersion>1.2-rc1</currentVersion>
       <inceptionYear>2002</inceptionYear>
       <shortDescription>
      A collection of simple and common encoders and decoders
  @@ -24,6 +24,11 @@
               <id>1.1</id>
               <name>1.1</name>
               <tag>CODEC_1_1</tag>
  +        </version>
  +        <version>
  +            <id>1.2-rc1</id>
  +            <name>1.2-rc1</name>
  +            <tag>CODEC_1_2_RC1</tag>
           </version>
       </versions>
       <branches>
  
  
  
  1.9       +11 -5     jakarta-commons/codec/RELEASE-NOTES.txt
  
  Index: RELEASE-NOTES.txt
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/codec/RELEASE-NOTES.txt,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- RELEASE-NOTES.txt	7 Nov 2003 00:14:14 -0000	1.8
  +++ RELEASE-NOTES.txt	8 Nov 2003 01:52:25 -0000	1.9
  @@ -1,7 +1,7 @@
   $Id$
   
   			Commons Codec Package
  -			    Version 1.2
  +			    Version 1.2 RC1
   			    Release Notes
   
   
  @@ -33,6 +33,12 @@
   * Fix for Bug 24360: Hex.decode(Object) throws a ClassCastException 
     when a String argument is passed in.
     
  -* Fix for Bug 24471: Soundex: The HW rule is not applied; hyphens and apostrophes
  -  are not ignored.
  -
  +* Fix for Bug 24471: Soundex: The HW rule is not applied; hyphens and 
  +  apostrophes are not ignored.
  +  
  +* Fix for Bug 24484: Soundex.setMaxLength causes bugs and is not needed.
  +  Calling Soundex.setMaxLength() with a value of 2 or less causes the wrong
  +  answer to be returned. Since the encoding returned by Soundex is always
  +  of length 4 by definition (we do not use the '-' in as a letter-nnn separator) 
  +  the need for a maxLength attribute is not needed. Deprecate the field and 
  +  accessor methods.
  
  
  
  1.6       +2 -2      jakarta-commons/codec/default.properties
  
  Index: default.properties
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/codec/default.properties,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- default.properties	7 Nov 2003 23:20:19 -0000	1.5
  +++ default.properties	8 Nov 2003 01:52:25 -0000	1.6
  @@ -13,7 +13,7 @@
   component.title = Encode/Decode Utilities
   
   # The current version number of this component
  -component.version = 1.2-dev
  +component.version = 1.2-rc1
   
   # The name that is used to create the jar file
   final.name = ${component.name}-${component.version}
  
  
  
  1.9       +27 -6     jakarta-commons/codec/xdocs/index.xml
  
  Index: index.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/codec/xdocs/index.xml,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- index.xml	4 Oct 2003 16:29:30 -0000	1.8
  +++ index.xml	8 Nov 2003 01:52:25 -0000	1.9
  @@ -46,9 +46,16 @@
   
     <section name="Releases">
      <ul>
  -    <li>Version 1.1 (from mirror)
  -     <a href="http://jakarta.apache.org/site/binindex.cgi">binary</a>
  -     <a href="http://jakarta.apache.org/site/sourceindex.cgi">source</a> (latest)</li>
  +    <li>Version 1.2 RC1 (latest, from mirror) 
  +	<a href="http://jakarta.apache.org/site/binindex.cgi">binary</a> and 
  +	<a href="http://jakarta.apache.org/site/sourceindex.cgi">source</a>
  +    </li>
  +    <li>
  +     Version <a href="http://www.apache.org/dist/jakarta/commons/codec/">1.1</a>
  +    </li>
  +    <li>
  +     Current <a href="http://www.apache.org/dist/jakarta/commons/codec/">nightly build</a>
  +    </li>
      </ul>
     </section>
   
  @@ -59,7 +66,7 @@
    	simple framework for encoding and decoding both textual and binary data.
      </p>
   
  -   <subsection name="Common Encoders">
  +   <subsection name="Binary Encoders">
      	<table>
        <tr>
         <td width="125">
  @@ -128,7 +135,7 @@
       </table>
      </subsection>
   
  -   <subsection name="Digest Utilites">
  +   <subsection name="Digest Encoders">
      	<table>
        <tr>
         <td width="125">
  @@ -136,7 +143,21 @@
          	DigestUtils</a>
         </td>
         <td>
  -        Provides simple static methods for creating a SHA or MD5 digest
  +        Provides simple static methods for creating a SHA or MD5 digest.
  +      </td>
  +     </tr>
  +    </table>
  +   </subsection>
  +   
  +   <subsection name="Network Encoders">
  +   	<table>
  +     <tr>
  +      <td width="125">
  +       <a href="apidocs/org/apache/commons/codec/net/URLCodec.html">
  +       	URLCodec</a>
  +      </td>
  +      <td>
  +        Implements the <code>www-form-urlencoded</code> encoding scheme, also misleadingly known as URL encoding.
         </td>
        </tr>
       </table>
  
  
  

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