line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
# This code can be redistributed and modified under the terms of the GNU Affero |
2
|
|
|
|
|
|
|
# General Public License as published by the Free Software Foundation, either |
3
|
|
|
|
|
|
|
# version 3 of the License, or (at your option) any later version. |
4
|
|
|
|
|
|
|
# See the "COPYING" file for details. |
5
|
|
|
|
|
|
|
package HTML::Blitz::ActionType; |
6
|
11
|
|
|
11
|
|
90
|
use HTML::Blitz::pragma; |
|
11
|
|
|
|
|
20
|
|
|
11
|
|
|
|
|
101
|
|
7
|
11
|
|
|
11
|
|
5472
|
use Exporter qw(import); |
|
11
|
|
|
|
|
38
|
|
|
11
|
|
|
|
|
690
|
|
8
|
11
|
|
|
|
|
109
|
use HTML::Blitz::Atom our @EXPORT_OK = qw( |
9
|
|
|
|
|
|
|
AT_REPLACE_OUTER |
10
|
|
|
|
|
|
|
AT_REPLACE_INNER |
11
|
|
|
|
|
|
|
AT_REPEAT_OUTER |
12
|
|
|
|
|
|
|
AT_REMOVE_IF |
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
AT_AS_REPLACE_ATTRS |
15
|
|
|
|
|
|
|
AT_AS_MODIFY_ATTRS |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
AT_A_REMOVE_ATTR |
18
|
|
|
|
|
|
|
AT_A_SET_ATTR |
19
|
|
|
|
|
|
|
AT_A_MODIFY_ATTR |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
AT_P_IMMEDIATE |
22
|
|
|
|
|
|
|
AT_P_VARIABLE |
23
|
|
|
|
|
|
|
AT_P_TRANSFORM |
24
|
|
|
|
|
|
|
AT_P_FRAGMENT |
25
|
|
|
|
|
|
|
AT_P_VARHTML |
26
|
11
|
|
|
11
|
|
132
|
); |
|
11
|
|
|
|
|
27
|
|
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
our $VERSION = '0.07'; |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
1 |