From: miker Date: Tue, 29 Jan 2008 21:31:22 +0000 (+0000) Subject: use default namespaces ... easier to work with anyway, and newer libxmls avoid stripp... X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=bc262844cfb10c7d0af8dbf51ac4fc3fe9bf28f6;p=Evergreen.git use default namespaces ... easier to work with anyway, and newer libxmls avoid stripping them git-svn-id: svn://svn.open-ils.org/ILS/branches/rel_1_2_1@8532 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- diff --git a/Open-ILS/src/perlmods/OpenILS/WWW/SuperCat/Feed.pm b/Open-ILS/src/perlmods/OpenILS/WWW/SuperCat/Feed.pm index 76f8a6a09f..12f7e7643f 100644 --- a/Open-ILS/src/perlmods/OpenILS/WWW/SuperCat/Feed.pm +++ b/Open-ILS/src/perlmods/OpenILS/WWW/SuperCat/Feed.pm @@ -290,7 +290,7 @@ sub new { my $class = shift; my $xml = shift; my $self = $class->SUPER::build($xml); - $self->{doc}->documentElement->setNamespace('http://www.w3.org/2005/Atom', 'atom'); + $self->{doc}->documentElement->setNamespace('http://www.w3.org/2005/Atom', undef); $self->{item_xpath} = '/atom:entry'; $self->{holdings_xpath} = '/atom:entry'; $self->{type} = 'application/xml'; @@ -389,7 +389,7 @@ sub new { my $class = shift; my $xml = shift; my $self = $class->SUPER::build($xml); - $self->{doc}->documentElement->setNamespace('http://www.loc.gov/mods/', 'mods'); + $self->{doc}->documentElement->setNamespace('http://www.loc.gov/mods/', undef); $self->{type} = 'application/xml'; $self->{holdings_xpath} = '/mods:mods'; return $self; @@ -441,7 +441,7 @@ sub new { my $class = shift; my $xml = shift; my $self = $class->SUPER::build($xml); - $self->{doc}->documentElement->setNamespace('http://www.loc.gov/mods/v3', 'mods'); + $self->{doc}->documentElement->setNamespace('http://www.loc.gov/mods/v3', undef); $self->{type} = 'application/xml'; $self->{holdings_xpath} = '/mods:mods'; return $self; @@ -509,7 +509,7 @@ sub new { my $xml = shift; my $self = $class->SUPER::build($xml); return undef unless $self; - $self->{doc}->documentElement->setNamespace('http://www.loc.gov/MARC21/slim', 'marc'); + $self->{doc}->documentElement->setNamespace('http://www.loc.gov/MARC21/slim', undef); $self->{type} = 'application/xml'; $self->{holdings_xpath} = '/marc:record'; return $self;