line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package DOM::Tiny; |
2
|
|
|
|
|
|
|
|
3
|
1
|
|
|
1
|
|
12327
|
use strict; |
|
1
|
|
|
|
|
1
|
|
|
1
|
|
|
|
|
22
|
|
4
|
1
|
|
|
1
|
|
3
|
use warnings; |
|
1
|
|
|
|
|
1
|
|
|
1
|
|
|
|
|
22
|
|
5
|
1
|
|
|
1
|
|
2
|
use base qw(Mojo::DOM58); |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
504
|
|
6
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
our $VERSION = '0.005'; |
8
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
1; |
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
=encoding utf8 |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
=head1 NAME |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
DOM::Tiny - This is an empty subclass, you wanted Mojo::DOM58 |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
=head1 IT'S DEAD, JIM. |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
Development continues under the name L. |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
This is an empty subclass thereof to avoid defecating on existing users |
22
|
|
|
|
|
|
|
from a great height, but you should still update your code. |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
=head1 AUTHOR |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
Dan Book |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
Code and tests adapted from L, a lightweight DOM parser by the L team. |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
=head1 CONTRIBUTORS |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
=over |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
=item Matt S Trout (mst) |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
=back |
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
=head1 COPYRIGHT AND LICENSE |
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
Copyright (c) 2008-2015 Sebastian Riedel. |
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
Copyright (c) 2015 L"AUTHOR"> and L"CONTRIBUTORS"> for adaptation to standalone format. |
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
This is free software, licensed under: |
45
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
The Artistic License 2.0 (GPL Compatible) |
47
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
=head1 SEE ALSO |
49
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
L, L, L, L, L |
51
|
|
|
|
|
|
|
|
52
|
|
|
|
|
|
|
=for Pod::Coverage TO_JSON |
53
|
|
|
|
|
|
|
|
54
|
|
|
|
|
|
|
=cut |