line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Acme::MetaSyntactic::tmnt; |
2
|
1
|
|
|
1
|
|
126990
|
use strict; |
|
1
|
|
|
|
|
7
|
|
|
1
|
|
|
|
|
47
|
|
3
|
1
|
|
|
1
|
|
10
|
use Acme::MetaSyntactic::List; |
|
1
|
|
|
|
|
7
|
|
|
1
|
|
|
|
|
199
|
|
4
|
|
|
|
|
|
|
our @ISA = qw( Acme::MetaSyntactic::List ); |
5
|
|
|
|
|
|
|
our $VERSION = '1.001'; |
6
|
|
|
|
|
|
|
__PACKAGE__->init(); |
7
|
|
|
|
|
|
|
|
8
|
|
|
|
|
|
|
our %Remote = ( |
9
|
|
|
|
|
|
|
source => ['http://www.ninjaturtles.com/html/profiles.htm', |
10
|
|
|
|
|
|
|
'http://www.ninjaturtles.com/html/profiles02.htm'], |
11
|
|
|
|
|
|
|
extract => sub { |
12
|
|
|
|
|
|
|
return |
13
|
|
|
|
|
|
|
map { s/\W+/_/g; $_ } |
14
|
|
|
|
|
|
|
map { split /\s+&\s+/ } |
15
|
|
|
|
|
|
|
$_ [0] =~ m{([^<]+)}g |
16
|
|
|
|
|
|
|
} |
17
|
|
|
|
|
|
|
); |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
1; |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
=head1 NAME |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
Acme::MetaSyntactic::tmnt - The Teenage Mutant Ninja Turtles theme |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
=head1 DESCRIPTION |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
The Teenage Mutant Ninja Turtles are a comic series created in 1984 |
28
|
|
|
|
|
|
|
by Kevin Eastman and Peter Laird. They have been published as comic |
29
|
|
|
|
|
|
|
books, television series, and movies. |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
The official web of Mirage Studios has a lot of information about |
32
|
|
|
|
|
|
|
the TMNT, see L. |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
=head1 CONTRIBUTOR |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
Abigail |
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
=head1 CHANGES |
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
=over 4 |
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
=item * |
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
2012-05-07 |
45
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
Received its own version number in Acme-MetaSyntactic-Themes version 1.000. |
47
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
=item * |
49
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
2006-01-30 |
51
|
|
|
|
|
|
|
|
52
|
|
|
|
|
|
|
Made updatable in Acme-MetaSyntactic version 0.59. |
53
|
|
|
|
|
|
|
|
54
|
|
|
|
|
|
|
=item * |
55
|
|
|
|
|
|
|
|
56
|
|
|
|
|
|
|
2006-01-23 |
57
|
|
|
|
|
|
|
|
58
|
|
|
|
|
|
|
Introduced in Acme-MetaSyntactic version 0.58. |
59
|
|
|
|
|
|
|
|
60
|
|
|
|
|
|
|
=item * |
61
|
|
|
|
|
|
|
|
62
|
|
|
|
|
|
|
2005-10-26 |
63
|
|
|
|
|
|
|
|
64
|
|
|
|
|
|
|
Submitted by Abigail. |
65
|
|
|
|
|
|
|
|
66
|
|
|
|
|
|
|
=back |
67
|
|
|
|
|
|
|
|
68
|
|
|
|
|
|
|
Source URL and list updated in v1.001, published in Acme-MetaSyntactic-Theme |
69
|
|
|
|
|
|
|
1.002, on May 21, 2012. |
70
|
|
|
|
|
|
|
|
71
|
|
|
|
|
|
|
=head1 SEE ALSO |
72
|
|
|
|
|
|
|
|
73
|
|
|
|
|
|
|
L, L. |
74
|
|
|
|
|
|
|
|
75
|
|
|
|
|
|
|
=cut |
76
|
|
|
|
|
|
|
|
77
|
|
|
|
|
|
|
__DATA__ |