HTTP::OAI - API for the OAI-PMH


HTTP-OAI documentation Contained in the HTTP-OAI distribution.

Index


Code Index:

NAME

Top

HTTP::OAI - API for the OAI-PMH

DESCRIPTION

Top

This is a stub module, you probably want to look at HTTP::OAI::Harvester or HTTP::OAI::Repository.

SEE ALSO

Top

You can find links to this and other OAI tools (perl, C++, java) at: http://www.openarchives.org/tools/tools.html.

Ed Summers Net::OAI::Harvester module.

AUTHOR

Top

Copyright 2004-2010 Tim Brody <tdb2@ecs.soton.ac.uk>, University of Southampton.

This module is free software and is released under the BSD License (see LICENSE).


HTTP-OAI documentation Contained in the HTTP-OAI distribution.

package HTTP::OAI;

use strict;

our $VERSION = '3.25';

# perlcore
use Carp;
use Encode;

# http related stuff
use URI;
use HTTP::Headers;
use HTTP::Request;
use HTTP::Response;

# xml related stuff
use XML::SAX;
use XML::SAX::ParserFactory;
use XML::LibXML;
use XML::LibXML::SAX;
use XML::LibXML::SAX::Parser;
use XML::LibXML::SAX::Builder;

# debug
use HTTP::OAI::Debug;

# oai data objects
use HTTP::OAI::Encapsulation; # Basic XML handling stuff
use HTTP::OAI::Metadata; # Super class of all data objects
use HTTP::OAI::Error;
use HTTP::OAI::Header;
use HTTP::OAI::MetadataFormat;
use HTTP::OAI::Record;
use HTTP::OAI::ResumptionToken;
use HTTP::OAI::Set;

# parses OAI headers and other utility bits
use HTTP::OAI::Headers;

# generic superclasses
use HTTP::OAI::Response;
use HTTP::OAI::PartialList;

# oai verbs
use HTTP::OAI::GetRecord;
use HTTP::OAI::Identify;
use HTTP::OAI::ListIdentifiers;
use HTTP::OAI::ListMetadataFormats;
use HTTP::OAI::ListRecords;
use HTTP::OAI::ListSets;

# oai agents
use HTTP::OAI::UserAgent;
use HTTP::OAI::Harvester;
use HTTP::OAI::Repository;

$HTTP::OAI::Harvester::VERSION = $VERSION;

if( $ENV{HTTP_OAI_TRACE} )
{
	HTTP::OAI::Debug::level( '+trace' );
}
if( $ENV{HTTP_OAI_SAX_TRACE} )
{
	HTTP::OAI::Debug::level( '+sax' );
}

1;

__END__