Skip to content

Commit c606f29

Browse files
author
Timothy O'Brien
committed
Updated index to include references to DoubleMetaphone and RefinedSoundex
git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/codec/trunk@130193 13f79535-47bb-0310-9956-ffa450edef68
1 parent e94ab54 commit c606f29

2 files changed

Lines changed: 23 additions & 21 deletions

File tree

TODO

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,6 @@ When a task in the TODO list is done, change the changes.xml document in xdocs
1111

1212
* Add a btoa encode and decode to binary package
1313

14-
* Add a BinHex endode and decode to binary package
15-
1614
* Add a uu encode and decode to binary package
1715

1816
* Add a Rot13 implementation to text package

xdocs/index.xml

Lines changed: 23 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -62,65 +62,69 @@
6262
<subsection name="Common Encoders">
6363
<table>
6464
<tr>
65-
<td>
65+
<td width="125">
6666
<a href="apidocs/org/apache/commons/codec/binary/Base64.html">
67-
org.apache.commons.codec.binary.Base64</a>
67+
Base64</a>
6868
</td>
6969
<td>
7070
Provides Base64 content-transfer-encoding as defined in
7171
<a href="http://www.ietf.org/rfc/rfc2045.txt">RFC 2045</a>. This
7272
encoder can optionally create 76 character chunked output
7373
for strict adherence to RFC 2045.
7474
</td>
75-
<td>
76-
Production
77-
</td>
7875
</tr>
7976
<tr>
8077
<td>
8178
<a href="apidocs/org/apache/commons/codec/binary/Hex.html">
82-
org.apache.commons.codec.binary.Hex</a>
79+
Hex</a>
8380
</td>
8481
<td>
8582
Converts an array of bytes into an array of characters representing the
8683
hexadecimal values of each byte in order
8784
</td>
88-
<td>
89-
Production
90-
</td>
9185
</tr>
9286
</table>
9387
</subsection>
9488

9589
<subsection name="Language Encoders">
96-
<p>
97-
Codec contains a number of commonly used language and phonetic encoders
98-
</p>
9990
<table>
10091
<tr>
101-
<td>
92+
<td width="125">
10293
<a href="apidocs/org/apache/commons/codec/language/Soundex.html">
103-
org.apache.commons.codec.language.Soundex</a>
94+
Soundex</a>
10495
</td>
10596
<td>
10697
Implementation of the Soundex algorithm.
10798
</td>
108-
<td>
109-
Production
110-
</td>
11199
</tr>
112100
<tr>
113101
<td>
114102
<a href="apidocs/org/apache/commons/codec/language/Metaphone.html">
115-
org.apache.commons.codec.language.Metaphone</a>
103+
Metaphone</a>
116104
</td>
117105
<td>
118106
Implementation of the Metaphone algorithm.
119107
</td>
108+
</tr>
109+
<tr>
120110
<td>
121-
Production
111+
<a href="apidocs/org/apache/commons/codec/language/RefinedSoundex.html">
112+
Refined Soundex</a>
113+
</td>
114+
<td>
115+
Alternative implementation of the Soundex algorithm.
122116
</td>
123117
</tr>
118+
<tr>
119+
<td>
120+
<a href="apidocs/org/apache/commons/codec/language/DoubleMetaphone.html">
121+
Double Metaphone</a>
122+
</td>
123+
<td>
124+
Alternative implementation of the Metaphone algorithm.
125+
</td>
126+
</tr>
127+
124128
</table>
125129
</subsection>
126130

0 commit comments

Comments
 (0)