line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
=head1 NAME |
3
|
|
|
|
|
|
|
|
4
|
|
|
|
|
|
|
Weasel::Element::Document - Weasel Element Document |
5
|
|
|
|
|
|
|
|
6
|
|
|
|
|
|
|
=head1 VERSION |
7
|
|
|
|
|
|
|
|
8
|
|
|
|
|
|
|
0.01 |
9
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
=head1 SYNOPSIS |
11
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
=head1 DESCRIPTION |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
=cut |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
=head1 DEPENDENCIES |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
=cut |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
package Weasel::Element::Document; |
25
|
|
|
|
|
|
|
|
26
|
2
|
|
|
2
|
|
1540
|
use strict; |
|
2
|
|
|
|
|
5
|
|
|
2
|
|
|
|
|
102
|
|
27
|
2
|
|
|
2
|
|
17
|
use warnings; |
|
2
|
|
|
|
|
3
|
|
|
2
|
|
|
|
|
58
|
|
28
|
|
|
|
|
|
|
|
29
|
2
|
|
|
2
|
|
10
|
use Moose; |
|
2
|
|
|
|
|
4
|
|
|
2
|
|
|
|
|
13
|
|
30
|
|
|
|
|
|
|
extends 'Weasel::Element'; |
31
|
2
|
|
|
2
|
|
9491
|
use namespace::autoclean; |
|
2
|
|
|
|
|
5
|
|
|
2
|
|
|
|
|
13
|
|
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
=over |
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
=item _id |
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
=cut |
40
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
has '+_id' => (required => 0, |
42
|
|
|
|
|
|
|
default => '/html'); |
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
=back |
45
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
=cut |
47
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
=head1 SUBROUTINES/METHODS |
49
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
=cut |
51
|
|
|
|
|
|
|
|
52
|
|
|
|
|
|
|
=head1 AUTHOR |
53
|
|
|
|
|
|
|
|
54
|
|
|
|
|
|
|
Erik Huelsmann |
55
|
|
|
|
|
|
|
|
56
|
|
|
|
|
|
|
=head1 CONTRIBUTORS |
57
|
|
|
|
|
|
|
|
58
|
|
|
|
|
|
|
Erik Huelsmann |
59
|
|
|
|
|
|
|
Yves Lavoie |
60
|
|
|
|
|
|
|
|
61
|
|
|
|
|
|
|
=head1 MAINTAINERS |
62
|
|
|
|
|
|
|
|
63
|
|
|
|
|
|
|
Erik Huelsmann |
64
|
|
|
|
|
|
|
|
65
|
|
|
|
|
|
|
=head1 BUGS AND LIMITATIONS |
66
|
|
|
|
|
|
|
|
67
|
|
|
|
|
|
|
Bugs can be filed in the GitHub issue tracker for the Weasel project: |
68
|
|
|
|
|
|
|
https://github.com/perl-weasel/weasel/issues |
69
|
|
|
|
|
|
|
|
70
|
|
|
|
|
|
|
=head1 SOURCE |
71
|
|
|
|
|
|
|
|
72
|
|
|
|
|
|
|
The source code repository for Weasel is at |
73
|
|
|
|
|
|
|
https://github.com/perl-weasel/weasel |
74
|
|
|
|
|
|
|
|
75
|
|
|
|
|
|
|
=head1 SUPPORT |
76
|
|
|
|
|
|
|
|
77
|
|
|
|
|
|
|
Community support is available through |
78
|
|
|
|
|
|
|
L<perl-weasel@googlegroups.com|mailto:perl-weasel@googlegroups.com>. |
79
|
|
|
|
|
|
|
|
80
|
|
|
|
|
|
|
=head1 LICENSE AND COPYRIGHT |
81
|
|
|
|
|
|
|
|
82
|
|
|
|
|
|
|
(C) 2016-2023 Erik Huelsmann |
83
|
|
|
|
|
|
|
|
84
|
|
|
|
|
|
|
Licensed under the same terms as Perl. |
85
|
|
|
|
|
|
|
|
86
|
|
|
|
|
|
|
=cut |
87
|
|
|
|
|
|
|
|
88
|
|
|
|
|
|
|
__PACKAGE__->meta->make_immutable; |
89
|
|
|
|
|
|
|
|
90
|
|
|
|
|
|
|
1; |
91
|
|
|
|
|
|
|
|