line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
############################################################################### |
2
|
|
|
|
|
|
|
# |
3
|
|
|
|
|
|
|
# This file copyright (c) 2006-2008 by Randy J. Ray, all rights reserved |
4
|
|
|
|
|
|
|
# |
5
|
|
|
|
|
|
|
# See "LICENSE" in the documentation for licensing and redistribution terms. |
6
|
|
|
|
|
|
|
# |
7
|
|
|
|
|
|
|
############################################################################### |
8
|
|
|
|
|
|
|
# |
9
|
|
|
|
|
|
|
# $Id: ISBNDB.pm 50 2008-04-06 10:53:33Z $ |
10
|
|
|
|
|
|
|
# |
11
|
|
|
|
|
|
|
# Description: Empty, placeholder module for version-test capability. |
12
|
|
|
|
|
|
|
# |
13
|
|
|
|
|
|
|
# Functions: None |
14
|
|
|
|
|
|
|
# |
15
|
|
|
|
|
|
|
############################################################################### |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
package WebService::ISBNDB; |
18
|
|
|
|
|
|
|
|
19
|
2
|
|
|
2
|
|
8016
|
use 5.006; |
|
2
|
|
|
|
|
7
|
|
|
2
|
|
|
|
|
77
|
|
20
|
2
|
|
|
2
|
|
13
|
use strict; |
|
2
|
|
|
|
|
5
|
|
|
2
|
|
|
|
|
76
|
|
21
|
2
|
|
|
2
|
|
22
|
use warnings; |
|
2
|
|
|
|
|
4
|
|
|
2
|
|
|
|
|
84
|
|
22
|
2
|
|
|
2
|
|
20
|
use vars qw($VERSION); |
|
2
|
|
|
|
|
4
|
|
|
2
|
|
|
|
|
158
|
|
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
$VERSION = "0.34"; |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
1; |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
=pod |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
=head1 NAME |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
WebService::ISBNDB - A Perl extension to access isbndb.com |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
=head1 DESCRIPTION |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
This module provides no routines or methods. Its purpose is to provide a |
37
|
|
|
|
|
|
|
testable version for other modules that depend on this distribution. |
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
=head1 SEE ALSO |
40
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
L, L, |
42
|
|
|
|
|
|
|
L, L, |
43
|
|
|
|
|
|
|
L, L, |
44
|
|
|
|
|
|
|
L, L, |
45
|
|
|
|
|
|
|
L |
46
|
|
|
|
|
|
|
|
47
|
|
|
|
|
|
|
=head1 AUTHOR |
48
|
|
|
|
|
|
|
|
49
|
|
|
|
|
|
|
Randy J. Ray Erjray@blackperl.comE |
50
|
|
|
|
|
|
|
|
51
|
|
|
|
|
|
|
=head1 LICENSE |
52
|
|
|
|
|
|
|
|
53
|
|
|
|
|
|
|
This module and the code within are |
54
|
|
|
|
|
|
|
released under the terms of the Artistic License 2.0 |
55
|
|
|
|
|
|
|
(http://www.opensource.org/licenses/artistic-license-2.0.php). This |
56
|
|
|
|
|
|
|
code may be redistributed under either the Artistic License or the GNU |
57
|
|
|
|
|
|
|
Lesser General Public License (LGPL) version 2.1 |
58
|
|
|
|
|
|
|
(http://www.opensource.org/licenses/lgpl-license.php). |
59
|
|
|
|
|
|
|
|
60
|
|
|
|
|
|
|
=cut |