Subject: | Not compatible with XML::LibXML >= 1.64 |
Due to the API change in XML::LibXML::Namespace occurred with XML::LibXML 1.64 your
module does no longer work and even the test suite fails.
Please find attached a patch to fix the issue.
Subject: | libxml.patch |
--- /Library/Perl/5.8.6/XML/RSS/LibXML.pm 2007-05-09 01:05:38.000000000 +0200
+++ Desktop/LibXML.pm 2007-09-30 20:38:34.000000000 +0200
@@ -169,7 +169,7 @@
my $self = shift;
my $node = shift;
my %h = map {
- (($_->getName() || '#default') => $_->getData)
+ (($_->getLocalName() || '#default') => $_->getData)
} $node->getNamespaces();
# while (my($p, $uri) = each %h) {