use default namespaces ... easier to work with anyway, and newer libxmls avoid stripp...
authormiker <miker@dcc99617-32d9-48b4-a31d-7c20da2025e4>
Tue, 29 Jan 2008 21:30:03 +0000 (21:30 +0000)
committermiker <miker@dcc99617-32d9-48b4-a31d-7c20da2025e4>
Tue, 29 Jan 2008 21:30:03 +0000 (21:30 +0000)
git-svn-id: svn://svn.open-ils.org/ILS/trunk@8530 dcc99617-32d9-48b4-a31d-7c20da2025e4

Open-ILS/src/perlmods/OpenILS/WWW/SuperCat/Feed.pm

index aafed66..12f7e76 100644 (file)
@@ -290,8 +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', 'atom', 0);
+       $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';
@@ -390,8 +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/', 'mods', 0);
+       $self->{doc}->documentElement->setNamespace('http://www.loc.gov/mods/', undef);
        $self->{type} = 'application/xml';
        $self->{holdings_xpath} = '/mods:mods';
        return $self;
@@ -443,8 +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', 'mods', 0);
+       $self->{doc}->documentElement->setNamespace('http://www.loc.gov/mods/v3', undef);
        $self->{type} = 'application/xml';
        $self->{holdings_xpath} = '/mods:mods';
        return $self;
@@ -512,8 +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', 'marc', 0);
+       $self->{doc}->documentElement->setNamespace('http://www.loc.gov/MARC21/slim', undef);
        $self->{type} = 'application/xml';
        $self->{holdings_xpath} = '/marc:record';
        return $self;