NAME
Catmandu::Importer::SRU::Parser::struct - transform SRU responses into structured XML records
SYNOPSIS
my $importer = Catmandu::Importer::SRU->new(
base => $base,
query => $query,
parser => 'struct'
);
DESCRIPTION
Each SRU response record will be transformed into order-preserving, structured XML as defined by XML::Struct.
CONFIGURATION
Options of XML::Struct::Reader are not supported. As workaround wrap the reader as following, if needed:
my $reader = XML::Struct::Reader->new( %options );
my $importer = Catmandu::Importer::SRU->new(
base => $base,
query => $query,
parser => sub {
$reader->readDocument(
XML::LibXML::Reader->new( string => $_[0]->{recordData} )
);
},
);
AUTHOR
Jakob Voß voss@gbv.de
1 POD Error
The following errors were encountered while parsing the POD:
- Around line 54:
Non-ASCII character seen before =encoding in 'Voß'. Assuming UTF-8