kenai_tools 0.0.7

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,666 @@
1
+ 2004-04-26 dmegginson <dmegginson@dobby>
2
+
3
+ * .cvsignore: Added another ignorable file.
4
+
5
+ * src/org/xml/sax/ContentHandler.java:
6
+ Patch from Elliotte Rusty Harold:
7
+
8
+ This patch to one file (ContentHandler) fixes a broken @link to
9
+ java.net.ContentHandler by removing it. For various obscure
10
+ reasons it doesn't seem possible for this to be referenced without
11
+ importing java.net.ContentHandler
12
+
13
+ (Also some punctuation and JavaDoc cleanups: dpm)
14
+
15
+ * src/org/xml/sax/ext/Locator2Impl.java, src/org/xml/sax/helpers/DefaultHandler.java, src/org/xml/sax/helpers/NamespaceSupport.java, src/org/xml/sax/helpers/ParserAdapter.java, src/org/xml/sax/helpers/XMLFilterImpl.java, src/org/xml/sax/helpers/XMLReaderAdapter.java, src/org/xml/sax/AttributeList.java, src/org/xml/sax/HandlerBase.java, src/org/xml/sax/XMLReader.java:
16
+ From Elliotte Rusty Harold:
17
+
18
+ I've attached a patch for the current CVS that fixes a number of
19
+ mismatched @param tags in the JavaDoc. Yell if you have any
20
+ troubles with this.
21
+
22
+ 2004-04-23 dmegginson <dmegginson@dobby>
23
+
24
+ * src/org/xml/sax/helpers/NamespaceSupport.java:
25
+ From Norman Walsh:
26
+
27
+ It turns out there's some existing code that relies on the fact that
28
+ this exception isn't thrown. So while I prefer to do the right thing,
29
+ there's a school of thought that says breaking existing code isn't the
30
+ right thing. Especially if you're trying to get things past the folks
31
+ that test for compatibility.
32
+
33
+ Given that the user can, if they care, test the result, I'd like
34
+ to suggest the patch above That is, to remove the JavaDoc that
35
+ says the exception is thrown since historically it has never
36
+ actually been thrown.
37
+
38
+ * CHANGES, ChangeLog, README, build.xml: Updated for SAX2r3 pre 1.
39
+
40
+ 2004-04-22 dmegginson <dmegginson@dobby>
41
+
42
+ * CHANGES:
43
+ Move high-level changes from docs/changes.html to this text file, and
44
+ add changes for SAX2 r2 pre2.
45
+
46
+ * src/org/xml/sax/ext/DeclHandler.java:
47
+ Patch from Michael Glavassevich:
48
+
49
+ Align the description of DeclHandler.externalEntityDecl with DTDHandler.unparsedEntityDecl, requiring that the parser absolutize the system identifier, though this is backwards incompatible and may affect some real world users who expect the declared system identifier even if it was always intended that the system id passed to DeclHandler.externalEntityDecl be fully resolved.
50
+
51
+ 2004-04-22 dmegginson <dmegginson@dobby>
52
+
53
+ * src/org/xml/sax/ext/DeclHandler.java:
54
+ Patch from Michael Glavassevich:
55
+
56
+ Align the description of DeclHandler.externalEntityDecl with
57
+ DTDHandler.unparsedEntityDecl, requiring that the parser
58
+ absolutize the system identifier, though this is backwards
59
+ incompatible and may affect some real world users who expect the
60
+ declared system identifier even if it was always intended that the
61
+ system id passed to DeclHandler.externalEntityDecl be fully
62
+ resolved.
63
+
64
+ 2004-04-21 dmegginson <dmegginson@dobby>
65
+
66
+ * src/org/xml/sax/package.html: Patch from Michael Glavassevich:
67
+
68
+ A couple fixes to org/xml/sax/package.html.
69
+
70
+ 1) Improve description of is-standalone feature as suggested by
71
+ Elliotte [1].
72
+
73
+ 2) Specify that the use-entity-resolver2 is read-write with a
74
+ default value of true, instead of read-only with no default
75
+ value. The description of EntityResolver2 in CVS says: "If a SAX
76
+ application requires the customized handling which this interface
77
+ defines for external entities, it must ensure that it uses an
78
+ XMLReader with the
79
+ http://xml.org/sax/features/use-entity-resolver2 feature flag set
80
+ to true (which is its default value when the feature is
81
+ recognized). If that flag is unrecognized, or its value is false,
82
+ or the resolver does not implement this interface, then only the
83
+ EntityResolver method will be used." Therefore this feature has a
84
+ default value of true (when it is recognized). Since the default
85
+ value is true, the value of the feature could only ever be false
86
+ if it were read-write. Parsers which do not support setting this
87
+ feature to false would throw a SAXNotSupportedException.
88
+
89
+ [1] http://article.gmane.org/gmane.text.xml.sax.devel/277/
90
+
91
+ * src/org/xml/sax/SAXParseException.java:
92
+ Patch from Michael Glavassevich:
93
+
94
+ The version of SAXParseException in CVS still has methods for
95
+ getting and setting exception ids. This patch removes these
96
+ methods and the private field: exceptionId.
97
+
98
+ 2004-04-15 dmegginson <dmegginson@dobby>
99
+
100
+ * src/org/xml/sax/package.html: From Karl Waclawek:
101
+
102
+ I tried to come up with some modifications for package.html
103
+ regarding read-only access for certain features.
104
+
105
+ There is also a docs directory with some discussion of features.
106
+ Where on the web is this exposed? Seems somehow incomplete.
107
+
108
+ I added a column called "Access". For read-only access
109
+ I changed the Default entry from "unspecified" to "not applicable".
110
+ I made a few other changes, like adding punctuation, consistently
111
+ indicating a boolean value of true as "true" (except in one case).
112
+
113
+ I am not entirely sure what the purpose of italics is.
114
+
115
+ Maybe the second paragraph after the end of the main table needs
116
+ to be somehow changed to reflect that read/write access
117
+ has already been indicated further up.
118
+
119
+ 2004-04-06 dmegginson <dmegginson@dobby>
120
+
121
+ * src/org/xml/sax/package.html:
122
+ Updated package description from Michael Glavassevich at the IBM
123
+ Toronto Lab.
124
+
125
+ 2004-04-04 dmegginson <dmegginson@dobby>
126
+
127
+ * .cvsignore: Add generated Eclipse files to .cvsignore.
128
+
129
+ 2004-03-19 dbrownell <dbrownell@dobby>
130
+
131
+ * src/org/xml/sax/ContentHandler.java:
132
+ Fix bugid 911507: longstanding restriction on startElement()
133
+ attribute handling needs to be in the javadoc.
134
+
135
+ 2004-03-18 dmegginson <dmegginson@dobby>
136
+
137
+ * src/org/xml/sax/Attributes.java:
138
+ Specify that the xmlns-uris feature will use "xmlns" for the local
139
+ part of the attribute declaring a default Namespace.
140
+
141
+ 2004-03-17 dmegginson <dmegginson@dobby>
142
+
143
+ * README: Updated the release notes.
144
+
145
+ * src/org/xml/sax/ext/Locator2.java:
146
+ Delete obsolete paragraph about future XML versions.
147
+
148
+ * src/org/xml/sax/package.html:
149
+ Roll out most of the new documentation that was intended for SAX 2.1.
150
+
151
+ 2004-03-08 dmegginson <dmegginson@dobby>
152
+
153
+ * src/org/xml/sax/ext/Attributes2Impl.java, src/org/xml/sax/ext/Locator2.java, src/org/xml/sax/helpers/NamespaceSupport.java, src/org/xml/sax/helpers/ParserAdapter.java, src/org/xml/sax/Attributes.java, src/org/xml/sax/ContentHandler.java, src/org/xml/sax/ErrorHandler.java, src/org/xml/sax/SAXParseException.java, src/org/xml/sax/ext/Attributes2.java, src/org/xml/sax/package.html, docs/features.html, docs/quick-start.html, docs/changes.html:
154
+ * 2004-0001: beta status
155
+
156
+ - changed docs for all beta features to released status
157
+ [dpm: automatic upon release?]
158
+
159
+
160
+ * 2004-0002: XML 1.1 support
161
+
162
+ - add a read-only feature to check for XML 1.1 support
163
+ [added to docs/features.html]
164
+
165
+ - add a read-only string property to return the version number of the
166
+ document being parsed
167
+ [added to docs/features.html]
168
+
169
+ - remove all unnecessary references to XML 1.0 from the docs
170
+ [kept references to specific sections in the XML 1.0 REC and to error
171
+ codes based on 1.0; removed things like "raw XML 1.0 names"]
172
+
173
+
174
+ * 2004-0003: Unicode normalization
175
+
176
+ - add a feature to request Unicode normalization checking (false by
177
+ default)
178
+ [added to docs/features.html]
179
+
180
+ - use error() to report all normalization problems
181
+ [added to docs/features.html]
182
+
183
+ - add a new exception subclass for normalization errors
184
+ [not this time]
185
+
186
+
187
+ * 2004-0004: xmlns Namespace
188
+
189
+ - commit paragraph from CVS Attributes.java about xmlns-uris feature
190
+ [added to docs/features.html]
191
+
192
+ - document interaction between xmlns-uris and namespace-prefixes
193
+ features
194
+ [added to docs/features.html]
195
+
196
+
197
+ * 2004-0005: endDocument
198
+
199
+ - note that a parser might not invoke endDocument after reporting a
200
+ fatal error (this produces the fewest incompatibilities)
201
+ [added JavaDocs to endDocument() and fatalError()]
202
+
203
+
204
+ * 2004-0006: Locator2
205
+
206
+ - allow getEncoding() and getXMLVersion() to return null if the
207
+ information is not yet available
208
+ [added to Locator2.java]
209
+
210
+ 2003-05-29 dbrownell <dbrownell@dobby>
211
+
212
+ * src/org/xml/sax/helpers/ParserAdapter.java:
213
+ workspace cleanup: test catches illegal/nonsense state
214
+
215
+ 2002-07-29 dbrownell <dbrownell@dobby>
216
+
217
+ * src/SAXDump.java: another from Phil Hanna
218
+
219
+ 2002-07-27 dbrownell <dbrownell@dobby>
220
+
221
+ * build.xml: update, from Phil Hanna <phanna@ipass.net>
222
+
223
+ 2002-05-25 dbrownell <dbrownell@dobby>
224
+
225
+ * src/org/xml/sax/Attributes.java, src/org/xml/sax/helpers/NamespaceSupport.java, src/org/xml/sax/helpers/ParserAdapter.java, src/org/xml/sax/package.html, ChangeLog:
226
+ add "xmlns-uris" support, for
227
+ backwards-incompatble change in namespace REC
228
+
229
+ 2002-05-07 dbrownell <dbrownell@dobby>
230
+
231
+ * ChangeLog: describe
232
+
233
+ * src/org/xml/sax/package.html:
234
+ clarify rule-* issue and application-oriented messages
235
+
236
+ * src/org/xml/sax/helpers/NamespaceSupport.java:
237
+ clarifications, typo fix
238
+
239
+ * src/org/xml/sax/Attributes.java, src/org/xml/sax/ErrorHandler.java:
240
+ fix typos
241
+
242
+ * src/org/xml/sax/SAXParseException.java:
243
+ correct sense if ID test; fix old typos
244
+
245
+ 2002-04-22 dbrownell <dbrownell@dobby>
246
+
247
+ * ChangeLog: mention one other putback
248
+
249
+ * src/org/xml/sax/package.html:
250
+ fix a few html errors that IE cares about
251
+
252
+ * src/org/xml/sax/helpers/XMLReaderFactory.java:
253
+ [521200] some compilers whine about very inclusive exception specs
254
+
255
+ * ChangeLog: describe latest updates
256
+
257
+ * src/org/xml/sax/package.html:
258
+ Initial definitions of exception IDs; minor clarifications.
259
+
260
+ * src/org/xml/sax/SAXParseException.java:
261
+ [486006] add exception ID support.
262
+
263
+ * src/org/xml/sax/ext/Attributes2.java, src/org/xml/sax/ext/Attributes2Impl.java:
264
+ add Attributes2.isDeclared() methods (mostly for CDATA)
265
+
266
+ 2002-04-21 dbrownell <dbrownell@dobby>
267
+
268
+ * src/org/xml/sax/ContentHandler.java, src/org/xml/sax/ErrorHandler.java, src/org/xml/sax/XMLReader.java:
269
+ sync with updates to sax2.0.1
270
+
271
+ * ChangeLog: summarize latest doc clarifications
272
+
273
+ * src/org/xml/sax/XMLReader.java:
274
+ clarify parser reuse: configuration is unchanged
275
+
276
+ * src/org/xml/sax/ErrorHandler.java:
277
+ clarify behavior of parser with/without ErrorHandler
278
+
279
+ * src/org/xml/sax/ContentHandler.java:
280
+ clarify: Locator usable only between starDocument()/endDocument()
281
+
282
+ 2002-01-30 dbrownell <dbrownell@dobby>
283
+
284
+ * ChangeLog, src/org/xml/sax/XMLReader.java, src/org/xml/sax/package.html, src/org/xml/sax/SAXException.java, src/org/xml/sax/SAXNotRecognizedException.java, src/org/xml/sax/SAXNotSupportedException.java, src/org/xml/sax/SAXParseException.java, src/org/xml/sax/XMLFilter.java, src/org/xml/sax/Locator.java, src/org/xml/sax/Parser.java, src/org/xml/sax/InputSource.java, src/org/xml/sax/EntityResolver.java, src/org/xml/sax/ErrorHandler.java, src/org/xml/sax/HandlerBase.java, src/org/xml/sax/DTDHandler.java, src/org/xml/sax/DocumentHandler.java, src/org/xml/sax/AttributeList.java, src/org/xml/sax/Attributes.java, src/org/xml/sax/ContentHandler.java, src/org/xml/sax/ext/LexicalHandler.java, src/org/xml/sax/ext/package.html, src/org/xml/sax/ext/DeclHandler.java, src/org/xml/sax/helpers/XMLReaderAdapter.java, src/org/xml/sax/helpers/XMLReaderFactory.java, src/org/xml/sax/helpers/package.html, src/org/xml/sax/helpers/XMLFilterImpl.java, src/org/xml/sax/helpers/ParserFactory.java, src/org/xml/sax/helpers/ParserAdapter.java, src/org/xml/sax/helpers/LocatorImpl.java, src/org/xml/sax/helpers/NamespaceSupport.java, src/org/xml/sax/helpers/NewInstance.java, src/org/xml/sax/helpers/DefaultHandler.java, src/org/xml/sax/helpers/AttributesImpl.java, src/org/xml/sax/helpers/AttributeListImpl.java:
285
+ sync with SAX 2.0.1
286
+
287
+ 2002-01-29 dbrownell <dbrownell@dobby>
288
+
289
+ * README: sync with sax 2.0.1
290
+
291
+ * README: update for 2.0.1 release
292
+
293
+ * src/org/xml/sax/helpers/XMLReaderAdapter.java, src/org/xml/sax/helpers/XMLReaderFactory.java, ChangeLog, src/org/xml/sax/AttributeList.java, src/org/xml/sax/Attributes.java, src/org/xml/sax/ContentHandler.java, src/org/xml/sax/DTDHandler.java, src/org/xml/sax/DocumentHandler.java, src/org/xml/sax/EntityResolver.java, src/org/xml/sax/ErrorHandler.java, src/org/xml/sax/HandlerBase.java, src/org/xml/sax/InputSource.java, src/org/xml/sax/Locator.java, src/org/xml/sax/Parser.java, src/org/xml/sax/SAXException.java, src/org/xml/sax/SAXNotRecognizedException.java, src/org/xml/sax/SAXNotSupportedException.java, src/org/xml/sax/SAXParseException.java, src/org/xml/sax/XMLFilter.java, src/org/xml/sax/XMLReader.java, src/org/xml/sax/ext/DeclHandler.java, src/org/xml/sax/ext/LexicalHandler.java, src/org/xml/sax/helpers/AttributeListImpl.java, src/org/xml/sax/helpers/AttributesImpl.java, src/org/xml/sax/helpers/DefaultHandler.java, src/org/xml/sax/helpers/LocatorImpl.java, src/org/xml/sax/helpers/NamespaceSupport.java, src/org/xml/sax/helpers/NewInstance.java, src/org/xml/sax/helpers/ParserAdapter.java, src/org/xml/sax/helpers/ParserFactory.java, src/org/xml/sax/helpers/XMLFilterImpl.java:
294
+ 2.0.1 (sax2r2) release
295
+
296
+ 2002-01-12 dbrownell <dbrownell@dobby>
297
+
298
+ * src/org/xml/sax/ContentHandler.java: sync with sax2r2 branch
299
+
300
+ * ChangeLog: merge sax2r2 changes
301
+
302
+ * ChangeLog: update
303
+
304
+ * src/org/xml/sax/ContentHandler.java:
305
+ clarify skipping w/in markup constructs
306
+
307
+ * src/org/xml/sax/Attributes.java, src/org/xml/sax/ContentHandler.java, src/org/xml/sax/InputSource.java, src/org/xml/sax/Locator.java, src/org/xml/sax/SAXParseException.java, src/org/xml/sax/package.html:
308
+ sync with sax2r2 branch
309
+
310
+ * src/org/xml/sax/package.html: describe property value constraints
311
+
312
+ * src/org/xml/sax/helpers/XMLFilterImpl.java: sync with sax2r2pre3+
313
+
314
+ * ChangeLog: update
315
+
316
+ * src/org/xml/sax/ext/EntityResolver2.java: clarify null params, etc
317
+
318
+ * src/org/xml/sax/ext/Attributes2.java, src/org/xml/sax/ext/Attributes2Impl.java, src/org/xml/sax/ext/Locator2.java, src/org/xml/sax/ext/Locator2Impl.java:
319
+ comment cleanup
320
+
321
+ * src/org/xml/sax/ext/DefaultHandler2.java:
322
+ teach about EntityResolver2; [502043] misc cleanup
323
+
324
+ 2002-01-11 dbrownell <dbrownell@dobby>
325
+
326
+ * ChangeLog: update
327
+
328
+ * src/org/xml/sax/SAXParseException.java:
329
+ clarify Locator interrelationship
330
+
331
+ * src/org/xml/sax/Locator.java:
332
+ clarify I18N line/col, and sysid absolutization
333
+
334
+ * src/org/xml/sax/ContentHandler.java: warn about multi-char characters
335
+
336
+ 2002-01-10 dbrownell <dbrownell@dobby>
337
+
338
+ * ChangeLog: describe updates
339
+
340
+ * README: mention JDK 1.4 update procedure
341
+
342
+ * src/org/xml/sax/ext/Attributes2.java, src/org/xml/sax/ext/Attributes2Impl.java:
343
+ [501968] paramter names match doc
344
+
345
+ * src/org/xml/sax/helpers/XMLFilterImpl.java: [501927] fix typo
346
+
347
+ * src/org/xml/sax/helpers/XMLFilterImpl.java:
348
+ [501919] remove duplicate @see; [501915] add missing @see
349
+
350
+ * src/org/xml/sax/ContentHandler.java:
351
+ [501901] inconsistent parameter naming
352
+
353
+ * src/org/xml/sax/ContentHandler.java:
354
+ [501777] clarify declaration of default element NS
355
+
356
+ 2001-12-04 dbrownell <dbrownell@dobby>
357
+
358
+ * src/org/xml/sax/ContentHandler.java:
359
+ clarify skippedEntity: once per skip
360
+
361
+ 2001-11-29 dbrownell <dbrownell@dobby>
362
+
363
+ * ChangeLog: updates
364
+
365
+ * src/org/xml/sax/Attributes.java: namespace decls have no namespace
366
+
367
+ * src/org/xml/sax/ContentHandler.java: clarifications
368
+
369
+ * src/org/xml/sax/InputSource.java: clarify reader w/encoding behavior
370
+
371
+ 2001-11-21 dbrownell <dbrownell@dobby>
372
+
373
+ * src/org/xml/sax/AttributeList.java, src/org/xml/sax/Attributes.java, src/org/xml/sax/ContentHandler.java, src/org/xml/sax/DTDHandler.java, src/org/xml/sax/DocumentHandler.java, src/org/xml/sax/EntityResolver.java, src/org/xml/sax/ErrorHandler.java, src/org/xml/sax/HandlerBase.java, src/org/xml/sax/InputSource.java, src/org/xml/sax/Locator.java, src/org/xml/sax/Parser.java, src/org/xml/sax/SAXException.java, src/org/xml/sax/SAXNotRecognizedException.java, src/org/xml/sax/SAXNotSupportedException.java, src/org/xml/sax/SAXParseException.java, src/org/xml/sax/XMLFilter.java, src/org/xml/sax/XMLReader.java, src/org/xml/sax/package.html, src/org/xml/sax/helpers/AttributeListImpl.java, src/org/xml/sax/helpers/AttributesImpl.java, src/org/xml/sax/helpers/DefaultHandler.java, src/org/xml/sax/helpers/LocatorImpl.java, src/org/xml/sax/helpers/NamespaceSupport.java, src/org/xml/sax/helpers/NewInstance.java, src/org/xml/sax/helpers/ParserAdapter.java, src/org/xml/sax/helpers/ParserFactory.java, src/org/xml/sax/helpers/XMLFilterImpl.java, src/org/xml/sax/helpers/XMLReaderAdapter.java, src/org/xml/sax/helpers/XMLReaderFactory.java, src/org/xml/sax/helpers/package.html, src/org/xml/sax/ext/LexicalHandler.java, src/org/xml/sax/ext/package.html, src/org/xml/sax/ext/DeclHandler.java, ChangeLog, Makefile, README:
374
+ sync w/sax2r2pre3
375
+
376
+ 2001-11-20 dbrownell <dbrownell@dobby>
377
+
378
+ * README: update
379
+
380
+ * Makefile: use zip, not jar, to create distribution
381
+
382
+ * ChangeLog: describe updates; sax2 r2pre3
383
+
384
+ * src/org/xml/sax/ext/DeclHandler.java, src/org/xml/sax/ext/LexicalHandler.java, src/org/xml/sax/helpers/AttributeListImpl.java, src/org/xml/sax/helpers/AttributesImpl.java, src/org/xml/sax/helpers/DefaultHandler.java, src/org/xml/sax/helpers/LocatorImpl.java, src/org/xml/sax/helpers/NamespaceSupport.java, src/org/xml/sax/helpers/NewInstance.java, src/org/xml/sax/helpers/ParserAdapter.java, src/org/xml/sax/helpers/ParserFactory.java, src/org/xml/sax/helpers/XMLFilterImpl.java, src/org/xml/sax/helpers/XMLReaderAdapter.java, src/org/xml/sax/helpers/XMLReaderFactory.java, src/org/xml/sax/AttributeList.java, src/org/xml/sax/Attributes.java, src/org/xml/sax/ContentHandler.java, src/org/xml/sax/DTDHandler.java, src/org/xml/sax/DocumentHandler.java, src/org/xml/sax/EntityResolver.java, src/org/xml/sax/ErrorHandler.java, src/org/xml/sax/HandlerBase.java, src/org/xml/sax/InputSource.java, src/org/xml/sax/Locator.java, src/org/xml/sax/Parser.java, src/org/xml/sax/SAXException.java, src/org/xml/sax/SAXNotRecognizedException.java, src/org/xml/sax/SAXNotSupportedException.java, src/org/xml/sax/SAXParseException.java, src/org/xml/sax/XMLFilter.java, src/org/xml/sax/XMLReader.java:
385
+ label as sax2 r2pre3; add "more info" links
386
+
387
+ 2001-11-13 dbrownell <dbrownell@dobby>
388
+
389
+ * src/org/xml/sax/package.html:
390
+ startDTD() didn't absolutize; describe resolver2 control
391
+
392
+ 2001-11-12 dbrownell <dbrownell@dobby>
393
+
394
+ * src/org/xml/sax/ext/DefaultHandler2.java: add Resolver2 support
395
+
396
+ * src/org/xml/sax/ext/EntityResolver2.java: create
397
+
398
+ 2001-11-11 dbrownell <dbrownell@dobby>
399
+
400
+ * src/org/xml/sax/DTDHandler.java:
401
+ revert absolutization change for 446280; that behavior needs
402
+ to be an option flag.
403
+
404
+ * src/org/xml/sax/ext/package.html: clarify recognize vs support
405
+
406
+ * src/org/xml/sax/ext/LexicalHandler.java:
407
+ clarify "set" description; clarify support != recognize;
408
+ clarify startDTD() so systemId matches all implementations
409
+
410
+ * src/org/xml/sax/ext/DeclHandler.java:
411
+ update "set" description; clarify support != recognize
412
+
413
+ * src/org/xml/sax/Locator.java: clarify
414
+
415
+ * src/org/xml/sax/helpers/NewInstance.java:
416
+ patch from Edwin Goei: compile on jdk 1.1
417
+
418
+ 2001-11-09 dbrownell <dbrownell@dobby>
419
+
420
+ * Makefile, README: use www.saxproject.org
421
+
422
+ * src/org/xml/sax/ext/package.html, src/org/xml/sax/helpers/package.html, src/org/xml/sax/package.html:
423
+ from sax2r2: use www.saxproject.org
424
+
425
+ * Makefile, README, src/org/xml/sax/ext/package.html, src/org/xml/sax/helpers/package.html, src/org/xml/sax/package.html:
426
+ use www.saxproject.org
427
+
428
+ 2001-11-07 dbrownell <dbrownell@dobby>
429
+
430
+ * src/SAXDump.java: add XP, resolve-dtd-uris
431
+
432
+ * src/org/xml/sax/package.html: add resolve-did-uris flag
433
+
434
+ 2001-11-06 dbrownell <dbrownell@dobby>
435
+
436
+ * src/SAXDump.java: create
437
+
438
+ * src/org/xml/sax/ext/DefaultHandler2.java: add [472323]
439
+
440
+ * ChangeLog, src/org/xml/sax/XMLReader.java, src/org/xml/sax/helpers/NamespaceSupport.java, src/org/xml/sax/helpers/ParserAdapter.java, src/org/xml/sax/helpers/XMLFilterImpl.java:
441
+ sync with sax2r2
442
+
443
+ * src/org/xml/sax/ext/Locator2.java: speling fixx
444
+
445
+ * ChangeLog: summarize recent updates
446
+
447
+ * src/org/xml/sax/helpers/XMLFilterImpl.java:
448
+ null handlers are no error (restore default)
449
+
450
+ * src/org/xml/sax/XMLReader.java: use the right param names [476507]
451
+
452
+ * src/org/xml/sax/helpers/ParserAdapter.java:
453
+ clarify docs. NotSupported != NotRecognized.
454
+ setting null handlers restores default.
455
+
456
+ * src/org/xml/sax/helpers/XMLFilterImpl.java:
457
+ clarify get/set feature/property
458
+
459
+ * src/org/xml/sax/XMLReader.java:
460
+ Clarify what a 'recognized' feature/property is (gettable/settable).
461
+ Setting handler to null doesn't require an exception.
462
+
463
+ 2001-10-23 dbrownell <dbrownell@dobby>
464
+
465
+ * src/org/xml/sax/helpers/NamespaceSupport.java:
466
+ enforce declare-before-use constraint; fix minor typo
467
+
468
+ 2001-10-18 dbrownell <dbrownell@dobby>
469
+
470
+ * src/org/xml/sax/ext/Attributes2.java: fix typo for id
471
+
472
+ * src/org/xml/sax/package.html: ids for new extension
473
+
474
+ * src/org/xml/sax/ext/package.html: update to reflect RFE fixes
475
+
476
+ * src/org/xml/sax/ext/Locator2.java, src/org/xml/sax/ext/Locator2Impl.java:
477
+ RFE 449377 -- expose entity encoding and version
478
+
479
+ * src/org/xml/sax/ext/Attributes2.java, src/org/xml/sax/ext/Attributes2Impl.java:
480
+ RFE 446713 - expose isStandalone
481
+
482
+ * ChangeLog, README: sync with sax2r2 branch, pre2 release
483
+
484
+ 2001-10-17 dbrownell <dbrownell@dobby>
485
+
486
+ * src/org/xml/sax/AttributeList.java, src/org/xml/sax/Attributes.java, src/org/xml/sax/ContentHandler.java, src/org/xml/sax/DTDHandler.java, src/org/xml/sax/DocumentHandler.java, src/org/xml/sax/EntityResolver.java, src/org/xml/sax/ErrorHandler.java, src/org/xml/sax/HandlerBase.java, src/org/xml/sax/InputSource.java, src/org/xml/sax/Locator.java, src/org/xml/sax/Parser.java, src/org/xml/sax/SAXException.java, src/org/xml/sax/SAXNotRecognizedException.java, src/org/xml/sax/SAXNotSupportedException.java, src/org/xml/sax/SAXParseException.java, src/org/xml/sax/XMLFilter.java, src/org/xml/sax/XMLReader.java, src/org/xml/sax/ext/DeclHandler.java, src/org/xml/sax/ext/LexicalHandler.java, src/org/xml/sax/helpers/AttributeListImpl.java, src/org/xml/sax/helpers/AttributesImpl.java, src/org/xml/sax/helpers/DefaultHandler.java, src/org/xml/sax/helpers/LocatorImpl.java, src/org/xml/sax/helpers/NamespaceSupport.java, src/org/xml/sax/helpers/NewInstance.java, src/org/xml/sax/helpers/ParserAdapter.java, src/org/xml/sax/helpers/ParserFactory.java, src/org/xml/sax/helpers/XMLFilterImpl.java, src/org/xml/sax/helpers/XMLReaderAdapter.java, src/org/xml/sax/helpers/XMLReaderFactory.java:
487
+ sync with sax2r2 branch, pre2 release
488
+
489
+ * src/org/xml/sax/helpers/AttributeListImpl.java, src/org/xml/sax/helpers/AttributesImpl.java, src/org/xml/sax/helpers/DefaultHandler.java, src/org/xml/sax/helpers/LocatorImpl.java, src/org/xml/sax/helpers/NamespaceSupport.java, src/org/xml/sax/helpers/NewInstance.java, src/org/xml/sax/helpers/ParserAdapter.java, src/org/xml/sax/helpers/ParserFactory.java, src/org/xml/sax/helpers/XMLFilterImpl.java, src/org/xml/sax/helpers/XMLReaderAdapter.java, src/org/xml/sax/helpers/XMLReaderFactory.java, README, src/org/xml/sax/AttributeList.java, src/org/xml/sax/Attributes.java, src/org/xml/sax/ContentHandler.java, src/org/xml/sax/DTDHandler.java, src/org/xml/sax/DocumentHandler.java, src/org/xml/sax/EntityResolver.java, src/org/xml/sax/ErrorHandler.java, src/org/xml/sax/HandlerBase.java, src/org/xml/sax/InputSource.java, src/org/xml/sax/Locator.java, src/org/xml/sax/Parser.java, src/org/xml/sax/SAXException.java, src/org/xml/sax/SAXNotRecognizedException.java, src/org/xml/sax/SAXNotSupportedException.java, src/org/xml/sax/SAXParseException.java, src/org/xml/sax/XMLFilter.java, src/org/xml/sax/XMLReader.java, src/org/xml/sax/ext/DeclHandler.java, src/org/xml/sax/ext/LexicalHandler.java:
490
+ label as sax2r2 pre2
491
+
492
+ 2001-10-15 dbrownell <dbrownell@dobby>
493
+
494
+ * src/org/xml/sax/SAXException.java, src/org/xml/sax/SAXParseException.java:
495
+ remove @see setLocale
496
+
497
+ * ChangeLog: describe latest 2 changes
498
+
499
+ * src/org/xml/sax/ext/DeclHandler.java: doc fix
500
+
501
+ * src/org/xml/sax/helpers/NamespaceSupport.java: doc updates
502
+
503
+ 2001-10-08 dbrownell <dbrownell@dobby>
504
+
505
+ * src/org/xml/sax/helpers/XMLReaderFactory.java: merge fix from sax2r2
506
+
507
+ * src/org/xml/sax/helpers/XMLReaderFactory.java:
508
+ fix: use value of property!
509
+
510
+ 2001-09-29 dbrownell <dbrownell@dobby>
511
+
512
+ * .cvsignore: add
513
+
514
+ * Makefile: add a Makefile for building
515
+
516
+ * ChangeLog: mention latest fixes
517
+
518
+ * src/org/xml/sax/ext/package.html, src/org/xml/sax/helpers/package.html, src/org/xml/sax/package.html:
519
+ make http://sax.sourceforge.net url visible
520
+
521
+ * src/org/xml/sax/helpers/ParserFactory.java:
522
+ use correct/secure class loader
523
+
524
+ * src/org/xml/sax/helpers/XMLReaderFactory.java:
525
+ be more robust [449378], use META-INF/services [449664],
526
+ use correct/secure class loader
527
+
528
+ * src/org/xml/sax/helpers/NewInstance.java:
529
+ Support for using correct/secure class loader.
530
+
531
+ 2001-09-28 dbrownell <dbrownell@dobby>
532
+
533
+ * src/org/xml/sax/helpers/ParserAdapter.java:
534
+ error path fix for undeclared prefix
535
+
536
+ 2001-09-26 dbrownell <dbrownell@dobby>
537
+
538
+ * ChangeLog: describe recent changes
539
+
540
+ * src/org/xml/sax/ext/package.html, src/org/xml/sax/helpers/package.html:
541
+ add xref to http://sax.sourceforge.net/
542
+
543
+ * docs/filters.html, docs/namespaces.html: minor updates
544
+
545
+ * src/org/xml/sax/helpers/NamespaceSupport.java:
546
+ remove sax@megginson.com email; clarify default prefix doc
547
+
548
+ * src/org/xml/sax/InputSource.java:
549
+ remove sax@megginson.com email; clarify stream close() rule
550
+
551
+ * src/org/xml/sax/ContentHandler.java, src/org/xml/sax/Attributes.java, src/org/xml/sax/DTDHandler.java, src/org/xml/sax/DocumentHandler.java, src/org/xml/sax/EntityResolver.java, src/org/xml/sax/ErrorHandler.java, src/org/xml/sax/HandlerBase.java, src/org/xml/sax/Locator.java, src/org/xml/sax/Parser.java, src/org/xml/sax/SAXException.java, src/org/xml/sax/SAXNotRecognizedException.java, src/org/xml/sax/SAXNotSupportedException.java, src/org/xml/sax/SAXParseException.java, src/org/xml/sax/XMLFilter.java, src/org/xml/sax/XMLReader.java, src/org/xml/sax/ext/DeclHandler.java, src/org/xml/sax/ext/LexicalHandler.java, src/org/xml/sax/helpers/AttributeListImpl.java, src/org/xml/sax/helpers/AttributesImpl.java, src/org/xml/sax/helpers/DefaultHandler.java, src/org/xml/sax/helpers/LocatorImpl.java, src/org/xml/sax/helpers/ParserAdapter.java, src/org/xml/sax/helpers/ParserFactory.java, src/org/xml/sax/helpers/XMLFilterImpl.java, src/org/xml/sax/helpers/XMLReaderAdapter.java, src/org/xml/sax/AttributeList.java:
552
+ remove sax@megginson.com email
553
+
554
+ 2001-08-21 dbrownell <dbrownell@dobby>
555
+
556
+ * src/org/xml/sax/ContentHandler.java:
557
+ clarify: start/end mapping immediately before/after element
558
+
559
+ 2001-08-08 dbrownell <dbrownell@dobby>
560
+
561
+ * src/org/xml/sax/Attributes.java: fix wrong @see
562
+
563
+ 2001-08-07 dbrownell <dbrownell@dobby>
564
+
565
+ * src/org/xml/sax/InputSource.java: doc fix (448847)
566
+
567
+ 2001-08-03 dbrownell <dbrownell@dobby>
568
+
569
+ * ChangeLog: describe recent changes
570
+
571
+ * src/org/xml/sax/DTDHandler.java, src/org/xml/sax/EntityResolver.java, src/org/xml/sax/ErrorHandler.java:
572
+ doc tweaks (447371)
573
+
574
+ * src/org/xml/sax/helpers/ParserAdapter.java:
575
+ namespace handling probs (441055, 441060)
576
+
577
+ 2001-08-01 dbrownell <dbrownell@dobby>
578
+
579
+ * ChangeLog: summarize last set of changes
580
+
581
+ * src/org/xml/sax/helpers/NamespaceSupport.java:
582
+ update doc (441056); popContext() frees most memory
583
+
584
+ * src/org/xml/sax/helpers/AttributesImpl.java:
585
+ fix array bounds bug, make strings gc-able (446875)
586
+
587
+ 2001-07-31 dbrownell <dbrownell@dobby>
588
+
589
+ * src/org/xml/sax/DTDHandler.java:
590
+ clarify endDTD(); don't absolutize notationDecl() sysID (446280)
591
+
592
+ * ChangeLog: merge extensions changelog; list recent updates
593
+
594
+ * src/org/xml/sax/ext/package.html: merge more package overview doc
595
+
596
+ 2001-07-30 dbrownell <dbrownell@dobby>
597
+
598
+ * src/org/xml/sax/ext/DeclHandler.java, src/org/xml/sax/ext/LexicalHandler.java, src/org/xml/sax/ext/package.html:
599
+ re-merge "extensions".
600
+
601
+ * docs/filters.html: fix typo
602
+
603
+ * src/org/xml/sax/EntityResolver.java: fix @see tag
604
+
605
+ * src/org/xml/sax/Locator.java: remove duplicated text
606
+
607
+ 2001-07-29 dbrownell <dbrownell@dobby>
608
+
609
+ * src/org/xml/sax/helpers/NamespaceSupport.java: doc tweak (445058)
610
+
611
+ * src/org/xml/sax/helpers/XMLReaderAdapter.java: tweak javadoc (445064)
612
+
613
+ * src/org/xml/sax/helpers/ParserAdapter.java:
614
+ workaround javadoc tool bug (445062)
615
+
616
+ 2001-07-14 dbrownell <dbrownell@dobby>
617
+
618
+ * src/org/xml/sax/package.html, src/org/xml/sax/helpers/package.html:
619
+ import
620
+
621
+ * src/org/xml/sax/EntityResolver.java: clarify javadoc
622
+
623
+ * src/org/xml/sax/helpers/DefaultHandler.java:
624
+ fix javadoc bug (wrong params)
625
+
626
+ * src/org/xml/sax/helpers/XMLReaderFactory.java:
627
+ no point in synchronizing (no state to protect)
628
+
629
+ 2001-07-12 dbrownell <dbrownell@dobby>
630
+
631
+ * src/org/xml/sax/helpers/AttributesImpl.java:
632
+ clear() now really clears
633
+
634
+ * src/org/xml/sax/helpers/ParserAdapter.java:
635
+ remove jdk 1.2 dependency, unused variable
636
+
637
+ 2000-12-28 David Megginson <dmeggin@attglobal.net>
638
+
639
+ * src/org/xml/sax/helpers/AttributesImpl.java, src/org/xml/sax/helpers/DefaultHandler.java, src/org/xml/sax/helpers/LocatorImpl.java, src/org/xml/sax/helpers/NamespaceSupport.java, src/org/xml/sax/helpers/ParserAdapter.java, src/org/xml/sax/helpers/ParserFactory.java, src/org/xml/sax/helpers/XMLFilterImpl.java, src/org/xml/sax/helpers/XMLReaderAdapter.java, src/org/xml/sax/helpers/XMLReaderFactory.java, src/org/xml/sax/helpers/AttributeListImpl.java, src/org/xml/sax/AttributeList.java, src/org/xml/sax/Attributes.java, src/org/xml/sax/ContentHandler.java, src/org/xml/sax/DTDHandler.java, src/org/xml/sax/DocumentHandler.java, src/org/xml/sax/EntityResolver.java, src/org/xml/sax/ErrorHandler.java, src/org/xml/sax/HandlerBase.java, src/org/xml/sax/InputSource.java, src/org/xml/sax/Locator.java, src/org/xml/sax/Parser.java, src/org/xml/sax/SAXException.java, src/org/xml/sax/SAXNotRecognizedException.java, src/org/xml/sax/SAXNotSupportedException.java, src/org/xml/sax/SAXParseException.java, src/org/xml/sax/XMLFilter.java, src/org/xml/sax/XMLReader.java, ChangeLog, README, build.xml:
640
+ SAX2 r2 prerelease
641
+
642
+ * docs/changes.html, docs/sax.html: SAX 2 r2 prerelease
643
+
644
+ 2000-12-27 David Megginson <dmeggin@attglobal.net>
645
+
646
+ * src/org/xml/sax/helpers/AttributesImpl.java, src/org/xml/sax/helpers/ParserAdapter.java, src/org/xml/sax/helpers/XMLReaderAdapter.java, src/org/xml/sax/helpers/XMLReaderFactory.java, src/org/xml/sax/EntityResolver.java, src/org/xml/sax/InputSource.java, src/SAXTest.java:
647
+ *** empty log message ***
648
+
649
+ 2000-09-16 David Megginson <dmeggin@attglobal.net>
650
+
651
+ * src/org/xml/sax/helpers/DefaultHandler.java, src/org/xml/sax/Attributes.java, src/org/xml/sax/SAXException.java, src/org/xml/sax/SAXNotRecognizedException.java, src/org/xml/sax/SAXNotSupportedException.java, ChangeLog:
652
+ *** empty log message ***
653
+
654
+ 2000-09-08 David Megginson <dmeggin@attglobal.net>
655
+
656
+ * build.xml: *** empty log message ***
657
+
658
+ * docs/changes.html, docs/features.html, docs/filters.html, docs/namespaces.html, docs/quick-start.html, docs/sax-style.css, docs/sax.html, src/org/xml/sax/AttributeList.java, src/org/xml/sax/Attributes.java, src/org/xml/sax/ContentHandler.java, src/org/xml/sax/DTDHandler.java, src/org/xml/sax/DocumentHandler.java, src/org/xml/sax/EntityResolver.java, src/org/xml/sax/ErrorHandler.java, src/org/xml/sax/HandlerBase.java, src/org/xml/sax/InputSource.java, src/org/xml/sax/Locator.java, src/org/xml/sax/Parser.java, src/org/xml/sax/SAXException.java, src/org/xml/sax/SAXNotRecognizedException.java, src/org/xml/sax/SAXNotSupportedException.java, src/org/xml/sax/SAXParseException.java, src/org/xml/sax/XMLFilter.java, src/org/xml/sax/XMLReader.java, src/org/xml/sax/helpers/AttributeListImpl.java, src/org/xml/sax/helpers/AttributesImpl.java, src/org/xml/sax/helpers/DefaultHandler.java, src/org/xml/sax/helpers/LocatorImpl.java, src/org/xml/sax/helpers/NamespaceSupport.java, src/org/xml/sax/helpers/ParserAdapter.java, src/org/xml/sax/helpers/ParserFactory.java, src/org/xml/sax/helpers/XMLFilterImpl.java, src/org/xml/sax/helpers/XMLReaderAdapter.java, src/org/xml/sax/helpers/XMLReaderFactory.java:
659
+
660
+ * docs/changes.html, docs/features.html, docs/filters.html, docs/namespaces.html, docs/quick-start.html, docs/sax-style.css, docs/sax.html, src/org/xml/sax/AttributeList.java, src/org/xml/sax/Attributes.java, src/org/xml/sax/ContentHandler.java, src/org/xml/sax/DTDHandler.java, src/org/xml/sax/DocumentHandler.java, src/org/xml/sax/EntityResolver.java, src/org/xml/sax/ErrorHandler.java, src/org/xml/sax/HandlerBase.java, src/org/xml/sax/InputSource.java, src/org/xml/sax/Locator.java, src/org/xml/sax/Parser.java, src/org/xml/sax/SAXException.java, src/org/xml/sax/SAXNotRecognizedException.java, src/org/xml/sax/SAXNotSupportedException.java, src/org/xml/sax/SAXParseException.java, src/org/xml/sax/XMLFilter.java, src/org/xml/sax/XMLReader.java, src/org/xml/sax/helpers/AttributeListImpl.java, src/org/xml/sax/helpers/AttributesImpl.java, src/org/xml/sax/helpers/DefaultHandler.java, src/org/xml/sax/helpers/LocatorImpl.java, src/org/xml/sax/helpers/NamespaceSupport.java, src/org/xml/sax/helpers/ParserAdapter.java, src/org/xml/sax/helpers/ParserFactory.java, src/org/xml/sax/helpers/XMLFilterImpl.java, src/org/xml/sax/helpers/XMLReaderAdapter.java, src/org/xml/sax/helpers/XMLReaderFactory.java:
661
+ New file.
662
+
663
+ * COPYING, ChangeLog, README:
664
+
665
+ * COPYING, ChangeLog, README: New file.
666
+