line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
# $rcs = ' $Id: Ebay.pm,v 1.37 2014-09-09 03:07:04 Martin Exp $ ' ; |
3
|
|
|
|
|
|
|
|
4
|
|
|
|
|
|
|
=head1 NAME |
5
|
|
|
|
|
|
|
|
6
|
|
|
|
|
|
|
WWW::Ebay - Search and manage eBay auctions |
7
|
|
|
|
|
|
|
|
8
|
|
|
|
|
|
|
=head1 DESCRIPTION |
9
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
This is an empty module. It only exists so that CPAN users can say |
11
|
|
|
|
|
|
|
"install WWW::Ebay" (and CPANPLUS users can say "i WWW::Ebay") and |
12
|
|
|
|
|
|
|
they'll get what they expect. Well, actually I'm not sure what they |
13
|
|
|
|
|
|
|
expect, but they'll get something reasonable. |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
=head1 SEE ALSO |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
L, |
18
|
|
|
|
|
|
|
L, |
19
|
|
|
|
|
|
|
L, |
20
|
|
|
|
|
|
|
L, |
21
|
|
|
|
|
|
|
L, |
22
|
|
|
|
|
|
|
L, |
23
|
|
|
|
|
|
|
L |
24
|
|
|
|
|
|
|
L |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
=head1 AUTHOR |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
Martin 'Kingpin' Thurn, C, L. |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
=head1 LICENSE |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
This software is released under the same license as Perl itself. |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
=cut |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
package WWW::Ebay; |
37
|
|
|
|
|
|
|
|
38
|
1
|
|
|
1
|
|
4124
|
use strict; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
21
|
|
39
|
1
|
|
|
1
|
|
2
|
use warnings; |
|
1
|
|
|
|
|
1
|
|
|
1
|
|
|
|
|
34
|
|
40
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
require 5.005; |
42
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
our |
44
|
|
|
|
|
|
|
$VERSION = '1.004'; |
45
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
1; |
47
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
__END__ |