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