From: Ken M. <kma...@us...> - 2003-10-22 01:43:55
|
Update of /cvsroot/perl-xml/libxml-perl In directory sc8-pr-cvs1:/tmp/cvs-serv25009 Modified Files: ChangeLog Changes README Log Message: t/stream.t: fix bug in test 11 for Perl >= 5.6 Index: ChangeLog =================================================================== RCS file: /cvsroot/perl-xml/libxml-perl/ChangeLog,v retrieving revision 1.38 retrieving revision 1.39 diff -u -d -r1.38 -r1.39 --- ChangeLog 23 Jul 2001 15:47:15 -0000 1.38 +++ ChangeLog 21 Oct 2003 16:01:53 -0000 1.39 @@ -1,3 +1,7 @@ +2003-10-21 Ken MacLeod <ke...@bi...> + + * t/stream.t: fixed test 11 for Perl >= 5.6 + 2001-07-23 Ken MacLeod <ke...@bi...> * lib/XML/SAX2Perl.pm (startElement): typo; reported by Index: Changes =================================================================== RCS file: /cvsroot/perl-xml/libxml-perl/Changes,v retrieving revision 1.26 retrieving revision 1.27 diff -u -d -r1.26 -r1.27 --- Changes 23 Jul 2001 15:47:15 -0000 1.26 +++ Changes 21 Oct 2003 16:01:54 -0000 1.27 @@ -2,23 +2,21 @@ Backwards incompatible changes are marked with a `*'. -0.08 - (t/stream.t Test 11 fails due to 8-bit characters on Perl 5.6, - reported by Ed Arnold <er...@uc...>) - (XML::ESISParser: include Robert Braddock's update for OpenSP, - in email 25Jul) - (XML::Parser::PerlSAX doesn't pass ParseParamEnt to - XML::Parser, inspired by a request by Paul Mahoney - <pt...@xa...>) - (switch Data::Grove::Visitor to use UNIVERSAL::can instead of - $self->{'has'}, suggested by Mike Richardson - <mi...@qu...>) - (no modules are yet supporting SAX2) - (XML::Parser::PerlSAX doesn't implement ErrorHandler, it - should at least call fatal_error() if XML::Parser dies; - reported by Craig N. Caroon <ca...@ca...>) - (t/xp_sax test fails with XML::Parser 2.28; reported by Dave - Viner <da...@pe...> on 29 Mar on perl-xml) +ToDo + - XML::ESISParser: include Robert Braddock's update for OpenSP, + in email 25Jul + - XML::Parser::PerlSAX doesn't pass ParseParamEnt to + XML::Parser, inspired by a request by Paul Mahoney + <pt...@xa...> + - switch Data::Grove::Visitor to use UNIVERSAL::can instead of + $self->{'has'}, suggested by Mike Richardson + <mi...@qu...> + - no modules are yet supporting SAX2 + - XML::Parser::PerlSAX doesn't implement ErrorHandler, it + should at least call fatal_error() if XML::Parser dies; + reported by Craig N. Caroon <ca...@ca...> + +0.08 Tue Oct 21 10:54:18 CDT 2003 - added Perl SAX 2.0 Binding - XML::ESISParser: add -E0 to nsgmls options so that nsgmls doesn't quit after 200 errors. Add more detail to command @@ -30,6 +28,8 @@ CAPRANI <ca...@mu...> - XML::SAX2Perl: typo in startElement; reported by Mark A. Hershberger <mh...@mc...> + - t/stream.t Test 11 fails due to 8-bit characters on Perl + 5.6, first reported by Ed Arnold <er...@uc...> 0.07 Tue Feb 22 14:24:52 CST 2000 - doc/index.html: libxml-perl site index Index: README =================================================================== RCS file: /cvsroot/perl-xml/libxml-perl/README,v retrieving revision 1.9 retrieving revision 1.10 diff -u -d -r1.9 -r1.10 --- README 16 Aug 1999 19:52:38 -0000 1.9 +++ README 21 Oct 2003 16:01:54 -0000 1.10 @@ -30,7 +30,7 @@ View the Perl XML FAQ at <http://www.perlxml.com/faq/perl-xml-faq.html>. - Copyright (C) 1998 Ken MacLeod + Copyright (C) 1998 Ken MacLeod and others This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. @@ -45,18 +45,18 @@ ALPHA -- interfaces are changing, there may be lots of bugs, and there may not be docs available yet - XML::Parser::PerlSAX BETA + XML::Parser::PerlSAX STABLE XML::Parser::PerlSAX is a PerlSAX parser using XML::Parser (which uses James Clark's Expat XML Parser). - XML::Handler::Sample BETA + XML::Handler::Sample STABLE XML::Handler::Sample is a PerlSAX handler that simply prints out the event names as they are parsed by a PerlSAX parser. It can be used for debugging or as a template for building new handlers. XML::Handler::Sample contains handlers for all known parser events. - XML::ESISParser BETA + XML::ESISParser STABLE XML::ESISParser is a validating PerlSAX parser using James Clark's `nsgmls' SGML/XML Parser. ESISParser supports both XML and SGML document instances. Unless you need validation, @@ -66,26 +66,26 @@ XML::ESISParser with XML::Grove obsolete the SGML::SPGroveBuilder and SGML::Grove modules. - XML::Handler::XMLWriter + XML::Handler::XMLWriter STABLE A PerlSAX handler for writing readable XML (in contrast to Canonical XML, for example). XMLWriter is also subclassable and supports calling start and end methods by element-names (subclassed from XML::Handler::Subs). XMLWriter is similar to XML::Parser's Stream style. - XML::Handler::Subs + XML::Handler::Subs STABLE A PerlSAX handler base class that calls start and end methods by element-names. Subs is similar to XML::Parser's Subs style. - XML::Handler::CanonXMLWriter + XML::Handler::CanonXMLWriter STABLE A PerlSAX handler that outputs in Canonical XML <http://www.jclark.com/xml/canonxml.html>. This module is generally only used for debugging. - Data::Grove BETA - Data::Grove::Parent BETA - Data::Grove::Visitor BETA + Data::Grove STABLE + Data::Grove::Parent STABLE + Data::Grove::Visitor STABLE Data::Grove and it's helpers provide a base class for deeply nested or directed graph structures. Used by XML::Grove (and others soon). @@ -118,6 +118,10 @@ See Creating PatAct Modules for more information. DOCUMENTS + + sax-2.0.html, sax-2.0-adv.html + PerlSAX 2.0 bindings. Maintained by Robin Berjon and the + XML-Perl mailing list. PerlSAX This document defines a Perl binding to SAX 1.0. PerlSAX- |