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:31:22 +0000 (21:31 +0000)
committermiker <miker@dcc99617-32d9-48b4-a31d-7c20da2025e4>
Tue, 29 Jan 2008 21:31:22 +0000 (21:31 +0000)
git-svn-id: svn://svn.open-ils.org/ILS/branches/rel_1_2_1@8532 dcc99617-32d9-48b4-a31d-7c20da2025e4

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

index 76f8a6a..12f7e76 100644 (file)
@@ -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;