Skip to content

Commit 3472e16

Browse files
committed
Formatting.
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/codec/trunk@1062569 13f79535-47bb-0310-9956-ffa450edef68
1 parent 8d80d1c commit 3472e16

1 file changed

Lines changed: 117 additions & 114 deletions

File tree

src/changes/changes.xml

Lines changed: 117 additions & 114 deletions
Original file line numberDiff line numberDiff line change
@@ -62,201 +62,204 @@
6262
Allow for uppercase letters output in Hex.encodeHex().
6363
</action>
6464
<action dev="bayard" type="fix" issue="CODEC-72" due-to="Sebb">
65-
Soundex and RefinedSoundex issues with character arrays.
65+
Soundex and RefinedSoundex issues with character arrays.
6666
</action>
6767
<action dev="bayard" type="fix" issue="CODEC-71" due-to="Sebb">
68-
Base64.isArrayByteBase64() method is inefficient for large byte arrays.
68+
Base64.isArrayByteBase64() method is inefficient for large byte arrays.
6969
</action>
7070
<action dev="bayard" type="fix" issue="CODEC-70" due-to="Sebb">
71-
Thread safety and malicious code safety improvements.
71+
Thread safety and malicious code safety improvements.
7272
</action>
7373
<action dev="bayard" type="fix" issue="CODEC-68" due-to="Robert Rodewald">
74-
isBase64 throws ArrayIndexOutOfBoundsException on some non-BASE64 bytes.
74+
isBase64 throws ArrayIndexOutOfBoundsException on some non-BASE64 bytes.
7575
</action>
7676
<action dev="bayard" type="fix" issue="CODEC-65" due-to="Benjamin Bentmann">
77-
Fix case-insensitive string handling.
77+
Fix case-insensitive string handling.
7878
</action>
7979
<action dev="ggregory" type="fix" issue="CODEC-61" due-to="Igor Slepchin">
80-
Base64.encodeBase64() throws NegativeArraySizeException on large files.
80+
Base64.encodeBase64() throws NegativeArraySizeException on large files.
8181
</action>
8282
<action dev="bayard" type="add" issue="CODEC-60">
83-
Implement Caverphone.
83+
Implement Caverphone.
8484
</action>
8585
<action dev="ggregory" type="fix" issue="CODEC-58" due-to="Julius Davies">
86-
Character set used by Base64 not documented.
86+
Character set used by Base64 not documented.
8787
</action>
8888
<action dev="bayard" type="fix" issue="CODEC-56" due-to="Sebb">
89-
RefinedSoundex creates instance before al fields have been initialized.
89+
RefinedSoundex creates instance before al fields have been initialized.
9090
</action>
9191
<action dev="bayard" type="add" issue="CODEC-52" due-to="Niklas Gustavsson">
92-
Digest on InputStreams.
92+
Digest on InputStreams.
9393
</action>
9494
<action dev="bayard" type="fix" issue="CODEC-51">
95-
2 Test failures in SoundexTest.
95+
2 Test failures in SoundexTest.
9696
</action>
9797
<action dev="bayard" type="add" issue="CODEC-40" due-to="Chris Black">
98-
Patch to add crypto-compatible BigInteger encoding support to Base64.
98+
Patch to add crypto-compatible BigInteger encoding support to Base64.
9999
</action>
100100
<action dev="ggregory" type="add" issue="CODEC-39" due-to="Jamie Flournoy" due-to-email="jamie@white-mountain.org">
101-
DigestUtils: Add methods for SHA-256, SHA-384, and SHA-512.
101+
DigestUtils: Add methods for SHA-256, SHA-384, and SHA-512.
102102
</action>
103103
<action dev="tobrien" type="fix" issue="CODEC-10" due-to="Reggie Riser" due-to-email="rriser@informs.com">
104104
Using US_ENGLISH in Soundex caused an NullPointerException.
105105
</action>
106106
<action dev="tobrien" type="fix" issue="CODEC-6" due-to="David Tonhofer">
107-
Source tarball spews files all over the place.
107+
Source tarball spews files all over the place.
108+
</action>
109+
<action dev="ggregory" type="fix" issue="CODEC-22" due-to="Piero Ottuzzi">
110+
Base64.isArrayByteBase64() throws an ArrayIndexOutOfBoundsException for negative octets
111+
</action>
112+
<action dev="jochen" type="add" issue="CODEC-69" due-to="Julius Davies">
113+
Streaming Base64 (Base64InputStream and Base64OutputStream added).
114+
</action>
115+
<action dev="ggregory" type="fix" issue="CODEC-78" due-to="Julius Davies">
116+
Base64: Improve Code Coverage.
117+
</action>
118+
<action dev="ggregory" type="add" issue="CODEC-59" due-to="Julius Davies">
119+
Add methods to Base64 which work with String instead of byte[].
120+
</action>
121+
<action dev="ggregory" type="fix" issue="CODEC-81" due-to="Julius Davies">
122+
Base64's new constructor parameters ignored.
123+
</action>
124+
<action dev="niallp" type="fix" issue="CODEC-83">
125+
Improve Double Metaphone test coverage.
126+
</action>
127+
<action dev="niallp" type="fix" issue="CODEC-84">
128+
Double Metaphone bugs in alternative encoding.
129+
</action>
130+
<action dev="ggregory" type="fix" issue="CODEC-73" due-to="Benjamin Bentmann">
131+
Make string2byte conversions indepedent of platform default encoding.
108132
</action>
109-
<action dev="ggregory" type="fix" issue="CODEC-22" due-to="Piero Ottuzzi">
110-
Base64.isArrayByteBase64() throws an ArrayIndexOutOfBoundsException for negative octets
111-
</action>
112-
<action dev="jochen" type="add" issue="CODEC-69" due-to="Julius Davies">
113-
Streaming Base64 (Base64InputStream and Base64OutputStream added).
114-
</action>
115-
<action dev="ggregory" type="fix" issue="CODEC-78" due-to="Julius Davies">
116-
Base64: Improve Code Coverage
117-
</action>
118-
<action dev="ggregory" type="add" issue="CODEC-59" due-to="Julius Davies">
119-
Add methods to Base64 which work with String instead of byte[]
120-
</action>
121-
<action dev="ggregory" type="fix" issue="CODEC-81" due-to="Julius Davies">
122-
Base64's new constructor parameters ignored
123-
</action>
124-
<action dev="niallp" type="fix" issue="CODEC-83">
125-
Improve Double Metaphone test coverage
126-
</action>
127-
<action dev="niallp" type="fix" issue="CODEC-84">
128-
Double Metaphone bugs in alternative encoding
129-
</action>
130-
<action dev="ggregory" type="fix" issue="CODEC-73" due-to="Benjamin Bentmann">
131-
Make string2byte conversions indepedent of platform default encoding
132-
</action>
133133
</release>
134134
<release version="1.3" date="10 July 2004" description="Feature and fix release.">
135135
<action dev="ggregory, tobrien" type="add" issue="CODEC-21" due-to="Alex Karasulu">
136-
BinaryCodec: Encodes and decodes binary to and from Strings of 0s and 1s.
137-
</action>
136+
BinaryCodec: Encodes and decodes binary to and from Strings of 0s and 1s.
137+
</action>
138138
<action dev="ggregory" type="add" issue="CODEC-41" due-to="Oleg Kalnichevski" due-to-email="olegk@apache.org">
139-
QuotedPrintableCodec: Codec for RFC 1521 MIME (Multipurpose Internet
140-
Mail Extensions) Part One. Rules #3, #4, and #5 of the quoted-printable spec
141-
are not implemented yet. See also issue CODEC-46.
139+
QuotedPrintableCodec: Codec for RFC 1521 MIME (Multipurpose Internet
140+
Mail Extensions) Part One. Rules #3, #4, and #5 of the quoted-printable spec
141+
are not implemented yet. See also issue CODEC-46.
142142
</action>
143143
<action dev="ggregory" type="add" issue="CODEC-41" due-to="Oleg Kalnichevski" due-to-email="olegk@apache.org">
144-
BCodec: Identical to the Base64 encoding defined by RFC 1521 and allows a
145-
character set to be specified.
144+
BCodec: Identical to the Base64 encoding defined by RFC 1521 and allows a
145+
character set to be specified.
146146
</action>
147147
<action dev="ggregory" type="add" issue="CODEC-41" due-to="Oleg Kalnichevski" due-to-email="olegk@apache.org">
148-
QCodec: Similar to the Quoted-Printable content-transfer-encoding defined
149-
in RFC 1521 and designed to allow text containing mostly ASCII characters to
150-
be decipherable on an ASCII terminal without decoding.
148+
QCodec: Similar to the Quoted-Printable content-transfer-encoding defined
149+
in RFC 1521 and designed to allow text containing mostly ASCII characters to
150+
be decipherable on an ASCII terminal without decoding.
151151
</action>
152152
<action dev="ggregory" type="add" issue="CODEC-45" due-to="Matthew Inger" due-to-email="mattinger@yahoo.com">
153-
Soundex: Implemented the DIFFERENCE algorithm.
153+
Soundex: Implemented the DIFFERENCE algorithm.
154154
</action>
155155
<action dev="ggregory" type="add" issue="CODEC-45" due-to="Matthew Inger" due-to-email="mattinger@yahoo.com">
156-
RefinedSoundex: Implemented the DIFFERENCE algorithm.
157-
</action>
156+
RefinedSoundex: Implemented the DIFFERENCE algorithm.
157+
</action>
158158
<action dev="ggregory" type="update">
159-
This version is relesed under the
160-
&lt;a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License 2.0&lt;/a>
161-
, please see LICENSE.txt. Previous versions were released under the
162-
&lt;a href="http://www.apache.org/licenses/LICENSE-1.1">Apache License 1.1&lt;/a>
163-
</action>
159+
This version is relesed under the
160+
&lt;a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License 2.0&lt;/a>
161+
, please see LICENSE.txt. Previous versions were released under the
162+
&lt;a href="http://www.apache.org/licenses/LICENSE-1.1">Apache License 1.1&lt;/a>
163+
</action>
164164
<action dev="ggregory" type="update">
165-
The Board recommendation to remove Javadoc author tags has been
166-
implemented. All author tags are now "Apache Software Foundation".
167-
</action>
165+
The Board recommendation to remove Javadoc author tags has been
166+
implemented. All author tags are now "Apache Software Foundation".
167+
</action>
168168
<action dev="ggregory" type="fix" issue="CODEC-25" due-to="Oleg Kalnichevski" due-to-email="olegk@apache.org">
169-
The default URL encoding logic was broken.
170-
</action>
169+
The default URL encoding logic was broken.
170+
</action>
171171
<action dev="ggregory" type="fix" issue="CODEC-31" due-to="Gary D. Gregory">
172-
Base64 chunked encoding not compliant with RFC 2045 section 2.1 CRLF.
173-
</action>
172+
Base64 chunked encoding not compliant with RFC 2045 section 2.1 CRLF.
173+
</action>
174174
<action dev="ggregory" type="fix" issue="CODEC-5">
175-
Hex converts illegal characters to 255.
176-
</action>
175+
Hex converts illegal characters to 255.
176+
</action>
177177
<action dev="tobrien" type="fix" issue="CODEC-17">
178-
Metaphone now correctly handles a silent B in a word that ends in MB.
179-
"COMB" is encoded as "KM", before this fix "COMB" was encoded as "KMB".
180-
</action>
178+
Metaphone now correctly handles a silent B in a word that ends in MB.
179+
"COMB" is encoded as "KM", before this fix "COMB" was encoded as "KMB".
180+
</action>
181181
<action dev="ggregory" type="fix">
182-
Added missing tags in Javadoc comments.
183-
</action>
182+
Added missing tags in Javadoc comments.
183+
</action>
184184
<action dev="ggregory" type="fix">
185-
General Javadoc improvements.
186-
</action>
185+
General Javadoc improvements.
186+
</action>
187187
</release>
188188
<release version="1.2" date="24 Nov 2003" description="Feature and fix release.">
189189
<action dev="tobrien" type="add" due-to="Oleg Kalnichevski" due-to-email="olegk@apache.org">
190-
URLCodec: Implements the www-form-urlencoded encoding scheme.
191-
</action>
190+
URLCodec: Implements the www-form-urlencoded encoding scheme.
191+
</action>
192192
<action dev="tobrien" type="add" due-to="Dave Dribin, David Graham">
193-
DigestUtils: Calculates MD5 and SHA digests.
194-
</action>
193+
DigestUtils: Calculates MD5 and SHA digests.
194+
</action>
195195
<action dev="tobrien" type="fix" issue="CODEC-26" due-to="Brian Ewins">
196-
Modified Base64 to remedy non-compliance with RFC
197-
2045. Non-Base64 characters were not being discarded during the
198-
decode. RFC 2045 explicitly states that all characters outside of the
199-
base64 alphabet are to be ignored.
200-
</action>
196+
Modified Base64 to remedy non-compliance with RFC
197+
2045. Non-Base64 characters were not being discarded during the
198+
decode. RFC 2045 explicitly states that all characters outside of the
199+
base64 alphabet are to be ignored.
200+
</action>
201201
<action dev="ggregory" type="fix" issue="CODEC-4">
202-
Hex.decode(Object) throws a ClassCastException when a String argument is passed in.
203-
</action>
202+
Hex.decode(Object) throws a ClassCastException when a String argument is passed in.
203+
</action>
204204
<action dev="ggregory" type="fix" issue="CODEC-3">
205-
Soundex: The HW rule is not applied; hyphens and apostrophes are not ignored.
206-
</action>
205+
Soundex: The HW rule is not applied; hyphens and apostrophes are not ignored.
206+
</action>
207207
<action dev="ggregory" type="fix" issue="CODEC-29">
208-
Soundex.setMaxLength causes bugs and is not needed.
209-
Calling Soundex.setMaxLength() with a value of 2 or less causes the wrong
210-
answer to be returned. Since the encoding returned by Soundex is always
211-
of length 4 by definition (we do not use the '-' in as a letter-nnn
212-
separator) the need for a maxLength attribute is not needed. Deprecate
213-
the field and accessor methods.
214-
</action>
208+
Soundex.setMaxLength causes bugs and is not needed.
209+
Calling Soundex.setMaxLength() with a value of 2 or less causes the wrong
210+
answer to be returned. Since the encoding returned by Soundex is always
211+
of length 4 by definition (we do not use the '-' in as a letter-nnn
212+
separator) the need for a maxLength attribute is not needed. Deprecate
213+
the field and accessor methods.
214+
</action>
215215
<action dev="Members" type="fix">
216-
Fix in Metaphone relating to the handling of the maximum code length.
217-
</action>
216+
Fix in Metaphone relating to the handling of the maximum code length.
217+
</action>
218218
</release>
219219
<release version="1.1" date="29 April 2003" description="The first official release. Numerous projects had been depending on version 1.0-dev while in the Sandbox.">
220220
<action dev="Members" type="add">
221-
A newer version of the Base64 class reflecting improvements from
222-
both the commons-httpclient and xml-rpc versions of code forked
223-
from catalina.
221+
A newer version of the Base64 class reflecting improvements from
222+
both the commons-httpclient and xml-rpc versions of code forked
223+
from catalina.
224224
</action>
225225
<action dev="Members" type="add">
226-
Base64 class from commons-httpclient in org.apache.commons.codec.base64
227-
has been retained for backwards compatibility but has been deprecated.
226+
Base64 class from commons-httpclient in org.apache.commons.codec.base64
227+
has been retained for backwards compatibility but has been deprecated.
228228
</action>
229229
<action dev="Members" type="add">
230-
Soundex class from commons-util in org.apache.commons.codec.
231-
</action>
230+
Soundex class from commons-util in org.apache.commons.codec.
231+
</action>
232232
<action dev="Members" type="add">
233-
Metaphone class from commons-util in org.apache.commons.codec.
234-
</action>
233+
Metaphone class from commons-util in org.apache.commons.codec.
234+
</action>
235235
<action dev="tobrien" type="add">
236-
RefinedSoundex class in org.apache.commons.codec.
237-
</action>
236+
RefinedSoundex class in org.apache.commons.codec.
237+
</action>
238238
<action dev="Members" type="add">
239-
Encoder/Decoder interfaces in org.apache.commons.
240-
</action>
239+
Encoder/Decoder interfaces in org.apache.commons.
240+
</action>
241241
<action dev="Members" type="add">
242-
String and Binary specific Encoder/Decoder interfaces in org.apache.commons.</action>
242+
String and Binary specific Encoder/Decoder interfaces in org.apache.commons.
243+
</action>
243244
<action dev="Members" type="add">
244-
StringEncoderComparator replaces the SoundexComparator from the language package.</action>
245+
StringEncoderComparator replaces the SoundexComparator from the language package.
246+
</action>
245247
<action dev="Members" type="fix">
246-
Base64 now discards whitespace characters when decoding encoded content.</action>
248+
Base64 now discards whitespace characters when decoding encoded content.
249+
</action>
247250
</release>
248251
<release version="1.0-dev" date="25 April 2003" description="Last release from the Sandbox.">
249252
<action dev="tobrien" type="add">
250-
Base64 class from commons-httpclient in org.apache.commons.codec.base64.
253+
Base64 class from commons-httpclient in org.apache.commons.codec.base64.
251254
</action>
252255
<action dev="tobrien" type="add">
253-
Soundex class from commons-util in org.apache.commons.codec.
256+
Soundex class from commons-util in org.apache.commons.codec.
254257
</action>
255258
<action dev="tobrien" type="add">
256-
Metaphone class from commons-util in org.apache.commons.codec.
259+
Metaphone class from commons-util in org.apache.commons.codec.
257260
</action>
258261
<action dev="Members" type="add">
259-
SoundexComparator class from commons-util in org.apache.commons.codec.
262+
SoundexComparator class from commons-util in org.apache.commons.codec.
260263
</action>
261264
</release>
262265
</body>

0 commit comments

Comments
 (0)