pkgsrc/textproc/p5-XML-Twig/distinfo

8 lines
362 B
Text
Raw Normal View History

- updated to 3.32 - took maintainership - updated DEPENDS for testing purposes (not required) ChangeLog: version: 3.32 date: $Date: 2007-11-13T18:10:03.393214Z $ # minor maintenance release with a bug fix fix: change to the regexp that parses XPath-like conditions so it can accept leading non-ascii letters ([^\W\d] does not work), not used in perl 5.005 fix: set use utf8 (except in 5.005), which gets rid of the dreaded "SWASHNEW" error in 5.6. fixed things that then broke in 5.6. version: 3.31 # minor maintenance release, fixing some tests tests: fixes to stop tests from failing in various configurations Changes in 3.30 fixed a couple of bugs in namespace handling, spotted by Shlomo Yonas (see https://rt.cpan.org/Ticket/Display.html?id=27617 and http://www.perlmonks.org/?node_id=624830) added the XML::Twig::Elt fields method which returns a list of fields added the normalize method in XML::Twig and XML::Twig::Elt, which merge together consecutive pcdata elements. As much as possible (so far after a cut, delete or erase), the twig is kept normalized, eg there are no consecutive #PCDATA elements in it. Suggestion of someone whose name (and emails) I can't find at the moment. added the indented_a / cvs format for pretty_print, that makes the output friendly to line-oriented version control tools, as described in http://tinyurl.com/2kwscq (RT #24954). Thanks to Sjur Moshagen for a patch that I adapted to the current version. fixed bug RT #25113: system entities were not properly resolved if the XML file was not in the current directory. Thanks to Dave Charness for the patch. Added the XML::Twig method finish_now that terminates parsing immediately, without checking the rest of the XML. This feature was half suggested by Nick Clayton added the -s option to xml_split, which splits when the given size is reached for a file, suggested by Radek Saturka. added the -g option to xml_split, which groups elements to be split, suggested and tested by Dhirendra Singh Kholia. added the safe_parsefile_html and safe_parseurl_html methods, and a --html option to xml_grep. Suggested by Bill Ricker. by default xml_grep now skips non well-formed files, the --strict option makes it die when it finds one fixed a bunch of bugs in xml_grep fixed a warning when using optional modules with a version number that includes an _, spotted and fix suggested by Bill Ricker. Fixed test failure on cygwin, thanks to Erik Rantapaa for the patch. Fixed a bunch of typos in docs, RT #25836, spotted and fixed by David Steinbrunner Improved re-use of XML::Twig objects for repetitive parsing. It looks like it should be OK now , but I am sure I haven't tested all cases yet (especially when DTDs and entities are involved). HTML parsing improved: XML::Twig now tries to find the proper encoding for the document (that's not done by HTML::TreeBuilder at the moment). XML::Twig::Elt purge and flush methods now only purge/flush up to the element, not up to the current element in the twig (duh!) Fixed bug in handlers of the form elt[string(subelt)="foo"] and elt[string(subelt)=1] which did not work at all fixed bug in parameter entity output, spotted by BenHopkins on perlmonks (see http://www.perlmonks.org/?node_id=618360) fixed bug in xml_string: options were not used improved error reporting for missing SYSTEM entities, including the option to set twig_expand_external_ents to -1, which makes missing SYSTEM entities not fatal, but reports them in $t->{twig_missing_system_entities} Thanks to Frank Wegmann for his suggestions and for testing the various versions of the feature fixed internals so new versions of Pod::Coverage won't barf Changes in 3.29 fixed a bug in the handling of handlers after an ignore (RT #24392, reported by Robert Eden). Changes in 3.28 now builds on Windows and OS2 refactored the code that triggers handlers, more complex expressions can now be handled, such as '/doc/section[@def="1"]/title' COMPATIBILITY WARNING Up to version 3.26, you could change the attribute of a parent of a node on which you had a handler, and be able to trigger a handler on that parent node based on the new attribute value: XML::Twig->new( twig_handlers => { 'sect/title' => sub { $_->parent->set_att( has_title => 1)}, 'sect[@has_title="1"]'=> sub { ... }, # called for any sect that has } # a title ); This won't work now. The trigger expression ('sect[@has_title="1"]') is evaluated strictly against the input XML. This is more logical and consistent (if you changed the element name, the new name was never used in the evaluation of the trigger). The only exception to that rule is if you use "private attributes": attributes which name starts with a '#'. By definition this in an invalid XML name, so it can't be in the input, and has to have been created . In that case the code that evaluates the trigger looks at the attribute in the element in the tree in memory (if it exists). So in the example above, if you replace 'has_title' by '#has_title', everything will work fine. Note that private attributes are not output when using the print/sprint/xml_string... methods. fixed xml_pp so it does not leave a tempfile and a broken original file all when the original file is not well-formed. added the nparse_pp method that does an nparse with pretty_print set to 'indented', nparse_e that sets error_context, and nparse_ppe that does both added XML::Twig::Elt tag_to_span and tag_to_div methods (turn an element into a span/div and set its class to the old tag name) added the quote option for XML::Twig new, which sets the output quote character for attributes ('single' or 'double') added the text_only and xml_text_only methods that return the text of the element, but not of the sub-elements. added outer_xml method (synonym for sprint) fixed bug where entity names were not matched properly (RT #22854, spotted by Bob Faist) fixed bug on some DOCTYPE config with twig_print_outside_roots fixed bug in set_keep_encoding (the method, not the option). fixed bug in simplify: the code attempted to replace variables in attribute values even if no option required it, spotted by Klaus Rush clean-up and fixed bugs in ignore: the method can now be called from a regular handler (it always could but the docs did not say so, thanks to kudra for noticing this). It can also be called to ignore a parent of the current element. There were bugs there, and the tree was not built properly added error message when an XPath query with a leading / is used on a node that does not belong to a whole twig (because it's been cut or because the twig itself went out of scope) when parsing HTML with error_context set, the HTML is indented, in order to give better error report
2008-07-16 14:06:07 +02:00
$NetBSD: distinfo,v 1.8 2008/07/16 12:06:07 rhaen Exp $
- updated to 3.32 - took maintainership - updated DEPENDS for testing purposes (not required) ChangeLog: version: 3.32 date: $Date: 2007-11-13T18:10:03.393214Z $ # minor maintenance release with a bug fix fix: change to the regexp that parses XPath-like conditions so it can accept leading non-ascii letters ([^\W\d] does not work), not used in perl 5.005 fix: set use utf8 (except in 5.005), which gets rid of the dreaded "SWASHNEW" error in 5.6. fixed things that then broke in 5.6. version: 3.31 # minor maintenance release, fixing some tests tests: fixes to stop tests from failing in various configurations Changes in 3.30 fixed a couple of bugs in namespace handling, spotted by Shlomo Yonas (see https://rt.cpan.org/Ticket/Display.html?id=27617 and http://www.perlmonks.org/?node_id=624830) added the XML::Twig::Elt fields method which returns a list of fields added the normalize method in XML::Twig and XML::Twig::Elt, which merge together consecutive pcdata elements. As much as possible (so far after a cut, delete or erase), the twig is kept normalized, eg there are no consecutive #PCDATA elements in it. Suggestion of someone whose name (and emails) I can't find at the moment. added the indented_a / cvs format for pretty_print, that makes the output friendly to line-oriented version control tools, as described in http://tinyurl.com/2kwscq (RT #24954). Thanks to Sjur Moshagen for a patch that I adapted to the current version. fixed bug RT #25113: system entities were not properly resolved if the XML file was not in the current directory. Thanks to Dave Charness for the patch. Added the XML::Twig method finish_now that terminates parsing immediately, without checking the rest of the XML. This feature was half suggested by Nick Clayton added the -s option to xml_split, which splits when the given size is reached for a file, suggested by Radek Saturka. added the -g option to xml_split, which groups elements to be split, suggested and tested by Dhirendra Singh Kholia. added the safe_parsefile_html and safe_parseurl_html methods, and a --html option to xml_grep. Suggested by Bill Ricker. by default xml_grep now skips non well-formed files, the --strict option makes it die when it finds one fixed a bunch of bugs in xml_grep fixed a warning when using optional modules with a version number that includes an _, spotted and fix suggested by Bill Ricker. Fixed test failure on cygwin, thanks to Erik Rantapaa for the patch. Fixed a bunch of typos in docs, RT #25836, spotted and fixed by David Steinbrunner Improved re-use of XML::Twig objects for repetitive parsing. It looks like it should be OK now , but I am sure I haven't tested all cases yet (especially when DTDs and entities are involved). HTML parsing improved: XML::Twig now tries to find the proper encoding for the document (that's not done by HTML::TreeBuilder at the moment). XML::Twig::Elt purge and flush methods now only purge/flush up to the element, not up to the current element in the twig (duh!) Fixed bug in handlers of the form elt[string(subelt)="foo"] and elt[string(subelt)=1] which did not work at all fixed bug in parameter entity output, spotted by BenHopkins on perlmonks (see http://www.perlmonks.org/?node_id=618360) fixed bug in xml_string: options were not used improved error reporting for missing SYSTEM entities, including the option to set twig_expand_external_ents to -1, which makes missing SYSTEM entities not fatal, but reports them in $t->{twig_missing_system_entities} Thanks to Frank Wegmann for his suggestions and for testing the various versions of the feature fixed internals so new versions of Pod::Coverage won't barf Changes in 3.29 fixed a bug in the handling of handlers after an ignore (RT #24392, reported by Robert Eden). Changes in 3.28 now builds on Windows and OS2 refactored the code that triggers handlers, more complex expressions can now be handled, such as '/doc/section[@def="1"]/title' COMPATIBILITY WARNING Up to version 3.26, you could change the attribute of a parent of a node on which you had a handler, and be able to trigger a handler on that parent node based on the new attribute value: XML::Twig->new( twig_handlers => { 'sect/title' => sub { $_->parent->set_att( has_title => 1)}, 'sect[@has_title="1"]'=> sub { ... }, # called for any sect that has } # a title ); This won't work now. The trigger expression ('sect[@has_title="1"]') is evaluated strictly against the input XML. This is more logical and consistent (if you changed the element name, the new name was never used in the evaluation of the trigger). The only exception to that rule is if you use "private attributes": attributes which name starts with a '#'. By definition this in an invalid XML name, so it can't be in the input, and has to have been created . In that case the code that evaluates the trigger looks at the attribute in the element in the tree in memory (if it exists). So in the example above, if you replace 'has_title' by '#has_title', everything will work fine. Note that private attributes are not output when using the print/sprint/xml_string... methods. fixed xml_pp so it does not leave a tempfile and a broken original file all when the original file is not well-formed. added the nparse_pp method that does an nparse with pretty_print set to 'indented', nparse_e that sets error_context, and nparse_ppe that does both added XML::Twig::Elt tag_to_span and tag_to_div methods (turn an element into a span/div and set its class to the old tag name) added the quote option for XML::Twig new, which sets the output quote character for attributes ('single' or 'double') added the text_only and xml_text_only methods that return the text of the element, but not of the sub-elements. added outer_xml method (synonym for sprint) fixed bug where entity names were not matched properly (RT #22854, spotted by Bob Faist) fixed bug on some DOCTYPE config with twig_print_outside_roots fixed bug in set_keep_encoding (the method, not the option). fixed bug in simplify: the code attempted to replace variables in attribute values even if no option required it, spotted by Klaus Rush clean-up and fixed bugs in ignore: the method can now be called from a regular handler (it always could but the docs did not say so, thanks to kudra for noticing this). It can also be called to ignore a parent of the current element. There were bugs there, and the tree was not built properly added error message when an XPath query with a leading / is used on a node that does not belong to a whole twig (because it's been cut or because the twig itself went out of scope) when parsing HTML with error_context set, the HTML is indented, in order to give better error report
2008-07-16 14:06:07 +02:00
SHA1 (XML-Twig-3.32.tar.gz) = f8fb38e0e088f2c56c7eb4d804d943872e6ddf98
RMD160 (XML-Twig-3.32.tar.gz) = 922374f2e8907a13629569e8fdd9c2f86c32f412
Size (XML-Twig-3.32.tar.gz) = 345665 bytes
SHA1 (patch-aa) = 350c2a1529de24171bdd7772d97e87d5f156a061
Update to 3.16: Changes in 3.16 added the xml_split/xml_merge tools fixed PI handler behaviour when used in twig_roots mode fix a bug that prevented the DTD to be output when update_DTD mode is on, no DTD is present but entities have been created added level(<n>) trigger for handlers fixed bug that prevented the output_filter to be called when printing an element. Spotted thanks to Louis Strous. fixed bug in the nsgmls pretty printer that output invalid XML (an extra \n was added in the end tag) found by Lee Goddard fixed test 284 in test_additional to make it pass in RedHat's version of perl 5.8.0, thanks to rdhayes for debugging and fixing that test. first shot at getting Pis and comments back in the proper place, even in 'keep' mode. At the moment using set_pcdata (or set_cdata) removes all embedded comments/pis fixed a bug with pi's in keep mode (pi's would not be copied if they were within an element) found by Pascal Sternis added a fix to get rid of spurious warnings, sent by Anthony Persaud added the remove_cdata option to the XML::Twig new method, that will output CDATA sections as regular (escaped) PCDATA added the index option to the XML::Twig new method, and the associated XML::Twig index method, which generates a list of element matching a condition during parsing added the XML::Twig::Elt first_descendant method fixed a bug with the keep_encoding option where attributes were not parsed when the element name was followed by more than one space (spotted by Gerald Sedrati-Dinet), see https://rt.cpan.org/Ticket/Display.html?id=8137 fixed a bug where whitespace at the begining of an element could be dropped (if followed by an element before any other character). Now whitespace is dropped only if it includes a \n added feature: when load_DTD is used, default attributes are now filled fixed bug on xmlns in path expression trigger (would not replace prefixes in path expressions), spotted by amonroy on perlmonks, see http://perlmonks.org/index.pl?node_id=386764 optimized XML::Twig text, thanks to Nick Lassonde for the patch fixed bug that generated an empty line before some comments (pointed out by Tanya Huang) fixed tests to check XML::Filter::BufferText version (1.00 has a bug in the CDATA handling that makes XML::Twig tests fail). Added new options --nowrap and --exclude (-v) to xml_grep fixed warning in tests under 5.8.0 (spotted by Ed Avis) skipped HTML::Entities tests in 5.8.0 (make test for this module seem to fail on my system, it might be the same elsewhere) Fixed bug RT #6067 (problems with non-standard versions of Scalar::Utils which do not include weaken) Fixed bug RT #6092 (error when using safe output filter) Fixed bug when using map_xmlns, tags in default namespace were not output Changes in 3.15 Fixes that allow the tests to pass on more systems (thanks to Ed Avis for his testing) Added normalize_space option for simplify (suggestion of Lambert Lum) Removed usage of $& Expanded the doc for paste, as it was a bit short (suggestion of Richard Jolly) Changes in 3.14 Namespace processing has been enhanced and should work fine now, as long as twig_roots is not used. Potentially uncompatible change: the behaviour of simplify has been changed to mimic as exactly as possible XML::Simple's XMLin Completed the pod to cover the entire API Tests now pass with perl 5.005_04-RC1 (fail with 5.005 reported by David Claughton), added more tests and a config summary at the end of the tests Added methods on the class attribute, convenient for dealing with XHTML or preparing display with CSS: class set_class add_to_class att_to_class add_att_to_class move_att_to_class tag_to_class add_tag_to_class set_tag_class in_class navigation functions can use '.<class>' expressions fixed (yet another!) bug in the way DTDs were output fixed bug for pi => 'drop' option changed the names of lots on internal (undocumented) methods, prefixed them with _
2005-02-19 20:32:21 +01:00
SHA1 (patch-ab) = 1f7703b0cb1218b01f5187d86c98c6266f66d8ef