Revision history for Perl extension XML::SAX::ExpatXS
=====================================================
1.08 April 22, 2005
- feature 'http://xmlns.perl.org/sax/xmlns-uris'
puts xmlns:* attributes into
the 'http://www.w3.org/2000/xmlns/' namespace
and xmlns attributes into no namespace.
The 'http://xml.org/sax/features/xmlns-uris'
applies if the new one is off.
The default behavior is the same as for other
Perl SAX parsers now.
- fixed repeated parsing with Perl 5.6
1.07 March 16, 2005
- feature 'http://xml.org/sax/features/xmlns-uris'
puts xmlns and xmlns:* attributes into no or
the 'http://www.w3.org/2000/xmlns/' namespace.
Default is no namespace (feature not set) which
is a behavior different from previous versions!
- feature 'http://xmlns.perl.org/sax/version-2.1'
is set (and can't be turned off)
- minor fix in memory management
[reported by Rob Bloodgood]
1.06 March 7, 2005
- more changes in memory management;
parse_* run in loops without leaks
[reported by Rob Bloodgood]
1.05 February 18, 2005
- fixed segfault after deleting a key of Features
[patch by Pavel Hlavnicka]
1.04 December 15, 2004
- fixed the bug of SystemId/PublicId of external DTD
subset provided instead of identifiers of the current
entity in Locator and Exception
[reported by Bjoern Hoehrmann]
- recognized string made available
as $p->{ParseOptions}->{RecognizedString}
- ParserOptions renamed to ParseOptions to match
XML::SAX::Base
- minor fixes for make test
- test suite extended
1.03 November 23, 2004
- minor fixes for make test
1.02 November 22, 2004
- document locator redesigned to fit
Perl SAX 2.1 specs
- feature 'http://xmlns.perl.org/sax/locator' can turn
the document locator off
- test suite extended
1.01 September 24, 2004
- memory management check completed,
no more leaks detected
1.00 July 16, 2004
- relevant memory leaks fixed
- some more XS code cleanup
0.99 June 7, 2004
- element_decl (Name, Model) completed
- attribute_decl (eName, aName, Type, Mode, Value) completed
- ns declaration attributes are treated as common attributes
when the 'http://xmlns.perl.org/sax/ns-attributes' feature
is set to 1 (default)
- fixed the bug of "0" translated into ""
[patch by Sam Tregar]
- fixed a reference counting bug in startElement
[reported by Sam Tregar]
- test suite extended
0.98 April 9, 2004
- added support for more encodings. In addition to
built-in Expat encodings (UTF-8, UTF-16, ISO-8859-1,
US-ASCII) we now support ISO-8859-2,3,4,5,7,8,9,
WIN-1250,1252, BIG5, EUC-KR, EUC-JP and Shift JIS.
(adapted from XML::Parser)
- cleaning the code to satisfy gcc2 and ANSI C
[suggested by Sergey Skvortsov]
- minor bug fixes (locator, test suite)
0.97 March 29, 2004
- external parsed entities parsed
- external_entity_decl (Name, PublicId, SystemId) called
for external entity declarations
- internal_entity_decl (Name, Value) called for external
entity declarations
- start_entity (Name), end_entity (Name) called for
external entity references
- resolve_entity callback implemented
- get_feature(), set_feature(), get_features() API functions
implemented
- feature 'http://xmlns.perl.org/sax/join-character-data' controls
character data fragmentation, 0/1 (1 being default)
- performance optimizations
- fixed the xmlns="" segmentation fault
- test suite extended
0.96 February 19, 2004
- exceptions (Message, Exception, LineNumber,
ColumnNumber, PublicId, SystemId) sent to ErrorHandler
- document locator (LineNumber, ColumnNumber, PublicId,
SystemId, Encoding, XMLVersion) implemented (updated on
start_element, end_element, characters, start_prefix_mapping,
end_prefix_mapping, processing-instruction)
- test suite extended
0.95 February 5, 2004
- renamed to XML::SAX::ExpatXS
- completed parsing of xml declarations
- completed start_dtd, end_dtd
- fixed a bug of Attributes hash keys
- fixed an "Attempt to free unreferenced scalar during
global destruction" bug when parsing repeatedly
- test suite extended
0.90_01 May 13, 2002
- Initial release by Matt Sergeant
(a working parser).