forked from ingelabs/classpath
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathChangeLog.gnujaxp.2
More file actions
1944 lines (1173 loc) · 62.8 KB
/
ChangeLog.gnujaxp.2
File metadata and controls
1944 lines (1173 loc) · 62.8 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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
This is an historic file listing changes from the old GNU JAXP project.
GNU JAXP is now part of GNU Classpath. New changes to these files are listed
in the main ChangeLog file or documented in the external subdirectories for
the w3c dom and sax sources.
2004-12-07 Chris Burdess <dog@gnu.org>
* dom: Minor DOM Level 3 Core conformance improvements.
2004-12-07 Mark Wielaard <mark@klomp.org>
* ReaderInputStream.java: Mark and reset implementation.
2004-12-06 Chris Burdess <dog@gnu.org>
* dom: Minor DOM Level 3 Core conformance improvements.
2004-12-06 Mark Wielaard <mark@klomp.org>
* TransformerImpl.java: Use StreamResult's Writer if no byte stream
is present.
2004-12-05 Chris Burdess <dog@gnu.org>
* TransformerImpl.java,XSLURIResolver.java: Permit identity
transforms with target nodes and null system IDs.
2004-12-04 Dalibor Topic <robilad@kaffe.org>
* ElementAvailableFunction.java,FunctionAvailableFunction.java,
KeyFunction.java,SortKey.java,Stylesheet.java,
SystemPropertyFunction.java,TransformerImpl.java,XSLComparator.java,
NameTest.java,NamespaceTest.java,XPathParser.java,QName.java:
Corrected QName.getLocalName to getLocalPart. Fixed missing imports.
2004-12-02 Chris Burdess <dog@gnu.org>
* TransformerImpl.java: Implemented JAXP user output properties.
* TransformerFactoryImpl.java: Implemented getAssociatedStylesheet.
2004-12-01 Chris Burdess <dog@gnu.org>
* StreamSerializer.java: Use BOM for UTF-16 output.
* XSLComparator.java: Implemented number data types.
* SortKey.java: Implemented AVTs.
* ApplyImportsNode.java: apply-imports implementation.
2004-11-29 Chris Burdess <dog@gnu.org>
* ls: Corrections to attribute namespaces.
* transform: element-available and function-available functions.
2004-11-29 Chris Burdess <dog@gnu.org>
* transform,xpath: Clone entire stylesheet trees for reuse of
stylesheets in JAXP templates.
2004-11-28 Chris Burdess <dog@gnu.org>
* StreamSerializer.java: Fix typo for disable-output-escaping.
2004-11-27 Julian Scheid <julian@sektor37.de>
* SubstringFunction.java: Fixed a bug which would copy one character
short if the length is specified explicitly.
* TransformerFactory.java,ImplementationSource.java: Load libxmlj
classes dynamically.
2004-11-26 Chris Burdess <dog@gnu.org>
* TransformerException.java,TransformerConfigurationException.java:
Include message from cause exception if none specified.
* transform: Import circularity detection.
2004-11-25 Chris Burdess <dog@gnu.org>
* xpath: Selector and node test fixes.
2004-11-24 Chris Burdess <dog@gnu.org>
* dom: Don't create attribute text node unless required.
* transform: Better whitespace stripping, xsl:number algorithm
improvements
* xpath: Improvements to math conformance.
2004-11-23 Chris Burdess <dog@gnu.org>
* dom: Use LS implementation for JAXP DocumentBuilder.
* ls: Fixed namespace node handling.
2004-11-22 Chris Burdess <dog@gnu.org>
* transform,xpath: Namespace context support.
* transform: XSL message instruction, special number handling, key()
function
2004-11-21 Chris Burdess <dog@gnu.org>
* dom: Use XMLConstants constants instead of literals.
* transform: Fixed infinite loop in roman numeral generation.
* xpath: Resolve functions at parse time.
2004-11-20 Chris Burdess <dog@gnu.org>
* dom: Do not report events during DOM construction.
2004-11-19 Chris Burdess <dog@gnu.org>
* transform: OASIS XSLT conformance improvements.
2004-11-18 Chris Burdess <dog@gnu.org>
* ls: Implemented more of FilteredSAXEventSink.
* transform: use-attribute-sets on literal result element.
2004-11-16 Chris Burdess <dog@gnu.org>
* dom: Implemented Document.renameNode, Document.normalizeDocument,
Element.setIdAttribute*. DomDocument.verifyXmlName accuracy was
improved. XML 1.1 Name, NCName, and Char checking was implemented,
and XML 1.0 rules applied.
2004-11-15 Chris Burdess <dog@gnu.org>
* dom: Improved DOM Level 3 conformance.
2004-11-14 Chris Burdess <dog@gnu.org>
* dom: TypeInfo implementations for DTD-specified type declarations.
* ls: New DOM Level 3 Load and Save implementation.
2004-11-11 Chris Burdess <dog@gnu.org>
* transform: Implemented decimal-formats and number formatting.
* xpath: Implemented XSL-style pattern matching.
2004-11-10 Chris Burdess <dog@gnu.org>
* transform: Additional XSLT XPath extension functions. More output
parameters taken into account. Attribute-sets and namespace aliases
implemented.
2004-11-09 Chris Burdess <dog@gnu.org>
* xpath: Separated functions into separate classes for efficiency.
Fixes to evaluation model, notably path components.
* transform: Fixes to XPath expression evaluation.
2004-11-08 Chris Burdess <dog@gnu.org>
* transform: Fixes to template calling in foreign stylesheets.
2004-11-04 Chris Burdess <dog@gnu.org>
* ContentHandler2.java: Extension interface for reporting XML
declaration.
* SAXDriver.java,XmlParser.java: Report XML declaration to content
handlers implementing the ContentHandler2 interface.
* Consumer.java,DomConsumer.java,EventFilter.java: Pass xmlDecl
events to ContentHandler2s.
* JAXPFactory.java: Set document URI during parse.
* transform,xpath: document() function, function calls, variable
binding fixes
2004-11-03 Chris Burdess <dog@gnu.org>
* dom: Refactoring of DomNode for efficiency, using pointers to
next/previous/first/last nodes instead of arrays of children, and
explicit node type without the need for a method call. Fixed
problems inserting DocumentFragments.
* transform: whitespace stripping; parameters and variables;
document() function.
* xpath: Name test fix.
2004-11-02 Chris Burdess <dog@gnu.org>
* transform: Fully compiled templates; many more XSL language
features supported; stream, SAX, and DOM results.
2004-10-31 Chris Burdess <dog@gnu.org>
* DomNode.java: Implement Comparable using natural document order.
* xpath: Use natural document ordering in DomNode.
2004-10-30 Chris Burdess <dog@gnu.org>
* transform: Experimental XSLT transformer using XPath
implementation.
2004-10-28 Chris Burdess <dog@gnu.org>
* xpath: Implemented XPathFactory.newInstance(); added missing
imports in GNU implementation.
2004-10-27 Chris Burdess <dog@gnu.org>
* xpath: Added JAXP XPath implementation. Variable references and
function calls now use JAXP resolver callback interfaces.
2004-10-20 Chris Burdess <dog@gnu.org>
* all: Updates to bring API in line with JAXP 1.3: introduction of
datatype, namespace, validation, and xpath JAXP packages and
miscellaneous updates to other packages. Style corrections.
2004-10-18 Chris Burdess <dog@gnu.org>
* xpath: Number parsing fixes.
2004-10-17 Chris Burdess <dog@gnu.org>
* xpath: XPath function calls.
2004-10-18 Dalibor Topic <robilad@kaffe.org>
* sources/gnu/xml/xpath/Index.java: Added missing include.
(toString) Convert left and right hand side to strings
explicitely.
2004-10-17 Chris Burdess <dog@gnu.org>
* xpath: Added experimental XPath 1.0 engine.
2004-10-06 Chris Burdess <dog@gnu.org>
* dom: Added framework for XPath expression evaluation.
2004-08-10 Musachy Barroso <musachy@gmail.com>
* XmlParser.java: Fixed bug while reading 0x2028. Check
for document version in external subset.
2004-08-10 Musachy Barroso <musachy@gmail.com>
* XmlParser.java: Convert 0x2028 to '\r' when document is 1.1
2004-08-08 Musachy Barroso <musachy@gmail.com>
* XmlParser.java: Report start name characters that are not
BaseChar. (more of them)
2004-08-08 Musachy Barroso <musachy@gmail.com>
* XmlParser.java: Report start name characters that are not
BaseChar.
2004-08-08 Musachy Barroso <musachy@gmail.com>
* XmlParser.java: Report NEL characters as igorable if document
is 1.1
2004-08-07 Musachy Barroso <musachy@gmail.com>
* XmlParser.java: Fixed bug while reading whitespaces in elements
content.
2004-08-06 Musachy Barroso <musachy@gmail.com>
* SAXDriver.java: Check added for missing prefix in namespace
declaration attribute.
2004-08-06 Musachy Barroso <musachy@gmail.com>
* XmlParser.java: Partial character ref, partial entity
references checks, moved to parseEntity(...)
2004-08-06 Musachy Barroso <musachy@gmail.com>
* SAXDriver.java: Checks added for colon in entities, PI and
notations. Unbounded prefixes error changed to fatal.
2004-08-05 Musachy Barroso <musachy@gmail.com>
* SAXDriver.java: Fixed bug intruduced with the partial character
ref, partial entity references checks.
2004-08-05 Musachy Barroso <musachy@gmail.com>
* SAXDriver.java: Fixed bug intruduced with the partial character
ref, partial entity references checks.
2004-08-03 Musachy Barroso <musachy@gmail.com>
* SAXDriver.java: Check added for namespaces names containing only
':'.
2004-07-31 Musachy Barroso <musachy@gmail.com>
* XmlParser.java: Improved check for partial character references
and partial entity references in internal entities.
2004-07-31 Musachy Barroso <musachy@gmail.com>
* XmlParser.java: Added check for partial character references
in internal entities.
2004-07-29 Musachy Barroso <musachy@gmail.com>
* SAXDriver.java: Added checks for invalid use of reserved
prefixes and namespaces.
2004-07-28 Musachy Barroso <musachy@gmail.com>
* XmlParser.java: Invalidate character range [0x7f - 0x9f] if the
document version is 1.1. 0x85(NEL) is still valid.
2004-07-25 Musachy Barroso <musachy@gmail.com>
* XmlParser.java: Fixed end-of-line handling to comply with sec 2.11.
2004-07-11 Musachy Barroso <musachy@gmail.com>
* XmlParser.java: Handle empty documents.
2004-07-11 Musachy Barroso <musachy@gmail.com>
* XmlParser.java: Call StartDocument at the right time.
2004-07-11 Musachy Barroso <musachy@gmail.com>
* XmlParser.java: Disable LIT_DISABLE_CREF flag on entities parsing.
2004-07-11 Musachy Barroso <musachy@gmail.com>
* SAXDriver.java: Refactoring of various attributes lists into a single list.
2004-06-24 Chris Burdess <dog@bluezoo.org>
* SAXDriver.java: Introduced reset method to reset state before
new parse. Thanks to Musachy Barroso.
2003-12-01 00:32 Arnaud Vandyck <avdyk@users.sourceforge.net>
* source/: *.java : Removed al the cvs
tags inside sources to avoid complicated synchro. Patch by
Dalibor Topic. Many thanks
2003-11-06 12:18 Arnaud Vandyck <avdyk@users.sourceforge.net>
* source/gnu/xml/aelfred2/: SAXDriver.java, XmlParser.java: Ito
conclusion patch
2003-11-06 12:11 Arnaud Vandyck <avdyk@users.sourceforge.net>
* source/gnu/xml/pipeline/XIncludeFilter.java: Call methods of
super class
2003-10-23 15:28 Arnaud Vandyck <avdyk@users.sourceforge.net>
* source/org/xml/sax/helpers/XMLReaderFactory.java: Wrong exception
catched, thanks to Michael Koch
2003-10-18 12:51 Arnaud Vandyck <avdyk@users.sourceforge.net>
* source/gnu/xml/aelfred2/SAXDriver.java: Ito Kazumitsu
<kaz@maczuka.gcd.org> found a case where GNU JAXP throws
unwanted SAXParseExceptions. This is his patch.
2003-09-13 15:56 Arnaud Vandyck <avdyk@users.sourceforge.net>
* source/javax/xml/transform/sax/SAXSource.java: Handle case where
sourceToInputSource() is called with an existing SAXSource.
Thanks to Jim Pick
<http://www.kaffe.org/pipermail/kaffe/2003-August/043709.html>
2003-09-13 15:43 Arnaud Vandyck <avdyk@users.sourceforge.net>
* source/gnu/xml/aelfred2/XmlParser.java: Corrected parseCharRef()
so that it may not flush data buffer when not desired. This patch
has been done by Ito Kazumitsu <kaz@maczuka.gcd.org>, many thanks
<http://www.kaffe.org/pipermail/kaffe/2003-September/043771.html>
2003-08-19 11:52 Arnaud Vandyck <avdyk@users.sourceforge.net>
* source/javax/xml/transform/TransformerException.java:
printStackTrace(System.out);// shouldn't it be System.err?
2003-08-19 11:51 Arnaud Vandyck <avdyk@users.sourceforge.net>
* source/javax/xml/transform/TransformerConfigurationException.java:
new instance variable SourceLocator locator and two new
constructors: public TransformerConfigurationException(String
msg, SourceLocator locator), public
TransformerConfigurationException(String msg, SourceLocator
locator, Throwable ex)
2003-08-16 10:50 Arnaud Vandyck <avdyk@users.sourceforge.net>
* source/javax/xml/parsers/SAXParser.java: parse(...) throws
IllegalArgumentException if the argument is null.
2003-08-16 10:49 Arnaud Vandyck <avdyk@users.sourceforge.net>
* source/javax/xml/parsers/DocumentBuilderFactory.java: JavaDoc
changes: getAttribute(String) and setAttribute(String,Object)
throws IllegalArgumentException if String is null, newInstance()
throws FactoryConfigurationError
2003-08-16 10:49 Arnaud Vandyck <avdyk@users.sourceforge.net>
* source/javax/xml/parsers/DocumentBuilder.java: parse([*]) throws
IllegalArgumentException if the argument is null. [*]File,
InputSource, InputStream, InputStream, String
2003-01-21 19:29 David Brownell <dbrownell@users.sourceforge.net>
* source/gnu/xml/pipeline/XIncludeFilter.java: identify some
limitations from a more recent CR
2003-01-21 19:18 David Brownell <dbrownell@users.sourceforge.net>
* source/gnu/xml/aelfred2/SAXDriver.java: report the illegal 'no
prefixes, no names' state
2003-01-21 19:14 David Brownell <dbrownell@users.sourceforge.net>
* source/javax/xml/parsers/ClassStuff.java: add ie workaround
2003-01-21 00:54 Nic Ferrier <nferrier@tapsellferrier.co.uk>
* source/javax/xml/parsers/ClassStuff.java: changed Exception to
Throwable.
2003-01-21 00:46 Nic Ferrier <nferrier@tapsellferrier.co.uk>
* source/: gnu/xml/aelfred2/SAXDriver.java,
org/xml/sax/ext/Attributes2.java,
org/xml/sax/ext/Attributes2Impl.java:
source/gnu/xml/aelfred2/SAXDriver.java
source/org/xml/sax/ext/Attributes2.java
source/org/xml/sax/ext/Attributes2Impl.java: added isDeclared()
definition.
2002-12-06 18:18 David Brownell <dbrownell@users.sourceforge.net>
* source/gnu/xml/aelfred2/XmlReader.java: don't change
namespace-prefixes setting when we bind() fixes bug reported with
Kaffe, from Ito Kazumitsu
2002-10-15 23:04 Nic Ferrier <nferrier@tapsellferrier.co.uk>
* tests/dom/: NodeType.java, nodetype.xml: new test code.
2002-10-15 23:03 Nic Ferrier <nferrier@tapsellferrier.co.uk>
* source/gnu/xml/util/DoParse.java:
source/gnu/xml/util/DoParse.java: added specific imports to fix a
GCJ compilation problem.
2002-10-15 23:02 Nic Ferrier <nferrier@tapsellferrier.co.uk>
* source/gnu/xml/aelfred2/XmlParser.java:
source/gnu/xml/aelfred2/XmlParser.java (parseEntityDecl): get the
value using flags instead of 0.
2002-10-15 23:01 Nic Ferrier <nferrier@tapsellferrier.co.uk>
* source/gnu/xml/dom/DomNode.java: source/gnu/xml/dom/DomNode.java
(checkMisc): debug code (commented out for now).
2002-10-15 22:59 Nic Ferrier <nferrier@tapsellferrier.co.uk>
* HACKING, Makefile.aj, Makefile.in, README, aclocal.m4,
automakejar, configure, configure.in: automakejar based build
system.
2002-05-31 18:09 David Brownell <dbrownell@users.sourceforge.net>
* source/gnu/xml/: dom/DomDocument.java, pipeline/DomConsumer.java:
xmlns URI needs a trailing "/"
2002-04-21 23:32 Nic Ferrier <nferrier@tapsellferrier.co.uk>
* source/gnu/xml/dom/DomNode.java: added getNodeType for GCJ
compatibility
2002-03-07 21:38 David Brownell <dbrownell@users.sourceforge.net>
* source/gnu/xml/aelfred2/XmlParser.java: cleanup, CDATA fix,
bigger symtab
2002-03-07 20:10 David Brownell <dbrownell@users.sourceforge.net>
* source/gnu/xml/aelfred2/SAXDriver.java: minor fixes
2002-03-07 20:06 David Brownell <dbrownell@users.sourceforge.net>
* source/gnu/xml/pipeline/EventFilter.java: ignore unrecognized
properties
2002-02-12 21:29 David Brownell <dbrownell@users.sourceforge.net>
* source/gnu/xml/pipeline/XsltFilter.java: bugfix: hookup output
2002-02-08 20:15 David Brownell <dbrownell@users.sourceforge.net>
* source/gnu/xml/util/Resolver.java: @see XCat
2002-02-08 19:51 David Brownell <dbrownell@users.sourceforge.net>
* source/javax/xml/: parsers/DocumentBuilder.java,
transform/stream/StreamSource.java: expect JVM to report
FileNotFoundException
2002-02-03 02:42 David Brownell <dbrownell@users.sourceforge.net>
* source/gnu/xml/util/XCat.java: doc tweaks
2002-02-02 22:21 David Brownell <dbrownell@users.sourceforge.net>
* Makefile.in: add null transform
2002-02-02 22:10 David Brownell <dbrownell@users.sourceforge.net>
* source/gnu/xml/util/SAXNullTransformerFactory.java: create
2002-02-01 21:06 David Brownell <dbrownell@users.sourceforge.net>
* source/org/xml/sax/*.java: sync with SAX (2.0.1)
2001-12-31 23:51 David Brownell <dbrownell@users.sourceforge.net>
* source/gnu/xml/dom/DomImpl.java: don't create xmlns attribute
2001-12-13 20:20 David Brownell <dbrownell@users.sourceforge.net>
* source/gnu/xml/pipeline/EventFilter.java: don't force static
linking of so many other classes
2001-12-10 21:08 David Brownell <dbrownell@users.sourceforge.net>
* source/gnu/xml/aelfred2/XmlReader.java: thinner import
2001-12-06 00:16 David Brownell <dbrownell@users.sourceforge.net>
* source/javax/xml/parsers/SAXParser.java: doesn't discard File
naming any more; doc and cleanup
2001-12-05 23:49 David Brownell <dbrownell@users.sourceforge.net>
* source/javax/xml/parsers/: DocumentBuilderFactory.java,
SAXParserFactory.java: rm extra import
2001-12-05 23:48 David Brownell <dbrownell@users.sourceforge.net>
* source/javax/xml/parsers/DocumentBuilder.java: minor doc tweaks,
fileToUrl is package-private
2001-12-05 21:54 David Brownell <dbrownell@users.sourceforge.net>
* source/gnu/xml/aelfred2/XmlParser.java: report VC +
skippedEntity() if skipped PEs; report PE Nesting VCs; Microstar
said "PD" too
2001-12-05 21:33 David Brownell <dbrownell@users.sourceforge.net>
* source/gnu/xml/aelfred2/SAXDriver.java: update note re Microstar
license
2001-12-03 22:35 David Brownell <dbrownell@users.sourceforge.net>
* source/gnu/xml/aelfred2/XmlParser.java: report char data without
extra buffer copy
2001-11-30 00:35 David Brownell <dbrownell@users.sourceforge.net>
* source/gnu/xml/util/DomParser.java: note conflict with Namespace
REC
2001-11-29 23:56 David Brownell <dbrownell@users.sourceforge.net>
* source/gnu/xml/pipeline/: CallFilter.java, XIncludeFilter.java:
compile on jdk 1.1
2001-11-29 23:55 David Brownell <dbrownell@users.sourceforge.net>
* source/gnu/xml/pipeline/DomConsumer.java: note conflict with
Namespace REC
2001-11-29 23:48 David Brownell <dbrownell@users.sourceforge.net>
* source/gnu/xml/dom/: Consumer.java, DomDoctype.java,
DomDocument.java, DomNamedNodeMap.java: compile with jdk 1.1
2001-11-29 23:38 David Brownell <dbrownell@users.sourceforge.net>
* source/javax/xml/: parsers/ClassStuff.java,
transform/ClassStuff.java: compile with jdk 1.1
2001-11-24 23:26 David Brownell <dbrownell@users.sourceforge.net>
* Makefile.in: add XCat
2001-11-24 23:21 David Brownell <dbrownell@users.sourceforge.net>
* source/gnu/xml/util/XCat.java: create
2001-11-21 03:29 David Brownell <dbrownell@users.sourceforge.net>
* manifest.mf: for now, don't seal
2001-11-21 03:04 David Brownell <dbrownell@users.sourceforge.net>
* README: update
2001-11-21 02:53 David Brownell <dbrownell@users.sourceforge.net>
* source/gnu/xml/dom/DomNode.java: minor speedups for traversal and
notification
2001-11-21 02:36 David Brownell <dbrownell@users.sourceforge.net>
* source/org/xml/sax/*.java: sync w/sax2r2pre3
2001-11-20 23:23 David Brownell <dbrownell@users.sourceforge.net>
* source/gnu/xml/aelfred2/XmlParser.java: minor cleanup to char ref
parsing
2001-11-20 05:57 David Brownell <dbrownell@users.sourceforge.net>
* source/gnu/xml/dom/: DomEvent.java, DomEx.java, DomImpl.java,
DomIterator.java: update copyright date
2001-11-20 05:54 David Brownell <dbrownell@users.sourceforge.net>
* source/gnu/xml/dom/DomText.java: move getNodeType() back into
subclasses; rm isIgnorable
2001-11-20 05:53 David Brownell <dbrownell@users.sourceforge.net>
* source/gnu/xml/dom/DomAttr.java, DomCDATA.java,
DomCharacterData.java, DomComment.java, DomDoctype.java,
DomDocument.java, DomElement.java, DomEntity.java,
DomEntityReference.java, DomExtern.java, DomFragment.java,
DomNotation.java, DomNsNode.java, DomPI.java: move getNodeType()
back into subclasses
2001-11-20 05:48 David Brownell <dbrownell@users.sourceforge.net>
* source/gnu/xml/dom/DomNode.java: move getNodeType() back into
subclasses
2001-11-20 05:46 David Brownell <dbrownell@users.sourceforge.net>
* source/gnu/xml/dom/: Consumer.java, DomNamedNodeMap.java: space
savings for attribute lists
2001-11-20 02:20 David Brownell <dbrownell@users.sourceforge.net>
* source/gnu/xml/dom/: Consumer.java, DomNode.java: compact lists
of children
2001-11-20 02:15 David Brownell <dbrownell@users.sourceforge.net>
* source/gnu/xml/util/XMLWriter.java: force output buffering; don't
use String.toCharArray() so much
2001-11-19 23:29 David Brownell <dbrownell@users.sourceforge.net>
* source/gnu/xml/pipeline/DomConsumer.java: support cheaper
construction
2001-11-19 23:23 David Brownell <dbrownell@users.sourceforge.net>
* source/gnu/xml/dom/: DomCDATA.java, DomText.java, Consumer.java,
DomDocument.java: support cheaper construction
2001-11-19 23:21 David Brownell <dbrownell@users.sourceforge.net>
* source/gnu/xml/dom/DomCharacterData.java: use char arrays, not
strings
2001-11-19 19:49 David Brownell <dbrownell@users.sourceforge.net>
* source/gnu/xml/dom/DomDocument.java: check chars by default
2001-11-19 19:27 David Brownell <dbrownell@users.sourceforge.net>
* source/gnu/xml/aelfred2/SAXDriver.java: fix no-namespaces bug in
previous
2001-11-19 06:23 David Brownell <dbrownell@users.sourceforge.net>
* source/gnu/xml/aelfred2/SAXDriver.java: correctly re-init
namespace support
2001-11-19 06:12 David Brownell <dbrownell@users.sourceforge.net>
* Makefile.in: add javadoc package.html files
2001-11-19 05:48 David Brownell <dbrownell@users.sourceforge.net>
* source/gnu/xml/dom/DomDocument.java: more attr defaulting on
create
2001-11-19 05:37 David Brownell <dbrownell@users.sourceforge.net>
* source/javax/xml/: transform/dom/package.html,
transform/stream/package.html, parsers/package.html: create
2001-11-19 04:27 David Brownell <dbrownell@users.sourceforge.net>
* source/gnu/xml/dom/Consumer.java: force name checking off in
2nd-Nth passes too
2001-11-19 04:24 David Brownell <dbrownell@users.sourceforge.net>
* source/gnu/xml/dom/JAXPFactory.java: use AElfred2 (conformance,
performance)
2001-11-19 00:29 David Brownell <dbrownell@users.sourceforge.net>
* source/gnu/xml/aelfred2/XmlParser.java: speedup comment, PI,
CDATA for faster parsing of well commmented dtds, and less
garbage
2001-11-17 04:02 David Brownell <dbrownell@users.sourceforge.net>
* README: update DOM test status
2001-11-17 03:38 David Brownell <dbrownell@users.sourceforge.net>
* source/gnu/xml/dom/DomNode.java: correct namespace filtering
2001-11-17 03:27 David Brownell <dbrownell@users.sourceforge.net>
* source/gnu/xml/dom/DomAttr.java: set isSpecified when value
changes
2001-11-17 00:17 David Brownell <dbrownell@users.sourceforge.net>
* source/gnu/xml/dom/: DomDocument.java, DomElement.java: namespace
fixes
2001-11-17 00:12 David Brownell <dbrownell@users.sourceforge.net>
* source/gnu/xml/pipeline/DomConsumer.java: namespace fixes
2001-11-16 23:46 David Brownell <dbrownell@users.sourceforge.net>
* source/gnu/xml/dom/DomNode.java: localname null in most cases
2001-11-16 23:44 David Brownell <dbrownell@users.sourceforge.net>
* source/gnu/xml/dom/DomNsNode.java: more errors to check for
2001-11-16 23:42 David Brownell <dbrownell@users.sourceforge.net>
* source/gnu/xml/dom/DomNamedNodeMap.java: default namespaced attrs
too
2001-11-16 21:24 David Brownell <dbrownell@users.sourceforge.net>
* source/gnu/xml/dom/DomDocument.java: createElement defaults
attrs; getElementById; NS fix
2001-11-16 21:14 David Brownell <dbrownell@users.sourceforge.net>
* source/gnu/xml/dom/DomNamedNodeMap.java: restore defaulted
attributes
2001-11-16 21:13 David Brownell <dbrownell@users.sourceforge.net>
* source/gnu/xml/dom/Consumer.java: save attribute default/ID info
2001-11-16 21:09 David Brownell <dbrownell@users.sourceforge.net>
* source/gnu/xml/dom/DomDoctype.java: remember defaulted/ID
attributes
2001-11-16 14:34 David Brownell <dbrownell@users.sourceforge.net>
* source/gnu/xml/dom/DomDocument.java: fix off-by-one w/namespaces
2001-11-16 10:08 David Brownell <dbrownell@users.sourceforge.net>
* source/gnu/xml/dom/JAXPFactory.java: use right feature id for
validation
2001-11-16 09:37 David Brownell <dbrownell@users.sourceforge.net>
* source/gnu/xml/pipeline/DomConsumer.java: entity refs can now be
on stack
2001-11-14 22:54 David Brownell <dbrownell@users.sourceforge.net>
* README: update
2001-11-14 22:23 David Brownell <dbrownell@users.sourceforge.net>
* source/gnu/xml/dom/package.html: describe MT behavior
2001-11-14 22:13 David Brownell <dbrownell@users.sourceforge.net>
* source/gnu/xml/aelfred2/: SAXDriver.java, XmlParser.java: support
EntityResolver2; cleanup
2001-11-13 21:57 David Brownell <dbrownell@users.sourceforge.net>
* Makefile.in: add EntityResolver2 extension
2001-11-13 21:54 David Brownell <dbrownell@users.sourceforge.net>
* source/org/xml/sax/: package.html, ext/Locator2.java: sync with
latest
2001-11-13 21:46 David Brownell <dbrownell@users.sourceforge.net>
* source/org/xml/sax/ext/: DefaultHandler2.java,
EntityResolver2.java: sync w/latest (alpha) extensions
2001-11-13 21:44 David Brownell <dbrownell@users.sourceforge.net>
* source/org/xml/sax/helpers/XMLReaderFactory.java: add
compile-time fallback
2001-11-13 21:43 David Brownell <dbrownell@users.sourceforge.net>
* source/org/xml/sax/helpers/NewInstance.java: sync: build with jdk
1.1
2001-11-13 21:41 David Brownell <dbrownell@users.sourceforge.net>
* source/org/xml/sax/: ext/package.html, helpers/package.html: doc
sync
2001-11-12 00:15 David Brownell <dbrownell@users.sourceforge.net>
* source/gnu/xml/aelfred2/XmlParser.java: match all other SAX2
parser startDTD calls
2001-11-11 07:53 David Brownell <dbrownell@users.sourceforge.net>
* source/gnu/xml/aelfred2/XmlParser.java: cleaner handling of base
URI and absolutizing
2001-11-11 07:49 David Brownell <dbrownell@users.sourceforge.net>
* source/gnu/xml/aelfred2/SAXDriver.java: don't report illegal
system IDs
2001-11-11 04:27 David Brownell <dbrownell@users.sourceforge.net>
* source/gnu/xml/pipeline/EventFilter.java: throw
SAXNotSupportedException
2001-11-10 19:36 David Brownell <dbrownell@users.sourceforge.net>
* source/gnu/xml/aelfred2/XmlParser.java: handles Japanese/... docs
again; correctly flush text before reading an external entity
2001-11-10 00:02 David Brownell <dbrownell@users.sourceforge.net>
* Makefile.in: util.DefaultHandler -> sax.ext.DefaultHandler2
2001-11-10 00:00 David Brownell <dbrownell@users.sourceforge.net>
* source/gnu/xml/util/DefaultHandler.java: remove -- replaced by
org.xml.sax.ext.DefaultHandler2
2001-11-09 23:58 David Brownell <dbrownell@users.sourceforge.net>
* source/gnu/xml/util/DomParser.java: use DefaultHandler2
2001-11-09 23:55 David Brownell <dbrownell@users.sourceforge.net>
* source/gnu/xml/aelfred2/: SAXDriver.java, XmlReader.java: use
ext/Defaulthandler2
2001-11-09 23:53 David Brownell <dbrownell@users.sourceforge.net>
* source/gnu/xml/pipeline/EventFilter.java: use ext/DefaultHandler2
not util/DefaultHandler
2001-11-09 23:53 David Brownell <dbrownell@users.sourceforge.net>
* source/gnu/xml/pipeline/: NSFilter.java, PipelineFactory.java,
ValidationConsumer.java, WellFormednessFilter.java: rm import of
unused class
2001-11-09 22:03 David Brownell <dbrownell@users.sourceforge.net>
* source/gnu/xml/aelfred2/XmlParser.java: unrecognized URI schemes
are sometimes OK
2001-11-09 21:26 David Brownell <dbrownell@users.sourceforge.net>
* source/gnu/xml/aelfred2/SAXDriver.java: refix
startEntity/resolveEntity sequence; null sysid OK given char/byte
stream; default handlers are null
2001-11-09 21:24 David Brownell <dbrownell@users.sourceforge.net>
* source/gnu/xml/aelfred2/XmlParser.java: refix
startEntity/resolveEntity sequence; don't absolutize null sysid
2001-11-07 03:07 David Brownell <dbrownell@users.sourceforge.net>
* source/org/xml/sax/ext/DefaultHandler2.java,
source/org/xml/sax/package.html, Makefile.in: sync w/sax2-ext
2001-11-07 03:03 David Brownell <dbrownell@users.sourceforge.net>
* source/gnu/xml/util/DomParser.java: get/set nulls for properties
2001-11-07 02:17 David Brownell <dbrownell@users.sourceforge.net>
* source/gnu/xml/aelfred2/XmlParser.java: resolve-dtd-uris flag; rm
unused fn()
2001-11-07 02:12 David Brownell <dbrownell@users.sourceforge.net>
* source/gnu/xml/aelfred2/SAXDriver.java: resolve-dtd-uris flag;
unset props are null
2001-11-06 06:45 David Brownell <dbrownell@users.sourceforge.net>
* source/org/xml/sax/: XMLReader.java,
helpers/NamespaceSupport.java, helpers/ParserAdapter.java,
helpers/XMLFilterImpl.java: sync with sax@sourceforge
2001-11-05 23:55 David Brownell <dbrownell@users.sourceforge.net>
* source/gnu/xml/aelfred2/XmlReader.java: validation forces some
flag settings
2001-11-05 23:38 David Brownell <dbrownell@users.sourceforge.net>
* source/gnu/xml/aelfred2/: SAXDriver.java, XmlParser.java:
optionally skip external PEs/GEs
2001-11-05 08:25 David Brownell <dbrownell@users.sourceforge.net>
* source/gnu/xml/aelfred2/XmlParser.java: bugfix UTF-8 BOM support
2001-11-05 07:46 David Brownell <dbrownell@users.sourceforge.net>
* source/gnu/xml/pipeline/ValidationConsumer.java: E20 erratum
2001-11-04 04:58 David Brownell <dbrownell@users.sourceforge.net>
* source/gnu/xml/dom/Consumer.java: after it's parsed, start to
check names
2001-11-04 04:43 David Brownell <dbrownell@users.sourceforge.net>
* source/gnu/xml/dom/DomNode.java: blush ;)
2001-11-04 02:38 David Brownell <dbrownell@users.sourceforge.net>
* source/gnu/xml/util/XMLWriter.java: write PE decls correctly
2001-11-04 02:18 David Brownell <dbrownell@users.sourceforge.net>
* source/gnu/xml/dom/package.html: cleanup
2001-11-04 02:17 David Brownell <dbrownell@users.sourceforge.net>
* source/gnu/xml/dom/Consumer.java: populate entity ref nodes
2001-11-04 02:15 David Brownell <dbrownell@users.sourceforge.net>
* source/gnu/xml/dom/JAXPFactory.java: fixes to option handling
2001-11-04 02:11 David Brownell <dbrownell@users.sourceforge.net>
* source/gnu/xml/pipeline/DomConsumer.java: hooks to populate
entity refs; cleanup for noise options
2001-11-04 01:51 David Brownell <dbrownell@users.sourceforge.net>
* source/gnu/xml/dom/DomNode.java: event bugfixes, construction
tweak
2001-11-04 01:49 David Brownell <dbrownell@users.sourceforge.net>
* source/gnu/xml/aelfred2/XmlParser.java: bugfix reporting for
internal entities; misc
2001-11-04 00:28 David Brownell <dbrownell@users.sourceforge.net>
* source/gnu/xml/util/XMLWriter.java: better indenting
2001-11-03 01:51 David Brownell <dbrownell@users.sourceforge.net>
* README: update
2001-11-03 01:51 David Brownell <dbrownell@users.sourceforge.net>
* LICENSE: clarify
2001-11-03 01:50 David Brownell <dbrownell@users.sourceforge.net>
* source/gnu/xml/aelfred2/JAXPFactory.java: patch from Mike Gratton
<mike@vee.net>
2001-11-03 01:44 David Brownell <dbrownell@users.sourceforge.net>
* Makefile.in: cleanup, add release target