summaryrefslogtreecommitdiff
path: root/textproc/p5-XML-DOM/distinfo
AgeCommit message (Collapse)AuthorFilesLines
2008-07-18- updated to 1.44rhaen1-4/+4
- took maintainership - added dependency to p5-XML-Parser ChangeLog: 1.44 (tjmather) 07/25/2005 - Only use 'use bytes' where needed (by XML::RegExp) (Gisle Aas)
2005-02-24Add RMD160 digests to the SHA1 ones.agc1-1/+2
2004-05-29Update textproc/p5-XML-DOM to 1.43 (previous distfile unavailable).xtraeme1-3/+3
Changes: 1.43 (tjmather) 07/28/2003 - Fixed bug that manifests itself with XML::Parser 2.32 and greater, specify external style as 'XML::Parser::Dom' rather than just 'Dom'. (Matt Sergeant)
2003-05-19Update p5-XML-DOM to 1.42mjl1-3/+3
- Fixed bug where XML::DOM doesn't encode some characters in attribute values under Perl 5.8.0 - Added t/dom_encode.t test to check encoding on attribute values - Fixed warning message and use in XML::DOM::PerlSAX - included XML-Parser-2.31.patch, required for XML::Parser to work with 5.8.0 unicode - use utf8 in unicode test scripts, fixes 5.8.0 test failures NOTE - you should use the utf8 pragma in your programs if you are passing utf8 to XML::DOM. - only use encodeText for Perl < 5.6.0 - replace match w/ substitution in AttDef::new, workaround for 5.8.0 unicode - replace match w/ substitution in Default handler for non-paramter entity reference, workaround for 5.8.0 unicode - Fixed problem when defining user LWP object - Autodetect whether to 'use bytes' - Added dispose method to XML::DOM::Parser Synopsis - Fixed warning message in Attr.getValue method
2002-04-17Updated to p5-XML-DOM-1.39shell1-3/+3
Changes : 1.39 (tjmather) 04/16/2002 - Deletes value if both System ID and value are defined (Brian Thomas) - Fixed bug, now TextNode->getData doesn't expand entities when NoExpand => 1, added t/dom_noexpand.t test script (Brian Thomas) 1.38 (tjmather) 04/05/2002 - Removed bin/pretty.pl, it is now in XML-Filter-Reindent - Removed return from addCDATA function to fix memory leak (Steve Hay) - Added missing _to_sax method to ProcessingInstruction class (Patrick Whittle) - Removed extranous debugging statement from ExternEnt subroutine (Jon Grov) 1.37 (tjmather) 02/15/2002 - parameter should be last argument of DocumentType::addEntity (Patrick Whittle)
2002-01-19Update p5-XML-DOM to 1.36.mjl1-3/+3
- Replaced 'our' with 'my' in t/dom_text.t, to work with perl < 5.6.0
2001-11-28Updated to 1.35 (PR#14750)martti1-3/+3
Changes : - Removed dependency on p5-Parse-Yapp - Separated out XML::UM, XML::Filter::* and XML::Builder::* modules into sperate modules - Added use bytes pragma to XML::DOM to fix unicode problems - The '>' character is now encoded in attribute values - hasFeature now is case-insensitve for name of feature
2001-08-10Initial import of p5-XML-DOM-1.31mjl1-0/+4
This is a Perl extension to XML::Parser. It adds a new 'Style' to XML::Parser, called 'Dom', that allows XML::Parser to build an Object Oriented datastructure with a DOM Level 1 compliant interface. For a description of the DOM (Document Object Model), see http://www.w3.org/DOM/