| line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
|
1
|
|
|
|
|
|
|
# -*- Mode: cperl; coding: utf-8; cperl-indent-level: 4 -*- |
|
2
|
|
|
|
|
|
|
# vim: ts=4 sts=4 sw=4: |
|
3
|
|
|
|
|
|
|
package CPAN::URL; |
|
4
|
13
|
|
|
13
|
|
98
|
use overload '""' => "as_string", fallback => 1; |
|
|
13
|
|
|
|
|
25
|
|
|
|
13
|
|
|
|
|
80
|
|
|
5
|
|
|
|
|
|
|
# accessors: TEXT(the url string), FROM(DEF=>defaultlist,USER=>urllist), |
|
6
|
|
|
|
|
|
|
# planned are things like age or quality |
|
7
|
|
|
|
|
|
|
|
|
8
|
13
|
|
|
|
|
2214
|
use vars qw( |
|
9
|
|
|
|
|
|
|
$VERSION |
|
10
|
13
|
|
|
13
|
|
1110
|
); |
|
|
13
|
|
|
|
|
26
|
|
|
11
|
|
|
|
|
|
|
$VERSION = "5.5"; |
|
12
|
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
sub new { |
|
14
|
29
|
|
|
29
|
0
|
162
|
my($class,%args) = @_; |
|
15
|
29
|
|
|
|
|
270
|
bless { |
|
16
|
|
|
|
|
|
|
%args |
|
17
|
|
|
|
|
|
|
}, $class; |
|
18
|
|
|
|
|
|
|
} |
|
19
|
|
|
|
|
|
|
sub as_string { |
|
20
|
6
|
|
|
6
|
0
|
20
|
my($self) = @_; |
|
21
|
6
|
|
|
|
|
15
|
$self->text; |
|
22
|
|
|
|
|
|
|
} |
|
23
|
|
|
|
|
|
|
sub text { |
|
24
|
6
|
|
|
6
|
0
|
13
|
my($self,$set) = @_; |
|
25
|
6
|
50
|
|
|
|
16
|
if (defined $set) { |
|
26
|
0
|
|
|
|
|
0
|
$self->{TEXT} = $set; |
|
27
|
|
|
|
|
|
|
} |
|
28
|
6
|
|
|
|
|
44
|
$self->{TEXT}; |
|
29
|
|
|
|
|
|
|
} |
|
30
|
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
1; |