-
Notifications
You must be signed in to change notification settings - Fork 118
/
CHANGES.txt
1407 lines (951 loc) · 50.2 KB
/
CHANGES.txt
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 file is no longer maintained. Please see the GitHub Commits !!!
https://github.com/hunterhacker/jdom/commits/master
* * * * * * JDOM 1.1.1 (tag: jdom_1_1_1) from JDOM 1.1 * * * * * *
Fixed a synchronization issue in the Namespace class that could cause a
hang when doing concurrent builds.
Added output support for Unicode surrogate pairs.
Added a new flag on SAXBuilder named setFastReconfigure() which, when set,
can speed reconfiguration by skipping repeated attempts to set features that
are determined not to be present on a parser. Useful when doing many builds
per second.
Updated the provided Jaxen library from a modified Jaxen 1.0 to the latest
which is Jaxen 1.1.1.
Added reflection code in the error reporting system to support Android's
Dalvik VM which doesn't have the java.rmi.* classes.
* * * * * * JDOM 1.1 (tag: jdom_1_1) from JDOM 1.0 * * * * * *
Added an additional constructor to JDOMSource with an EntityResolver which is
passed to the internal DocumentReader allowing the SAXOutputter to properly
resolve DTDs.
Added a forceNamespaceAware property to DOMOutputter which specifies you want
a DOM constructed with namespaces even if the source JDOM document has no
namespaces.
Added support for attribute "INF" and "-INF" values, to indicate positive and
negative infinity, as XML Schema allows.
Moved isXMLWhitespace() method from private in XMLOutputter to public in
Verifier.
Clarified XMLOutputter behavior with newlines and indents:
setIndent(" ") means newlines and " " indents
setIndent("") means newlines and "" indents
setIndent(null) means no newlines and no indents
Added set/getIgnoringBoundaryWhitespace() methods and features to SAXBuilder
and SAXHandler.
Added a setFactory() method on XSLTransformer to control the object types
built by the transform.
Added a string constant for the JDOM_OBJECT_MODEL_URI used by JAXP 1.3. It
deserves being part of the public API.
Fixed bug in SAXOutputter where default namespaces would be declared as
xmlns:="" with a spurious colon.
Fixed bug when using attributes without a namespace and outputting to a
JDOMResult.
Removing check that a comment not start with a hyphen. A careful reading of
production 15 in the XML 1.0 spec indicates leading hyphens are in fact
allowed.
Fixed bug where outputFragment() on SAXOutputter could cause a
NullPointerException because the locator would be null during the call.
Fixed bug where serializing ElementFilter causes a NullPointerException if the
filter has no assigned namespace
Fixed some subtle bad behaviors in listIterator.add() logic, using brand new
iterator logic.
Allowed a String to be passed to ContentList.add(int, Object).
Simplified JDOMAbout and renamed info.xml to jdom-info.xml, so
getResourceAsStream() won't suffer any name collision.
Fixed tiny issue where CDATA could be set with illegal character content.
Added logic to escape some special characters in namespace URIs.
Fixed bug where the attribute type would change on a setAttribute() call.
Improved performance on Namespace handling.
Improved and clarified Javadocs.
* * * * * * JDOM 1.0 (tag: jdom_1_0) from JDOM Beta10 * * * * * *
Added a new lib/jaxen-jdom.jar that solves some XPath ancestry problems
introduced by the Parent interface. See the new lib/jaxen.readme for
details.
Moved the addContent() and setContent() methods from Parent into Element and
Document directly. This re-enables method chaining that some people missed.
Fixed a few bugs in SAXOutputter: start/endPrefixMapping was not being fired
for no namespace, DocType was being improperly constructed, changed to use a
DefaultHandler with the dtd parser to better suppress unimportant problems.
Added SAXOutputter support for outputting fragments of documents with the
new methods:
output(Content)
outputFragment(List)
outputFragment(Content)
Added support in XMLOutputter for ignoring the JAXP processing instructions
<?javax.xml.transform.enable-output-escaping?> and
<?javax.xml.transform.disable-output-escaping?>. Respect for these PIs is
toggled by the Format.set/getIgnoreTrAXEscapingPIs() feature, default false.
Added to JDOMFactory the methods document(Element rootElement, DocType
docType, String baseURI) and entityRef(String elementName, String systemID).
These match constructors that were previously overlooked. Also added
implementations to DefaultJDOMFactory and UnverifiedJDOMFactory.
Added to Element the method getParentElement() that returns the parent element
or null if the object is unattached or the root element.
Fixed bug in FilterIterator that affected next() calls.
Fixed bug in DOMOutputter regarding extraneous namespace declarations
appearing under certain conditions.
Changed XMLOutputter to clone the Format objects when they're set/get
Fixed bug in JDOMResult where the result list could include incomplete
results in certain situations, fixed by forcing a flush.
Made SAXHandler.flushCharacters() protected again after being private. It's
needed for the above fix.
Changed Verifier.isXXX() methods from private to public as it was well
argued that they're based on unchanging spec productions and can be
generally useful even apart from JDOM.
Added support for surrogate pairs in the Verifier. (Surrogate pairs don't
yet have any special output support.)
Fixed bug in SAXBuilder to avoid an IllegalStateException when apps access
the partial document when parse failure occurs right after the beginning of
the parse.
Updated JaxenXPath to avoid the deprecated XPath.valueOf().
Brought the jdom-contrib ElementScanner up to date.
Fixed various Javadoc typos.
Removed the build-time dependence on saxpath.jar.
Removed all deprecated methods.
Fixed bug where in "pretty print" output EntityRef instances would erroneously
print on their own line.
Added character encoding rules to improve whitespace round tripping:
http://lists.denveronline.net/lists/jdom-interest/2003-July/013227.html
Added DOMBuilder.getFactory() method to match what we added to SAXBuilder.
Removed Parent.canContain() and the Document and Element implementations.
Moved the logic directly into ContentList. No reason to expose a public
method unless it has a general purpose.
Reduced the visibility on some XMLOutputter internals that we don't want to
guarantee support for over the long term. Some people who want custom output
formatting may need to copy some code blocks. That's OK since JDOM is open
source and while it's less than ideal, it's better than our exposing protected
internal variables and methods that we may have reason to change later.
Now marked private:
userFormat
printString()
printContentRange()
printTextRange()
Now static final:
preserveFormat
Removed some unnecessary casts.
Made a few private methods static where it made sense. Also a select
few protected methods.
Made the Format constructor private. It used to be pkg protected which
doesn't make a lot of sense.
Removed equals() from AbstractFilter since it's better to let concrete
subclasses define that, as they already were.
Removed some unnecessary instanceof and != null checks.
--
Added an UncheckedJDOMFactory class which builds without doing any
content or structure checks, letting you gain speed in a situation
where you have 100% confidence in your parser. The Javadocs for
the class naturally includes a serious warning.
It's not used by default, but you can select it with a
builder.setFactory(new UncheckedJDOMFactory()) call.
I also added to JDOMFactory a few methods:
addContent(Parent, Content)
setAttribute(Element, Attribute)
addNamespaceDeclaration(Element, Namespace)
These are called during the build to do the adds. The default builder
just calls parent.addContent(Content) while the "unchecked" factory does
the work without checks using package protected methods on ContentList
and AttributeList.
A perk of having these methods in the factory and used by the builder
is you can write a custom factory to do certain things during the adds.
Like you could ignore all elements named "foo" by not doing the add if
the Content was an Elt foo. That's not perfect since the elements
underneath foo would still be built into a subtree that got ignored,
but it's an easy solution to save memory in the resulting document.
--
* * * * * * Beta10 (tag: jdom_1_0_b10) from Beta9 * * * * * *
PARENT AND CONTENT
------------------
Added a new Parent interface and a new Content abstract class. Parent is
implemented by Document and Element. Content is extended by Element, Comment,
DocType, EntityRef, ProcessingInstruction, and Text (CDATA).
Parent has methods (* means new):
Parent addContent(Content child);
* Parent addContent(Collection collection);
* Parent addContent(int index, Content child);
* Parent addContent(int index, Collection collection);
* List cloneContent();
* void canContain(Content, int);
List getContent();
List getContent(Filter filter);
* Content getContent(int index);
* int getContentSize();
* Iterator getDescendants()
* Iterator getDescendants(Filter)
* Document getDocument()
* Parent getParent()
* int indexOf(Content)
* List removeContent();
boolean removeContent(Content child);
* List removeContent(Filter filter);
* Content removeContent(int index);
Parent setContent(Content child);
Parent setContent(Collection collection);
* Parent setContent(int index, Content child);
* Parent setContent(int index, Collection collection);
Object clone();
Content has public methods:
Content detach();
Document getDocument();
Parent getParent();
* String getValue();
Object clone();
The new methods on Parent are pretty self explanatory. A few methods that used
to require getting the content List now work on Parent itself for convenience
(tired of all those FAQs). The cloneContent() and removeContent() calls
should be especially helpful. The getDescendants() methods is great in
providing a mechanism to walk the entire tree from this item down using an
optional filter.
The getValue() method in Content is defined to return the XPath 1.0 string
value of the element. The getText() methods in Element are left unchanged.
A subtle change is that getParent() now returns a Parent type which is its
immediate parent. Previously an item at the document level would return null
and you'd use getDocument() to get its Document. Parent has getParent() as
well to make repeated getParent() calls easier.
The protected setDocument() methods have been removed in favor of just using
setParent(). getDocument() remains as a potentially recursive lookup method.
NEW CLASSES
-----------
Added an org.jdom.transform.XSLTransformer class to help with simple
transformations. It's a one-liner now, the way it should be. Also added an
XSLTransformException class to support the XSLTransformer.
Added an org.jdom.output.Format class to control XMLOutputter behavior.
Format has convenience methods .getRawFormat(), .getPrettyFormat(), and
.getCompactFormat() to use in lieu of people having to remember when to trim,
set indents, and such. The old XMLOutputter.set*() methods are now deprecated
and should be called on a Format instance. The XMLOutputter constructors that
took indents and so on are also deprecated.
Added an EscapeStrategy plug-in interface for XMLOutputter to determine which
chars to escape. A user can set a strategy and go, no need to subclass.
Created a DefaultEscapeStrategy which tries to be generally smart. It quickly
says no escaping is necessary for UTF-8 (our default) and UTF-16. It escapes
everything above 255 for ISO-8859-1/Latin1. It escapes everything above 127
for ASCII. For the other charsets, it tries to use the JDK 1.4 CharsetEncoder
to determine if the char needs escaping. Reflection is used for this so JDOM
isn't dependent on JDK 1.4. That means if you run on JDK 1.3 there's no
escaping unless JDOM knows about the charset itself or you plug in your own.
Added a Format.TextMode inner class with values: PRESERVE, TRIM, NORMALIZE,
and TRIM_FULL_WHITE. Removed the methods setTextTrim(), setTextNormalize(),
and setTrimAllWhite(). Replaced them with setTextMode(Format.TextMode) and
getTextMode().
Moved org.jdom.input.JDOMFactory and org.jdom.input.DefaultJDOMFactory into
the org.jdom package.
NEW METHODS
-----------
Added Document.setBaseURI(String) and getBaseURI() to record the effective URI
from which the document was loaded (against which relative URLs in the
document should be resolved). The builders record the URI when possible.
Added a Document(Element, DocType, String baseURI) constructor.
ENHANCEMENTS
------------
Incorporated Jaxen 1.0 and Xerces 2.6.1.
Enhanced the filter classes so they extend a new AbstractFilter class and
inherit its and(), or(), and negate() methods.
Added proper hashCode() methods to the filters.
Changed the Document's DocType storage so it's part of the ContentList now and
has a location that can be preserved. This helps with round tripping. The
getDocType() and setDocType() methods remain for convenience but just operate
based on searches through the ContentList. Adding logic to ensure the DOCTYPE
isn't added after the root, or vice-versa.
The Attribute class now trims its value before attempted conversion to a
double, float, or boolean values. Also "1" and "0" are legal boolean values
following the lead of Schema.
Added better support for loading from files whose names have special
characters like #.
Added a protected SAXHandler.flushCharacters(String) method to allow
subclassers to have more control over strings.
BUG FIXES
---------
Fixed bug in AttributeList.clear() where the cleared list did not reset its
size to 0, causing NullPointerException when the list was reused.
Fixed bug where serializing a content list using a filter. It wouldn't work
because FilterList wasn't serializable. It is now.
Fixed bug in ContentList that could theoretically cause problems during
reverse iteration.
Changed JDOMException.initCause() to return "this" instead of "cause"
since that's what Throwable says it should do.
Fixed bug with elt.isAncestor() where it had been acting like "is descendant".
Fixed bug in DOMOutputter where it could have problems outputting documents
with a DocType.
DEPRECATED METHODS
------------------
Deprecated the Document(List, DocType) constructor because it doesn't make
sense if the DocType should be part of the content list rather than separate.
Deprecated the XMLOutputter.set*() methods that now reside in Format.
Deprecated the XMLOutputter constructors that took format parameters. Use the
constructor that accepts a Format now instead.
Deprecated the Attribute constants:
Attribute.CDATA_ATTRIBUTE
Attribute.ID_ATTRIBUTE
Attribute.IDREFS_ATTRIBUTE, etc.
Their new names are simpler:
Attribute.CDATA_TYPE
Attribute.ID_TYPE
Attribute.IDREFS_TYPE, etc.
Renamed methods from the PI class to be more consistent and explanatory.
Deprecating:
getNames()
getValue()
setValue()
removeValue()
New names:
getPseudoAttributeNames()
getPseudoAttributeValue()
setPseudoAttribute()
removePseudoAttribute()
Deprecated the methods setTextTrim(), setTextNormalize(), and
setTrimAllWhite(). Replaced them with setTextMode(Format.TextMode) and
getTextMode().
Changed the protected method SAXHandler.setAlternateRoot() to pushElement().
REMOVED CLASSES
---------------
None.
REMOVED METHODS
---------------
Removed everything deprecated in b9. (JDOM deprecates for one beta cycle,
then removes.)
Made the DOMOutputter output(Element, ...) and output(Attribute, ...) private.
They used to be protected. Skipped the deprecation step because you couldn't
actually extend them because of the NamespaceStack visibility, and we don't
usually deprecate protected methods.
SPECIAL NOTE
------------
Reduced the visibility on many items from protected to private. Anything
protected or public must be supported in the future, and we don't want to
promise that for anything unless it's absolutely necessary. If your JDOM
extension has problems with the reduced visibility that can't be overcome,
write to jdom-interest-AT-jdom.org with your issue. We'll crack open the
visibility as proven necessary.
* * * * * * Beta9 (tag: jdom_1_0_b9) from Beta8 * * * * * *
NEW PACKAGES
------------
Added org.jdom.xpath package for XPath manipulations.
NEW CLASSES
-----------
Added the XPath and JaxenXPath classes to the new org.jdom.xpath package.
Added org.jdom.input.JDOMParseException, a subclass of JDOMException, to be
thrown by the builders to convey whatever information could be gathered from
the parser about the error. It has a getPartialDocument() that gives access
to whatever part of the input document that was successfully parsed before the
parser fired a SAXParseException.
Added org.jdom.output.JDOMLocator, an implementation of org.xml.sax.Locator
which a ContentHandler could use to determine the document object on which an
error occurred.
NEW METHODS
-----------
Added the the getResult()/setResult() methods to JDOMResult to support
transformations that return results other than a document.
Added saxBuilder.setReuseParser(boolean) with a default of false. Turning it
on allows reuse and faster performance for parsers that support reuse.
Added a ProcessingInstruction.setTarget(String newTarget) method. Once we
decided to allow elt.setName() we should allow pi.setTarget().
Added a SAXOutputter.getLocator() method to make the locator available outside
the ContentHandler. For example, this allows you to have ErrorHandlers not
implementing XMLFilters.
ENHANCEMENTS
------------
Fixed the TextBuffer performance problem that made performance terrible on
certain JVMs in beta8.
Changed CDATA to extend Text so now you can look just for Text nodes
in content and don't need to differentiate CDATA sections if you don't
want to. This does require "instanceof CDATA" to come before "instanceof
Text" now. Watch out for that potential subtle bug.
Changed the exception types that may be thrown from the SAXBuilder. The idea
is that SAXBuilder should throw an IOException for an I/O error, a
JDOMException for an XML problem, and that unexpected runtime exceptions
should not be hidden. Previously it could only throw a JDOMException, so this
will break existing code! Builders will now need to catch IOException.
Changed the DOM adapter classes to throw either IOException, a JDOMException
wrapped around a parser-specific exception, or a subtype of RuntimeException.
Previously they might throw any Exception.
Changing doctype.equals() to be == instead of comparing its elt name, system
id, and public id. Did this because someone may not care about the elt name
in comparing doc types, while someone else might care about the internal DTD
subset. This lets the default behavior be == and lets users write their own
equality check.
Added a feature to prevent firing DTD events by setting the SAX core feature
"http://xml.org/sax/features/validation" to false.
Removed the special namespace treatment of xml:space and xml:lang so they are
now treated as any other attributes in a namespace.
Enhanced SAXOutputter to notify of entities through ContentHandler's
skippedEntity() and notify of some errors to the registered SAX ErrorHandler,
Added support to output Comments as Element children. Added support for CDATA
(i.e. distinguish CDATA from plain text and use of the start/endCDATA
callbacks of LexicalHandler). Removed support for CDATA as children of the
document node.
Added CVS_ID and @version tags to source files that were missing them.
Added JDOM_FEATURE constants to JDOMSource and JDOMResult which can be used
with TransformerFactory.getFeature() to determine if the transformer natively
supports JDOM.
Moved the printing of the line separator after the doctype up to
output(Document, Writer). This allows someone who doesn't want a newline
after the decl to kludge it away.
Improved the Verifier's checking of Comment contents. Added logic to ensure
you can't have two default namespace declarations on the same element.
Numerous performance improvements.
Many Javadoc improvements.
Numerous build script enhancements.
Moved samples into the default package, building to build/samples.
BUG FIXES
---------
Fixed Document.clone() to set the new DocType.
Fixed a bug where the JDOMException.printStackTrace(PrintWriter) method would
print some data to System.err instead of to the writer.
Fixed bug in PI map parse logic which could be confused when there was a lot
of whitespace surrounding the = signs.
Fixed bug where AttributeList.set() would not set parentage in one situation.
Fixed bug where namespace prefixes were being lost on DOM builds.
Fixed bug in PI.toString() which could cause funny output on PIs without data.
Fixed a problem with the CDATA.clone() method that would result in CDATA
sections being cloned as Text objects rather than CDATA objects.
Fixed the SAXOutputter so elementContent() fires a comment() event.
Fixed bug where mapping a value to an attribute wouldn't happen if the
attribute was renamed.
Fixed bug in XMLOutputter where \n was used instead of
currentFormat.lineSeparator at one location.
Fixed a whitespace output bug where whitespace-only content would be treated
as empty.
Fixed bug where the "xml" prefix wasn't available in Element's
getNamespace(String) call.
DEPRECATED METHODS
------------------
Deprecated the XMLOutputter.setIndent* methods except setIndent(String).
Deprecated DOMBuilder(boolean validate), DOMBuilder(String adapter, boolean
validate), and DOMBuilder.setValidation(boolean validate) because validation
only matters when building from files, and those methods have already been
deprecated.
Deprecated the DOMOutputter output methods that return a DOM Element or Attr,
because they aren't truly useful and the DOM contract is that every Attr and
Element (and every other Node too) always belongs to exactly one Document or
DocumentFragment object.
Deprecated element.removeChildren() because it's a nearly useless method.
Call element.getChildren().clear() in the very rare case you want to remove
only the children but leave other content.
Deprecated element.hasChildren() because it's not a performance optimization
anymore. This helps simplify the most complicated class around.
Deprecated element.setChildren(List) since element.setContent(List) suffices.
Deprecated xmlOutputter.outputString(String) since outputString(Text) handles
the Text nodes that now really reside within documents.
REMOVED CLASSES
---------------
Removed ProjectXDOMAdapter since the parser is no longer important.
REMOVED METHODS
---------------
Removed element.addContent(CDATA) and removeContent(CDATA) since
addContent(Text) and removeContent(Text) do the job now that CDATA extends
Text.
Removed canAdd() and canRemove() from Filter. matches() is sufficient.
Removed the methods deprecated in beta7.
SPECIAL NOTE
------------
Beginning with this release JDK 1.1 is no longer supported. You'll need JDK
1.2 or later.
* * * * * * Beta8 (tag: jdom_1_0_b8) from Beta7 (tag: jdom_1_0_b7) * * * * * *
NEW CLASSES
-----------
Added a Text class. This class is primarily for internal use to store String
data, so strings can now have parentage. A getText() will still return a
String. The Text nodes themselves can be retrieved through a getContent()
call.
Added the public interface org.jdom.filter.Filter to support the "FilterList"
functionality.
Added org.jdom.filter.ContentFilter, a standard filter for Content. And added
org.jdom.filter.ElementFilter, a standard filter for Element data.
Added two non-public support classes to support the "FilterList"
functionality: ContentList and AttributeList.
NEW METHODS
-----------
Added to Element and Document the method getContent(Filter) that takes a
Filter instance.
Added to CDATA the methods getTextTrim(), getTextNormalize(), append(String),
append(CDATA), getParent(), getDocument(), and detach(). This brings CDATA
close in line with the Text class. They'll may become the same class with a
flag differentiator in the next beta.
Added to Element the methods addContent(Text) and removeContent(Text). These
methods support the new Text class.
Also added to Element the method removeAttribute(Attribute). This method was
simply overlooked before.
Also added to Element the method getChildTextNormalize(). This method is
similar to getChildTextTrim().
Also added to Element two new styles of getAttributeValue() which let the
programmer specify default values if the attribute doesn't exist.
Added to SAXBuilder the methods setFeature() and setProperty(). These methods
to allow programmers to customize the underlying parser.
Added to SAXOutputter the new method setLexicalHandler(LexicalHandler). Also
added a new SAXOutputter constructor that takes a LexicalHandler as its last
argument.
Added to ProcessingInstruction the method getNames(). This method returns the
pseudo-attribute names in the PI's data.
Added to DocType the methods setInternalDTDSubset(String) and
getInternalDTDSubset(). These methods support new functionality where a
DocType can store and alter the internal DTD subset information.
Also added to DocType the method setElementName().
Added a no-arg SAXOutputter constructor.
Added to SAXOutputter the methods getContentHandler(), getErrorHandler(),
getDTDHandler(), getEntityResolver(), getLexicalHandler(), setDeclHandler(),
getDeclHandler(), setFeature(), setProperty(), getFeature(), and
getProperty().
Added to Attribute the methods getAttributeType() and setAttributeType().
Also added various constructors that take an int type. These methods and
constructors support the new functionality where attributes can record their
type information. Note: this is something DOM can't do!
Added to Document the method detachRootElement().
Added to XMLOutputter the methods outputString(List list), outputString(String
str), outputString(Text text), output(List list, OutputStream out), and
output(List list, Writer out).
Added to EntityRef the constructor EntityRef(String name, String systemID).
This supports building an EntityRef without a public ID.
Added to Verifier the methods checkSystemLiteral() and checkPublicID().
NEW CONSTANTS
-------------
Attribute has new constants for each attribute type:
UNDECLARED_ATTRIBUTE, CDATA_ATTRIBUTE, ID_ATTRIBUTE, IDREF_ATTRIBUTE,
IDREFS_ATTRIBUTE, ENTITY_ATTRIBUTE, ENTITIES_ATTRIBUTE, NMTOKEN_ATTRIBUTE,
NMTOKENS_ATTRIBUTE, NOTATION_ATTRIBUTE, and ENUMERATED_ATTRIBUTE.
NEW SIGNATURES
--------------
The XMLOutputter escape*() methods are now public.
The Verifier checkXMLName() method is now public.
Changed the protected "Element parent" variable for classes to be "Object
parent", with the object capable of serving double duty as either a Document
parent or Element parent. Saves noticeable memory.
Changed the no-arg Document constructor to be public, along with Javadocs
explaining how the method is to be used.
REMOVED CLASSES
---------------
None.
REMOVED METHODS
---------------
Removed the methods deprecated in beta7.
DEPRECATED METHODS
------------------
Deprecated the DOMBuilder.build() methods that build from a File, URL, or
InputStream. This helps people understand those methods are for testing only.
DOMBuilder.build(org.w3c.dom.Document) and such are still undeprecated.
ENHANCEMENTS
------------
Added the long-awaited "FilterList" functionality! This improves the
reliability and performance of the lists returned by getContent() and
getChildren() calls. These lists are now fully live, they fully enforce
well-formedness constraints, and they don't require in-memory copying before
returning. A huge improvement!
Integrated the Text class for wrapping strings behind the scenes and thus
allowing strings to have parentage.
Added the ability for the DocType to have an internal DTD subset, and changed
the SAX and DOM builders and outputters to support this change.
Added the ability for a Document to have a detached root to make elt.detach()
work easily. There will be an IllegalStateException thrown in case of read
from such a Document.
Added support for "attribute types". Typing is now recorded within the
attribute object and fully managed during build and output.
Rearchitected the internals of SAXBuilder and SAXHandler to be more extensible
via subclassing. Also exposed more of the internals of SAXHandler to make
subclassing easier.
Made SAXOutputter much more robust, and made JDOMSource (used for
transformations) more robust along with it.
Changed setContent(null) to now clear the content list and does not throw an
exception. Same for setChildren(null).
Improved XMLOutputter to respect the xml:space attribute.
Improved reporting behavior of build error messages.
Improved how JDOMException reports on nested exceptions.
Updated the Ant build system to version 1.4.
Improved JDOM build versioning so we have versions like "1.0beta8-dev" for
work after Beta8, and "1.0beta8" will only be the actual Beta8 code.
Changed the Javadocs to use CVS Revision and Date tags for @version.
Many Javadoc clarifications.
Improved the Verifier error message when adding a PI with an "xml" target,
since parsers and/or people have been trying to add it as a PI.
Added verification of the system and public ID's in both DocType and
EntityRef, the root element name in DocType, and the entity name in EntityRef.
Added ability for DocType and EntityRef to differentiate a missing ID from the
empty string ID.
Changed the MANIFEST.MF to no longer list Xerces in the Class-Path entry, nor
to have JDOMAbout as its Main-Class. This helps applet deployment, but does
remove the ability to do the cool "java -jar jdom.jar".
Added support for skipped entities in SAXHandler in the event that the parser
is not resolving external entities.
Added well-formedness checking to ensure there are never duplicate attributes.
Many, many performance optimizations throughout.
Made Xerces 1.4.4 the default parser in "lib/xerces.jar".
BUG FIXES
---------
Fixed XMLOutputter to no longer add spurious newlines after closing element
tags.
Fixed SAXBuilder to work better with XML filters.
Fixed SAXHandler bug where attributes that had a namespace were being added to
the Document, but did not have the Namespace correctly reported.
Fixed bug where a ProcessingInstruction or DocType removed from a Document did
not have its parentage set to null.
Fixed bug where SAXBuilder would cache the class name even when using JAXP to
create the parser, causing problems for parsers without no-arg constructors.
Fixed bug where Namespace collision checking could generate false positives.
Fixed bug where a document containing a huge number of character entities
would cause JDOM builds to slow down exponentially.
Fixed the many bugs caused by the old PartialList code, by replacing it with
FilterList code.
* * * * * * Beta7 (tag: jdom_1_0_b7) from Beta6 (tag: jdom_1_0_b6) * * * * * *
NEW CLASSES
-----------
Added JDOMSource and JDOMResult to the org.jdom.transform package. These
support XSLT transforms using the JAXP TrAX model. Added Crimson, JAXP, and
Xalan JARs to the lib directory to support the transform functionality.
Added org.jdom.EntityRef to replace org.jdom.Entity. Changed methods taking
Entity to take EntityRef.
Made org.jdom.input.SAXHandler a public class. It used to be package
protected. This is helpful to classes that want to build JDOM from a SAX
source, such as JDOMResult.
Added org.jdom.input.JDOMFactory/DefaultJDOMFactory to support the builder
factory model.
Added org.jdom.adapters.JAXPDOMAdapter to contain all the logic for
interacting with JAXP. Most people will never use this class.
Added org.jdom.Text to the repository. It's not yet used.
NEW METHODS
-----------
Added a new detach() method to each of the classes Attribute, Comment,
Element, EntityRef, and ProcessingInstruction. It removes the node from its
parent.
Added setName(String) and setNamespace(Namespace) to Element and Attribute.
Added elt.setAttribute() method, to replace elt.addAttribute(). It replaces
any existing attribute by the same name, instead of throwing an exception as
addAttribute() did.
Added elt.getContent() and elt.setContent() methods, to replace
elt.getMixedContent() and elt.setMixedContent(). Did the same on Document.
Added SAXBuilder.setExpandEntitities(boolean) method to indicate if entities
should be expanded, or if EntityRef objects should appear within the document.
Added two new Document constructors to support constructing with a list of
content:
Document(List)
Document(List, DocType)
Added elt.removeNamespaceDeclaration(Namespace). It removes a namespace
declaration, the counterpart to addNamespaceDeclaration(Namespace).
Added a new constructor in IllegalAddException to account for a Namespace
illegally added:
IllegalAddException(Element base, Namespace added, String reason)
Added getDocument() method to DocType. Added a protected setDocument() method
also.
Added setFactory() method to SAXBuilder/DOMBuilder to support the factory
build model.
Added elt.getTextNormalize() to return a normalized string (external
whitespace trimmed, internal whitespace reduced to a single space). The
getTextTrim() method now does a true trim.
Added a SAXBuilder.setIgnoringElementContentWhitespace(boolean) method with
behavior that matches the method by the same name in JAXP's
DocumentBuilderFactory. Setting the value to true causes
ignorableWhitespace() to operate like a no-op. By default its value is false.
Added getCause() to JDOMException, replacing getRootCause(). This new name
matches JDK 1.4.
Added setOmitDeclaration on XMLOutputter, replacing the now-deprecated
setSuppressDeclaration().
Added elt.removeContent(CDATA) which was previously overlooked.
Added protected methods in SAXBuilder to make it easier to extend:
protected XMLReader createParser()
protected SAXHandler createContentHandler()
protected void configureContentHandler(SAXHandler)
Added getDocument() method to Attribute.
NEW SIGNATURES
--------------
DOMAdapter methods now may throw Exception instead of IOException. DOMBuilder
and DOMOutputter have the same API as always.
Changed XMLOutputter's protected printXXX() methods to have a new signature
without the "int indentLevel" final parameter. Didn't bother with
deprecation.
Changed XMLOutputter's printEntity() method to printEntityRef().
Made SAXBuilder's build(InputSource) method public. It used to be protected.
REMOVED CLASSES
---------------
Removed org.jdom.Entity; it's replaced by EntityRef.
REMOVED METHODS
---------------
Removed various methods that were previously deprecated in beta6:
Document.addContent(Element)
Namespace.getNamespace(String prefix, Element context)
CDATA.setText(String)
Removed Document's protected rootElement variable.
DEPRECATED METHODS
------------------
Deprecated constructor Attribute(String name, String prefix, String uri,
String value). Its parameter order was non-standard and it was not a useful
method.
Deprecated XMLOutputter's setIndentLevel() method. Having a global indent is
better done with a stacked FilterOutputStream. The method is now empty.
Deprecated XMLOutputter's setPadText() method. It's not needed with the
current output mechanism. The method is now empty.
Deprecated Element's getCopy(String) and getCopy(String, Namespace). These
can better be done now with a clone() and setName()/setNamespace().
Deprecated elt.addAttribute(). It's replaced by elt.setAttribute().
Deprecated getMixedContent() and setMixedContent() on Element and Document.
They're replaced by getContent() and setContent() versions.
Deprecated getSerializedForm() methods on all objects, and moved the logic
into XMLOutputter.
Deprecated the various xxxProcessingInstruction() methods in Document:
List getProcessingInstructions()
List getProcessingInstructions(String target)