-
Notifications
You must be signed in to change notification settings - Fork 272
Expand file tree
/
Copy pathSTATUS.html
More file actions
128 lines (110 loc) · 3.52 KB
/
Copy pathSTATUS.html
File metadata and controls
128 lines (110 loc) · 3.52 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
<?xml version="1.0"?>
<html>
<head>
<title>Jakarta Commons-Codec: Status</title>
</head>
<body bgcolor="white">
<div align="center">
<h1>The Jakarta Commons <em>Codec</em> Component</h1>
$Id: STATUS.html,v 1.2 2003/05/11 20:34:31 tobrien Exp $<br/>
<a href="#Introduction">[Introduction]</a>
<a href="#Dependencies">[Dependencies]</a>
<a href="#Release Info">[Release Info]</a>
<a href="#Committers">[Committers]</a>
<a href="#Action Items">[Action Items]</a>
<br/><br/>
</div>
<a name="Introduction"></a>
<h3>1. INTRODUCTION</h3>
<p>
The <em>Codec</em> Component contains a set of Java classes that provide
encode/decode functionality and helper methods for various data formats.
The following classes are included:
<ul>
<li>Binary Encoders/Decoders
<ul>
<li><strong>Base64</strong> - Encoding/decoding of the popular base64 format.</li>
</ul>
</li>
<li>Phonetic Encoders
<ul>
<li><strong>Soundex</strong> - Encoding of Strings to soundex values.</li>
<li><strong>Metaphone</strong> - Encoding of Strings to metaphone values, a more
advanced soundex-like algorithm.</li>
<li><strong>RefinedSoundex</strong></li>
</ul>
</li>
</ul>
</p>
<a name="Dependencies"></a>
<h3>2. DEPENDENCIES</h3>
<p>
The <em>Codec</em> component is dependent upon the following external
components for development and use:
</p>
<table border="1" width="600">
<tr>
<td width="33%" rowspan="2" valign="middle" align="center">Component</td>
<td width="10%" rowspan="2" valign="middle" align="center">Version</td>
<td width="50%" colspan="3" align="center">Dependency</td>
<td width="7%" rowspan="2" valign="middle" align="center">Distribute</td>
</tr>
<tr>
<td align="center">
Compilation
</td>
<td align="center">
Runtime
</td>
<td align="center">
Testing
</td>
</tr>
<tr>
<td align="right">
<a href="http://java.sun.com/j2se">Java Development Kit</a>
</td>
<td align="center">1.2+</td>
<td align="center" colspan="3" bgcolor="green">Yes</td>
<td align="center"><b>No</b></td>
</tr>
<tr>
<td align="right">
<a href="http://www.junit.org">JUnit Testing Framework</a>
</td>
<td align="center">3.7+</td>
<td align="center" colspan="2" bgcolor="red">No</td>
<td align="center" bgcolor="green">Yes</td>
<td align="center"><b>No</b></td>
</tr>
</table>
<a name="Release Info"></a>
<h3>3. RELEASE INFO</h3>
<p>
Current release is 1.1 1.1 is the first official release of the codec
package.
</p>
<a name="Committers"></a>
<h3>4. COMMITTERS</h3>
<p>
The following individuals are the primary developers and maintainers of this
component. Developers who plan to use <em>Codec</em> in their own
projects are encouraged to collaborate on the future development of this
component to ensure that it continues to meet a variety of needs.
</p>
<ul>
<li><a href="mailto:sanders@apache.org">Scott Sanders</a></li>
<li><a href="mailto:bayard@apache.org">Henri Yandell</a></li>
<li><a href="mailto:rwaldhoff@apache.org">Rodney Waldhoff</a></li>
<li><a href="mailto:dlr@finemaltcoding.com">Daniel Rall</a></li>
<li><a href="mailto:jon@collab.net">Jon S. Stevens</a></li>
<li><a href="mailto:tobrien@apache.org">Tim O'Brien</a></li>
</ul>
<a name="Action Items"></a>
<h3>5. ACTION ITEMS</h3>
<p>
Please see the file TODO for more information.
</p>
</table>
</body>
</html>