| line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
|
1
|
|
|
|
|
|
|
package DOM::Tiny::Entities; |
|
2
|
|
|
|
|
|
|
|
|
3
|
1
|
|
|
1
|
|
13872
|
use strict; |
|
|
1
|
|
|
|
|
2
|
|
|
|
1
|
|
|
|
|
27
|
|
|
4
|
1
|
|
|
1
|
|
3
|
use warnings; |
|
|
1
|
|
|
|
|
2
|
|
|
|
1
|
|
|
|
|
25
|
|
|
5
|
1
|
|
|
1
|
|
3
|
use Exporter 'import'; |
|
|
1
|
|
|
|
|
1
|
|
|
|
1
|
|
|
|
|
34
|
|
|
6
|
1
|
|
|
1
|
|
546
|
use Mojo::DOM58::Entities qw(html_escape html_unescape); |
|
|
1
|
|
|
|
|
9255
|
|
|
|
1
|
|
|
|
|
250
|
|
|
7
|
|
|
|
|
|
|
|
|
8
|
|
|
|
|
|
|
our $VERSION = '0.004'; |
|
9
|
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
our @EXPORT_OK = qw(html_escape html_unescape); |
|
11
|
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
1; |
|
13
|
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
=encoding utf8 |
|
15
|
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
=head1 NAME |
|
17
|
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
DOM::Tiny::Entities - This is an empty re-exporter, you wanted Mojo::DOM58::Entities |
|
19
|
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
=head1 IT'S DEAD, JIM. |
|
21
|
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
Development continues under the name L. |
|
23
|
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
This is an empty re-exporter therefor to avoid defecating on existing users |
|
25
|
|
|
|
|
|
|
from a great height, but you should still update your code. |
|
26
|
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
=head1 AUTHOR |
|
28
|
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
Dan Book |
|
30
|
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
=head1 COPYRIGHT AND LICENSE |
|
32
|
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
This software is Copyright (c) 2015 by Dan Book. |
|
34
|
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
This is free software, licensed under: |
|
36
|
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
The Artistic License 2.0 (GPL Compatible) |
|
38
|
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
=head1 SEE ALSO |
|
40
|
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
L |
|
42
|
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
=cut |