Skip Menu |

Preferred bug tracker

Please visit the preferred bug tracker to report your issue.

This queue is for tickets about the XML-RSS-LibXML CPAN distribution.

Report information
The Basics
Id: 29683
Status: open
Priority: 0/
Queue: XML-RSS-LibXML

People
Owner: Nobody in particular
Requestors: aar [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: Critical
Broken in: 0.3001
Fixed in: 0.3002



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) {
From: DMAKI [...] cpan.org
Thanks, applied and 0.3002 released. /me wonders why these bug reports don't always get delivered to us automatically