File tree Expand file tree Collapse file tree
src/java/org/apache/commons/codec/net Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1- $Id: RELEASE-NOTES.txt,v 1.8 2003/11/07 00:14:14 ggregory Exp $
1+ $Id: RELEASE-NOTES.txt,v 1.9 2003/11/08 01:52:25 ggregory Exp $
22
33 Commons Codec Package
4- Version 1.2
4+ Version 1.2 RC1
55 Release Notes
66
77
@@ -33,6 +33,12 @@ BUG FIXES:
3333* Fix for Bug 24360: Hex.decode(Object) throws a ClassCastException
3434 when a String argument is passed in.
3535
36- * Fix for Bug 24471: Soundex: The HW rule is not applied; hyphens and apostrophes
37- are not ignored.
38-
36+ * Fix for Bug 24471: Soundex: The HW rule is not applied; hyphens and
37+ apostrophes are not ignored.
38+
39+ * Fix for Bug 24484: Soundex.setMaxLength causes bugs and is not needed.
40+ Calling Soundex.setMaxLength() with a value of 2 or less causes the wrong
41+ answer to be returned. Since the encoding returned by Soundex is always
42+ of length 4 by definition (we do not use the '-' in as a letter-nnn separator)
43+ the need for a maxLength attribute is not needed. Deprecate the field and
44+ accessor methods.
Original file line number Diff line number Diff line change 1- # $Id: default.properties,v 1.5 2003/11/07 23:20:19 ggregory Exp $
1+ # $Id: default.properties,v 1.6 2003/11/08 01:52:25 ggregory Exp $
22
33# The pathname of the "junit.jar" JAR file
44junit.jar = ${junit.home}/junit-3.7.jar
@@ -13,7 +13,7 @@ component.package = org.apache.commons.codec
1313component.title = Encode/Decode Utilities
1414
1515# The current version number of this component
16- component.version = 1.2-dev
16+ component.version = 1.2-rc1
1717
1818# The name that is used to create the jar file
1919final.name = ${component.name}-${component.version}
Original file line number Diff line number Diff line change 33 <extend >../project.xml</extend >
44 <name >Codec</name >
55 <id >commons-codec</id >
6- <currentVersion >1.2-dev </currentVersion >
6+ <currentVersion >1.2-rc1 </currentVersion >
77 <inceptionYear >2002</inceptionYear >
88 <shortDescription >
99 A collection of simple and common encoders and decoders
2525 <name >1.1</name >
2626 <tag >CODEC_1_1</tag >
2727 </version >
28+ <version >
29+ <id >1.2-rc1</id >
30+ <name >1.2-rc1</name >
31+ <tag >CODEC_1_2_RC1</tag >
32+ </version >
2833 </versions >
2934 <branches >
3035 </branches >
Original file line number Diff line number Diff line change 8686 *
8787 * @author <a href="mailto:oleg@ural.ru">Oleg Kalnichevski</a>
8888 * @author <a href="mailto:ggregory@seagullsw.com">Gary Gregory</a>
89- * @version $Id: URLCodec.java,v 1.9 2003/10/13 16:49:24 ggregory Exp $
89+ * @since 1.2
90+ * @version $Id: URLCodec.java,v 1.10 2003/11/08 01:52:25 ggregory Exp $
9091 */
9192
9293public class URLCodec
Original file line number Diff line number Diff line change 4646
4747 <section name =" Releases" >
4848 <ul >
49- <li >Version 1.1 (from mirror)
50- <a href =" http://jakarta.apache.org/site/binindex.cgi" >binary</a >
51- <a href =" http://jakarta.apache.org/site/sourceindex.cgi" >source</a > (latest)</li >
49+ <li >Version 1.2 RC1 (latest, from mirror)
50+ <a href =" http://jakarta.apache.org/site/binindex.cgi" >binary</a > and
51+ <a href =" http://jakarta.apache.org/site/sourceindex.cgi" >source</a >
52+ </li >
53+ <li >
54+ Version <a href =" http://www.apache.org/dist/jakarta/commons/codec/" >1.1</a >
55+ </li >
56+ <li >
57+ Current <a href =" http://www.apache.org/dist/jakarta/commons/codec/" >nightly build</a >
58+ </li >
5259 </ul >
5360 </section >
5461
5966 simple framework for encoding and decoding both textual and binary data.
6067 </p >
6168
62- <subsection name =" Common Encoders" >
69+ <subsection name =" Binary Encoders" >
6370 <table >
6471 <tr >
6572 <td width =" 125" >
128135 </table >
129136 </subsection >
130137
131- <subsection name =" Digest Utilites " >
138+ <subsection name =" Digest Encoders " >
132139 <table >
133140 <tr >
134141 <td width =" 125" >
135142 <a href =" apidocs/org/apache/commons/codec/digest/DigestUtils.html" >
136143 DigestUtils</a >
137144 </td >
138145 <td >
139- Provides simple static methods for creating a SHA or MD5 digest
146+ Provides simple static methods for creating a SHA or MD5 digest.
147+ </td >
148+ </tr >
149+ </table >
150+ </subsection >
151+
152+ <subsection name =" Network Encoders" >
153+ <table >
154+ <tr >
155+ <td width =" 125" >
156+ <a href =" apidocs/org/apache/commons/codec/net/URLCodec.html" >
157+ URLCodec</a >
158+ </td >
159+ <td >
160+ Implements the <code >www-form-urlencoded</code > encoding scheme, also misleadingly known as URL encoding.
140161 </td >
141162 </tr >
142163 </table >
You can’t perform that action at this time.
0 commit comments