Biblio-Refbase
view release on metacpan or search on metacpan
- Henning Manske <hma@cpan.org>
license: perl
distribution_type: module
configure_requires:
ExtUtils::MakeMaker: 6.17
build_requires:
HTTP::Status: 0
LWP::UserAgent: 0
Test::More: 0.62
requires:
HTTP::Request::Common: 0
HTTP::Response: 0
HTTP::Status: 0
LWP::UserAgent: 0
perl: 5.006
URI: 0
URI::QueryParam: 0
resources:
bugtracker: http://github.com/hma/Biblio-Refbase/issues
homepage: http://search.cpan.org/dist/Biblio-Refbase/
license: http://dev.perl.org/licenses/
Makefile.PL view on Meta::CPAN
( $knows_meta ? ( META_MERGE => $META ) : () ),
( $knows_min_perl_version ? ( MIN_PERL_VERSION => 5.006 ) : () ),
( $knows_configure_requires ? ( CONFIGURE_REQUIRES => { 'ExtUtils::MakeMaker' => '6.17' } ) : () ),
BUILD_REQUIRES => {
'HTTP::Status' => '0',
'LWP::UserAgent' => '0',
'Test::More' => '0.62',
},
PREREQ_PM => {
'HTTP::Request::Common' => '0',
'HTTP::Response' => '0',
'HTTP::Status' => '0',
'LWP::UserAgent' => '0',
'URI' => '0',
'URI::QueryParam' => '0',
},
dist => { COMPRESS => 'gzip -9f' },
clean => { FILES => "$dist-* cover_db Debian_CPANTS.txt nytprof*" },
test => { TESTS => 't/*.t xt/*.t' },
perl Makefile.PL
make
make test
make install
DEPENDENCIES
This module requires these other modules:
HTTP::Request::Common
HTTP::Response
HTTP::Status
LWP::UserAgent
Test::More 0.62+ (required by "make test")
URI
URI::QueryParam
DOCUMENTATION
lib/Biblio/Refbase.pm view on Meta::CPAN
use 5.006;
use strict;
use warnings;
our $VERSION = '0.04';
$VERSION = eval $VERSION;
use Carp;
use HTTP::Request::Common;
use HTTP::Status ':constants';
use LWP::UserAgent;
use URI;
use URI::QueryParam;
use constant REFBASE_LOGIN => 'user_login.php';
use constant REFBASE_IMPORT => 'import_modify.php';
use constant REFBASE_SHOW => 'show.php';
use constant REFBASE_ERROR => 'error.php';
( run in 0.497 second using v1.01-cache-2.11-cpan-de7293f3b23 )