OSDN Git Service

Add MS7619SE
[uclinux-h8/uClinux-dist.git] / lib / expat / Changes
1 Release 1.95.7 Mon Oct 20 2003
2         - Fixed enum XML_Status issue (reported on SourceForge many
3           times), so compilers that are properly picky will be happy.
4         - Introduced an XMLCALL macro to control the calling
5           convention used by the Expat API; this macro should be used
6           to annotate prototypes and definitions of callback
7           implementations in code compiled with a calling convention
8           other than the default convention for the host platform.
9         - Improved ability to build without the configure-generated
10           expat_config.h header.  This is useful for applications
11           which embed Expat rather than linking in the library.
12         - Fixed a variety of bugs: see SF issues 458907, 609603,
13           676844, 679754, 692878, 692964, 695401, 699323, 699487,
14           820946.
15         - Improved hash table lookups.
16         - Added more regression tests and improved documentation.
17
18 Release 1.95.6 Tue Jan 28 2003
19         - Added XML_FreeContentModel().
20         - Added XML_MemMalloc(), XML_MemRealloc(), XML_MemFree().
21         - Fixed a variety of bugs: see SF issues 615606, 616863,
22           618199, 653180, 673791.
23         - Enhanced the regression test suite.
24         - Man page improvements: includes SF issue 632146.
25
26 Release 1.95.5 Fri Sep 6 2002
27         - Added XML_UseForeignDTD() for improved SAX2 support.
28         - Added XML_GetFeatureList().
29         - Defined XML_Bool type and the values XML_TRUE and XML_FALSE.
30         - Use an incomplete struct instead of a void* for the parser
31           (may not retain).
32         - Fixed UTF-8 decoding bug that caused legal UTF-8 to be rejected.
33         - Finally fixed bug where default handler would report DTD
34           events that were already handled by another handler.
35           Initial patch contributed by Darryl Miles.
36         - Removed unnecessary DllMain() function that caused static
37           linking into a DLL to be difficult.
38         - Added VC++ projects for building static libraries.
39         - Reduced line-length for all source code and headers to be
40           no longer than 80 characters, to help with AS/400 support.
41         - Reduced memory copying during parsing (SF patch #600964).
42         - Fixed a variety of bugs: see SF issues 580793, 434664,
43           483514, 580503, 581069, 584041, 584183, 584832, 585537,
44           596555, 596678, 598352, 598944, 599715, 600479, 600971.
45
46 Release 1.95.4 Fri Jul 12 2002
47         - Added support for VMS, contributed by Craig Berry.  See
48           vms/README.vms for more information.
49         - Added Mac OS (classic) support, with a makefile for MPW,
50           contributed by Thomas Wegner and Daryle Walker.
51         - Added Borland C++ Builder 5 / BCC 5.5 support, contributed
52           by Patrick McConnell (SF patch #538032).
53         - Fixed a variety of bugs: see SF issues 441449, 563184,
54           564342, 566334, 566901, 569461, 570263, 575168, 579196.
55         - Made skippedEntityHandler conform to SAX2 (see source comment)
56         - Re-implemented WFC: Entity Declared from XML 1.0 spec and
57           added a new error "entity declared in parameter entity":
58           see SF bug report 569461 and SF patch 578161
59         - Re-implemented section 5.1 from XML 1.0 spec:
60           see SF bug report 570263 and SF patch 578161
61
62 Release 1.95.3 Mon Jun 3 2002
63         - Added a project to the MSVC workspace to create a wchar_t
64           version of the library; the DLLs are named libexpatw.dll.
65         - Changed the name of the Windows DLLs from expat.dll to
66           libexpat.dll; this fixes SF bug #432456.
67         - Added the XML_ParserReset() API function.
68         - Fixed XML_SetReturnNSTriplet() to work for element names.
69         - Made the XML_UNICODE builds usable (thanks, Karl!).
70         - Allow xmlwf to read from standard input.
71         - Install a man page for xmlwf on Unix systems.
72         - Fixed many bugs; see SF bug reports 231864, 461380, 464837,
73           466885, 469226, 477667, 484419, 487840, 494749, 496505,
74           547350.  Other bugs which we can't test as easily may also
75           have been fixed, especially in the area of build support.
76
77 Release 1.95.2 Fri Jul 27 2001
78         - More changes to make MSVC happy with the build; add a single
79           workspace to support both the library and xmlwf application.
80         - Added a Windows installer for Windows users; includes
81           xmlwf.exe.
82         - Added compile-time constants that can be used to determine the
83           Expat version
84         - Removed a lot of GNU-specific dependencies to aide portability
85           among the various Unix flavors.
86         - Fix the UTF-8 BOM bug.
87         - Cleaned up warning messages for several compilers.
88         - Added the -Wall, -Wstrict-prototypes options for GCC.
89
90 Release 1.95.1 Sun Oct 22 15:11:36 EDT 2000
91         - Changes to get expat to build under Microsoft compiler
92         - Removed all aborts and instead return an UNEXPECTED_STATE error.
93         - Fixed a bug where a stray '%' in an entity value would cause an
94           abort.
95         - Defined XML_SetEndNamespaceDeclHandler. Thanks to Darryl Miles for
96           finding this oversight.
97         - Changed default patterns in lib/Makefile.in to fit non-GNU makes
98           Thanks to robin@unrated.net for reporting and providing an
99           account to test on.
100         - The reference had the wrong label for XML_SetStartNamespaceDecl.
101           Reported by an anonymous user.
102
103 Release 1.95.0 Fri Sep 29 2000
104         - XML_ParserCreate_MM
105                 Allows you to set a memory management suite to replace the
106                 standard malloc,realloc, and free.
107         - XML_SetReturnNSTriplet
108                 If you turn this feature on when namespace processing is in
109                 effect, then qualified, prefixed element and attribute names
110                 are returned as "uri|name|prefix" where '|' is whatever
111                 separator character is used in namespace processing.
112         - Merged in features from perl-expat
113                 o XML_SetElementDeclHandler
114                 o XML_SetAttlistDeclHandler
115                 o XML_SetXmlDeclHandler
116                 o XML_SetEntityDeclHandler
117                 o StartDoctypeDeclHandler takes 3 additional parameters:
118                         sysid, pubid, has_internal_subset
119                 o Many paired handler setters (like XML_SetElementHandler)
120                   now have corresponding individual handler setters
121                 o XML_GetInputContext for getting the input context of
122                   the current parse position.
123         - Added reference material
124         - Packaged into a distribution that builds a sharable library