GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
HTTP::OAI::Identify(3) User Contributed Perl Documentation HTTP::OAI::Identify(3)

HTTP::OAI::Identify - Provide access to an OAI Identify response

        use HTTP::OAI::Identify;
        my $i = new HTTP::OAI::Identify(
                adminEmail=>'billg@microsoft.com',
                baseURL=>'http://www.myarchives.org/oai',
                repositoryName=>'www.myarchives.org'
        );
        for( $i->adminEmail ) {
                print $_, "\n";
        }

$i = new HTTP::OAI::Identify(-baseURL=>'http://arXiv.org/oai1'[, adminEmail=>$email, protocolVersion=>'2.0', repositoryName=>'myarchive'])
This constructor method returns a new instance of the OAI::Identify module.
$i->version
Return the original version of the OAI response, according to the given XML namespace.
$i->headers
Returns an HTTP::Headers object. Use $headers->header('headername') to retrive field values.
$burl = $i->baseURL([$burl])
$eds = $i->earliestDatestamp([$eds])
$gran = $i->granularity([$gran])
$version = $i->protocolVersion($version)
$name = $i->repositoryName($name)
Returns and optionally sets the relevent header. NOTE: protocolVersion will always be '2.0'. Use $i->version to find out the protocol version used by the repository.
@addys = $i->adminEmail([$email])
@cmps = $i->compression([$cmp])
Returns and optionally adds to the multi-value headers.
@dl = $i->description([$d])
Returns the description list and optionally appends a new description $d. Returns an array ref of HTTP::OAI::Descriptions, or an empty ref if there are no description.
$d = $i->next
Returns the next description or undef if no more description left.
$dom = $i->toDOM
Returns a XML::DOM object representing the Identify response.
2022-09-13 perl v5.40.2

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.