The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
Revision history for XML-Parsepp

0.01    01 May 2012
        First version, released on an unsuspecting world.

0.02    30 Jun 2012
        added methods XML::Parsepp->parsefile('REC-xml-19980210.xml');
        XML::Parsepp->parse('<foo id="me">Hello World</foo>');
        XML::Parsepp->new(Handlers => {Start => \&handle_start,
        End => \&handle_end, Char => \&handle_char});

0.03    28 Jul 2012
        die with duplicate attributes (and allow duplicate attributes
        with a special option XML::Parsepp->new(dupatt => ';')

0.04    04 Aug 2012
        The concatenation string XML::Parsepp->new(dupatt => $str) is
        restricted to printable ascii excluding " and '
        Add some examples to the README file

0.05    07 Aug 2012
        Correct error in Makefile.PL ==> VERSION_FROM =>

0.06    19 Aug 2012
        Add references to XML::Parsepp::Testgen to the documentation and
        update Test0100.t to comply with XML::Parsepp::Testgen