Skip to content

Commit 2472371

Browse files
committed
Adjust links for Javadoc
1 parent e3be4b9 commit 2472371

File tree

1 file changed

+30
-30
lines changed

1 file changed

+30
-30
lines changed

src/main/javadoc/overview.html

Lines changed: 30 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -32,42 +32,42 @@ <h1>Binary Encoders</h1>
3232
<caption>Binary Encoders</caption>
3333
<tr>
3434
<td><a
35-
href="apidocs/org/apache/commons/codec/binary/Base32.html">Base32
35+
href="org/apache/commons/codec/binary/Base32.html">Base32
3636
</a></td>
3737
<td>Provides Base32 encoding and decoding as defined by <a
3838
href="https://www.ietf.org/rfc/rfc4648.txt">RFC 4648</a>
3939
</td>
4040
</tr>
4141
<tr>
4242
<td><a
43-
href="apidocs/org/apache/commons/codec/binary/Base32InputStream.html">Base32InputStream
43+
href="org/apache/commons/codec/binary/Base32InputStream.html">Base32InputStream
4444
</a></td>
4545
<td>Provides Base32 encoding and decoding in a streaming
4646
fashion (unlimited size).</td>
4747
</tr>
4848
<tr>
4949
<td><a
50-
href="apidocs/org/apache/commons/codec/binary/Base64.html">
50+
href="org/apache/commons/codec/binary/Base64.html">
5151
Base64 </a></td>
5252
<td>Provides Base64 encoding and decoding as defined by <a
5353
href="https://www.ietf.org/rfc/rfc2045.txt">RFC 2045</a>
5454
</td>
5555
</tr>
5656
<tr>
5757
<td><a
58-
href="apidocs/org/apache/commons/codec/binary/Base64InputStream.html">Base64InputStream
58+
href="org/apache/commons/codec/binary/Base64InputStream.html">Base64InputStream
5959
</a></td>
6060
<td>Provides Base64 encoding and decoding in a streaming
6161
fashion (unlimited size).</td>
6262
</tr>
6363
<tr>
6464
<td><a
65-
href="apidocs/org/apache/commons/codec/binary/BinaryCodec.html">
65+
href="org/apache/commons/codec/binary/BinaryCodec.html">
6666
BinaryCodec </a></td>
6767
<td>Converts between byte arrays and strings of "0"s and "1"s.</td>
6868
</tr>
6969
<tr>
70-
<td><a href="apidocs/org/apache/commons/codec/binary/Hex.html">
70+
<td><a href="org/apache/commons/codec/binary/Hex.html">
7171
Hex </a></td>
7272
<td>Converts hexadecimal Strings.</td>
7373
</tr>
@@ -84,7 +84,7 @@ <h1>Digest Encoders</h1>
8484
<caption>Digest Encoders</caption>
8585
<tr>
8686
<td><a
87-
href="apidocs/org/apache/commons/codec/digest/Blake3.html">Blake3</a>
87+
href="org/apache/commons/codec/digest/Blake3.html">Blake3</a>
8888
</td>
8989
<td>Provides a pure Java implementation of the <a
9090
href="https://github.com/BLAKE3-team/BLAKE3">Blake3 hash
@@ -107,13 +107,13 @@ <h1>Digest Encoders</h1>
107107
</tr>
108108
<tr>
109109
<td><a
110-
href="apidocs/org/apache/commons/codec/digest/Crypt.html">Crypt</a>
110+
href="org/apache/commons/codec/digest/Crypt.html">Crypt</a>
111111
</td>
112112
<td>GNU libc crypt(3) compatible hash method.</td>
113113
</tr>
114114
<tr>
115115
<td><a
116-
href="apidocs/org/apache/commons/codec/digest/DigestUtils.html">DigestUtils</a>
116+
href="org/apache/commons/codec/digest/DigestUtils.html">DigestUtils</a>
117117
</td>
118118
<td>Simplifies common <a
119119
href="https://docs.oracle.com/javase/6/docs/api/java/security/MessageDigest.html">MessageDigest</a>
@@ -123,7 +123,7 @@ <h1>Digest Encoders</h1>
123123
</tr>
124124
<tr>
125125
<td><a
126-
href="apidocs/org/apache/commons/codec/digest/HmacUtils.html">HmacUtils</a>
126+
href="org/apache/commons/codec/digest/HmacUtils.html">HmacUtils</a>
127127
</td>
128128
<td>Simplifies common <a
129129
href="https://docs.oracle.com/javase/6/docs/api/javax/crypto/Mac.html">Mac</a>
@@ -134,56 +134,56 @@ <h1>Digest Encoders</h1>
134134
</tr>
135135
<tr>
136136
<td><a
137-
href="apidocs/org/apache/commons/codec/digest/Md5Crypt.html">Md5Crypt</a>
137+
href="org/apache/commons/codec/digest/Md5Crypt.html">Md5Crypt</a>
138138
</td>
139139
<td>The libc crypt() "$1$" and Apache "$apr1$" MD5-based hash
140140
algorithm.</td>
141141
</tr>
142142
<tr>
143143
<td><a
144-
href="apidocs/org/apache/commons/codec/digest/MurmurHash1.html">MurmurHash1</a>
144+
href="org/apache/commons/codec/digest/MurmurHash1.html">MurmurHash1</a>
145145
</td>
146146
<td>Implementation of the MurmurHash1 32-bit and 64-bit hash
147147
functions.</td>
148148
</tr>
149149
<tr>
150150
<td><a
151-
href="apidocs/org/apache/commons/codec/digest/MurmurHash3.html">MurmurHash3</a>
151+
href="org/apache/commons/codec/digest/MurmurHash3.html">MurmurHash3</a>
152152
</td>
153153
<td>Implementation of the MurmurHash3 32-bit and 128-bit hash
154154
functions.</td>
155155
</tr>
156156
<tr>
157157
<td><a
158-
href="apidocs/org/apache/commons/codec/digest/PureJavaCrc32.html">PureJavaCrc32</a>
158+
href="org/apache/commons/codec/digest/PureJavaCrc32.html">PureJavaCrc32</a>
159159
</td>
160160
<td>A pure-java implementation of the CRC32 checksum that uses
161161
the same polynomial as the built-in native CRC32.</td>
162162
</tr>
163163
<tr>
164164
<td><a
165-
href="apidocs/org/apache/commons/codec/digest/PureJavaCrc32C.html">PureJavaCrc32C</a>
165+
href="org/apache/commons/codec/digest/PureJavaCrc32C.html">PureJavaCrc32C</a>
166166
</td>
167167
<td>A pure-java implementation of the CRC32 checksum that uses
168168
the CRC32-C polynomial, the same polynomial used by iSCSI and
169169
implemented on many Intel chipsets supporting SSE 4.2.</td>
170170
</tr>
171171
<tr>
172172
<td><a
173-
href="apidocs/org/apache/commons/codec/digest/Sha2Crypt.html">Sha2Crypt</a>
173+
href="org/apache/commons/codec/digest/Sha2Crypt.html">Sha2Crypt</a>
174174
</td>
175175
<td>SHA2-based Unix crypt implementation.</td>
176176
</tr>
177177
<tr>
178178
<td><a
179-
href="apidocs/org/apache/commons/codec/digest/UnixCrypt.html">UnixCrypt</a>
179+
href="org/apache/commons/codec/digest/UnixCrypt.html">UnixCrypt</a>
180180
</td>
181181
<td>Unix crypt(3) algorithm implementation. This class only
182182
implements the traditional 56 bit DES based algorithm.</td>
183183
</tr>
184184
<tr>
185185
<td><a
186-
href="apidocs/org/apache/commons/codec/digest/XXHash32.html">XXHash32</a>
186+
href="org/apache/commons/codec/digest/XXHash32.html">XXHash32</a>
187187
</td>
188188
<td>Implementation of the xxHash32 hash algorithm.</td>
189189
</tr>
@@ -195,43 +195,43 @@ <h1>Language Encoders</h1>
195195
<caption>Language Encoders</caption>
196196
<tr>
197197
<td><a
198-
href="apidocs/org/apache/commons/codec/language/Caverphone1.html">Caverphone
198+
href="org/apache/commons/codec/language/Caverphone1.html">Caverphone
199199
1.0 </a></td>
200200
<td>Encodes a string into a Caverphone 1.0 value.</td>
201201
</tr>
202202
<tr>
203203
<td><a
204-
href="apidocs/org/apache/commons/codec/language/Caverphone2.html">Caverphone
204+
href="org/apache/commons/codec/language/Caverphone2.html">Caverphone
205205
2.0 </a></td>
206206
<td>Encodes a string into a Caverphone 2.0 value.</td>
207207
</tr>
208208
<tr>
209209
<td><a
210-
href="apidocs/org/apache/commons/codec/language/ColognePhonetic.html">Cologne
210+
href="org/apache/commons/codec/language/ColognePhonetic.html">Cologne
211211
Phonetic </a></td>
212212
<td>Encodes a string into a Cologne Phonetic value.</td>
213213
</tr>
214214
<tr>
215215
<td><a
216-
href="apidocs/org/apache/commons/codec/language/DoubleMetaphone.html">Double
216+
href="org/apache/commons/codec/language/DoubleMetaphone.html">Double
217217
Metaphone </a></td>
218218
<td>Encodes a string into a double metaphone value.</td>
219219
</tr>
220220
<tr>
221221
<td><a
222-
href="apidocs/org/apache/commons/codec/language/Metaphone.html">Metaphone
222+
href="org/apache/commons/codec/language/Metaphone.html">Metaphone
223223
</a></td>
224224
<td>Encodes a string into a Metaphone value.</td>
225225
</tr>
226226
<tr>
227227
<td><a
228-
href="apidocs/org/apache/commons/codec/language/RefinedSoundex.html">Refined
228+
href="org/apache/commons/codec/language/RefinedSoundex.html">Refined
229229
Soundex </a></td>
230230
<td>Encodes a string into a Refined Soundex value.</td>
231231
</tr>
232232
<tr>
233233
<td><a
234-
href="apidocs/org/apache/commons/codec/language/Soundex.html">Soundex
234+
href="org/apache/commons/codec/language/Soundex.html">Soundex
235235
</a></td>
236236
<td>Encodes a string into a Soundex value.</td>
237237
</tr>
@@ -242,7 +242,7 @@ <h1>Network Encoders</h1>
242242
<table>
243243
<caption>Network Encoders</caption>
244244
<tr>
245-
<td><a href="apidocs/org/apache/commons/codec/net/BCodec.html">
245+
<td><a href="org/apache/commons/codec/net/BCodec.html">
246246
BCodec </a></td>
247247
<td>Identical to the Base64 encoding defined by <a
248248
href="https://www.ietf.org/rfc/rfc1521.txt">RFC 1521</a> and allows
@@ -251,13 +251,13 @@ <h1>Network Encoders</h1>
251251
</tr>
252252
<tr>
253253
<td><a
254-
href="apidocs/org/apache/commons/codec/net/PercentCodec.html">
254+
href="org/apache/commons/codec/net/PercentCodec.html">
255255
PercentCodec </a></td>
256256
<td>Implements the Percent-Encoding scheme, as described in
257257
HTTP 1.1 specification.</td>
258258
</tr>
259259
<tr>
260-
<td><a href="apidocs/org/apache/commons/codec/net/QCodec.html">
260+
<td><a href="org/apache/commons/codec/net/QCodec.html">
261261
QCodec </a></td>
262262
<td>Similar to the Quoted-Printable content-transfer-encoding
263263
defined in <a href="https://www.ietf.org/rfc/rfc1521.txt">RFC
@@ -267,15 +267,15 @@ <h1>Network Encoders</h1>
267267
</tr>
268268
<tr>
269269
<td><a
270-
href="apidocs/org/apache/commons/codec/net/QuotedPrintableCodec.html">
270+
href="org/apache/commons/codec/net/QuotedPrintableCodec.html">
271271
QuotedPrintableCodec </a></td>
272272
<td>Codec for the Quoted-Printable section of <a
273273
href="https://www.ietf.org/rfc/rfc1521.txt">RFC 1521</a> .
274274
</td>
275275
</tr>
276276
<tr>
277277
<td><a
278-
href="apidocs/org/apache/commons/codec/net/URLCodec.html">
278+
href="org/apache/commons/codec/net/URLCodec.html">
279279
URLCodec </a></td>
280280
<td>Implements the <code>www-form-urlencoded</code> encoding
281281
scheme, also misleadingly known as URL encoding.

0 commit comments

Comments
 (0)