Changes revision 104349
1104349SphkRelease 1.95.5 Fri Sep 6 2002
2104349Sphk        - Added XML_UseForeignDTD() for improved SAX2 support.
3104349Sphk        - Added XML_GetFeatureList().
4104349Sphk        - Defined XML_Bool type and the values XML_TRUE and XML_FALSE.
5104349Sphk        - Use an incomplete struct instead of a void* for the parser
6104349Sphk          (may not retain).
7104349Sphk        - Fixed UTF-8 decoding bug that caused legal UTF-8 to be rejected.
8104349Sphk        - Finally fixed bug where default handler would report DTD
9104349Sphk          events that were already handled by another handler.
10104349Sphk          Initial patch contributed by Darryl Miller.
11104349Sphk        - Removed unnecessary DllMain() function that caused static
12104349Sphk          linking into a DLL to be difficult.
13104349Sphk        - Added VC++ projects for building static libraries.
14104349Sphk        - Reduced line-length for all source code and headers to be
15104349Sphk          no longer than 80 characters, to help with AS/400 support.
16104349Sphk        - Reduced memory copying during parsing (SF patch #600964).
17104349Sphk        - Fixed a variety of bugs: see SF issues 580793, 434664,
18104349Sphk          483514, 580503, 581069, 584041, 584183, 584832, 585537,
19104349Sphk          596555, 596678, 598352, 598944, 599715, 600479, 600971.
20104349Sphk
21104349SphkRelease 1.95.4 Fri Jul 12 2002
22104349Sphk        - Added support for VMS, contributed by Craig Berry.  See
23104349Sphk          vms/README.vms for more information.
24104349Sphk        - Added Mac OS (classic) support, with a makefile for MPW,
25104349Sphk          contributed by Thomas Wegner and Daryle Walker.
26104349Sphk        - Added Borland C++ Builder 5 / BCC 5.5 support, contributed
27104349Sphk          by Patrick McConnell (SF patch #538032).
28104349Sphk        - Fixed a variety of bugs: see SF issues 441449, 563184,
29104349Sphk          564342, 566334, 566901, 569461, 570263, 575168, 579196.
30104349Sphk        - Made skippedEntityHandler conform to SAX2 (see source comment)
31104349Sphk        - Re-implemented WFC: Entity Declared from XML 1.0 spec and
32104349Sphk          added a new error "entity declared in parameter entity":
33104349Sphk          see SF bug report 569461 and SF patch 578161
34104349Sphk        - Re-implemented section 5.1 from XML 1.0 spec:
35104349Sphk          see SF bug report 570263 and SF patch 578161
36104349Sphk
37104349SphkRelease 1.95.3 Mon Jun 3 2002
38104349Sphk        - Added a project to the MSVC workspace to create a wchar_t
39104349Sphk          version of the library; the DLLs are named libexpatw.dll.
40104349Sphk        - Changed the name of the Windows DLLs from expat.dll to
41104349Sphk          libexpat.dll; this fixes SF bug #432456.
42104349Sphk        - Added the XML_ParserReset() API function.
43104349Sphk        - Fixed XML_SetReturnNSTriplet() to work for element names.
44104349Sphk        - Made the XML_UNICODE builds usable (thanks, Karl!).
45104349Sphk        - Allow xmlwf to read from standard input.
46104349Sphk        - Install a man page for xmlwf on Unix systems.
47104349Sphk        - Fixed many bugs; see SF bug reports 231864, 461380, 464837,
48104349Sphk          466885, 469226, 477667, 484419, 487840, 494749, 496505,
49104349Sphk          547350.  Other bugs which we can't test as easily may also
50104349Sphk          have been fixed, especially in the area of build support.
51104349Sphk
52104349SphkRelease 1.95.2 Fri Jul 27 2001
53104349Sphk        - More changes to make MSVC happy with the build; add a single
54104349Sphk          workspace to support both the library and xmlwf application.
55104349Sphk        - Added a Windows installer for Windows users; includes
56104349Sphk          xmlwf.exe.
57104349Sphk        - Added compile-time constants that can be used to determine the
58104349Sphk          Expat version
59104349Sphk        - Removed a lot of GNU-specific dependencies to aide portability
60104349Sphk          among the various Unix flavors.
61104349Sphk        - Fix the UTF-8 BOM bug.
62104349Sphk        - Cleaned up warning messages for several compilers.
63104349Sphk        - Added the -Wall, -Wstrict-prototypes options for GCC.
64104349Sphk
65104349SphkRelease 1.95.1 Sun Oct 22 15:11:36 EDT 2000
66104349Sphk        - Changes to get expat to build under Microsoft compiler
67104349Sphk        - Removed all aborts and instead return an UNEXPECTED_STATE error.
68104349Sphk        - Fixed a bug where a stray '%' in an entity value would cause an
69104349Sphk          abort.
70104349Sphk        - Defined XML_SetEndNamespaceDeclHandler. Thanks to Darryl Miles for
71104349Sphk          finding this oversight.
72104349Sphk        - Changed default patterns in lib/Makefile.in to fit non-GNU makes
73104349Sphk          Thanks to robin@unrated.net for reporting and providing an
74104349Sphk          account to test on.
75104349Sphk        - The reference had the wrong label for XML_SetStartNamespaceDecl.
76104349Sphk          Reported by an anonymous user.
77104349Sphk
78104349SphkRelease 1.95.0 Fri Sep 29 2000
79104349Sphk        - XML_ParserCreate_MM
80104349Sphk                Allows you to set a memory management suite to replace the
81104349Sphk                standard malloc,realloc, and free.
82104349Sphk        - XML_SetReturnNSTriplet
83104349Sphk                If you turn this feature on when namespace processing is in
84104349Sphk                effect, then qualified, prefixed element and attribute names
85104349Sphk                are returned as "uri|name|prefix" where '|' is whatever
86104349Sphk                separator character is used in namespace processing.
87104349Sphk        - Merged in features from perl-expat
88104349Sphk                o XML_SetElementDeclHandler
89104349Sphk                o XML_SetAttlistDeclHandler
90104349Sphk                o XML_SetXmlDeclHandler
91104349Sphk                o XML_SetEntityDeclHandler
92104349Sphk                o StartDoctypeDeclHandler takes 3 additional parameters:
93104349Sphk                        sysid, pubid, has_internal_subset
94104349Sphk                o Many paired handler setters (like XML_SetElementHandler)
95104349Sphk                  now have corresponding individual handler setters
96104349Sphk                o XML_GetInputContext for getting the input context of
97104349Sphk                  the current parse position.
98104349Sphk        - Added reference material
99104349Sphk        - Packaged into a distribution that builds a sharable library
100