The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

Changes for version 0.63 - 2011-01-17

  • This fixes a bug in getValues() method exposed in PERL 5.13.1 and higher, where a local variable is not shared with a sub reference.
  • Replaced the use of the Data::Dump module with Data::Dumper. In the latest version of PERL (5.12.2 tested) the eval function does not like unquoted HASH keys which begin with the dash "-". Data::Dump does not quote the hash key, so its use was replaced with Data::Dumper which does quote the hash key. It is used to clone XML structures. The XML::TreePP module uses the dash "-" as default (configurable to optionally use "@" instead of "-") to indicate attributes of XML elements. So the XML string "<element attribute="value"/>" is represented in PERL structure as "{ element => { -attribute => 'value' } }" with Data::Dump and as "{ element => { '-attribute' => 'value' } }" with Data::Dumper

Modules

Similar to XPath, defines a path as an accessor to nodes of an XML::TreePP parsed XML Document.