fix the marcxml feed to use default namespace on the record element
authormiker <miker@dcc99617-32d9-48b4-a31d-7c20da2025e4>
Wed, 4 Jun 2008 04:00:48 +0000 (04:00 +0000)
committermiker <miker@dcc99617-32d9-48b4-a31d-7c20da2025e4>
Wed, 4 Jun 2008 04:00:48 +0000 (04:00 +0000)
git-svn-id: svn://svn.open-ils.org/ILS/branches/rel_1_2_2@9764 dcc99617-32d9-48b4-a31d-7c20da2025e4

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

index 7bf6a70..6d382a3 100644 (file)
@@ -514,9 +514,8 @@ sub new {
        my $self = $class->SUPER::build($xml);
        return undef unless $self;
        $self->{doc}->documentElement->setNamespace('http://www.loc.gov/MARC21/slim', undef);
-       $self->{doc}->documentElement->setNamespace('http://www.loc.gov/MARC21/slim', 'marc');
        $self->{type} = 'application/xml';
-       $self->{holdings_xpath} = '/marc:record';
+       $self->{holdings_xpath} = '/*[local-name()="record"]';
        return $self;
 }
 
@@ -527,7 +526,7 @@ sub link {
 
        if ($type eq 'opac') {
                $self->_create_node(
-                       'marc:record',
+                       '*[local-name()="record"]',
                        'http://www.w3.org/1999/xhtml',
                        'xhtml:link',
                        undef,
@@ -536,7 +535,7 @@ sub link {
                $linkid++;
        } elsif ($type eq 'unapi-id') {
                $self->_create_node(
-                       'marc:record',
+                       '*[local-name()="record"]',
                        'http://www.w3.org/1999/xhtml',
                        'xhtml:abbr',
                        undef,