line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Catalyst::Helper::View::TT::ForceUTF8; |
2
|
|
|
|
|
|
|
|
3
|
1
|
|
|
1
|
|
2331
|
use strict; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
87
|
|
4
|
|
|
|
|
|
|
|
5
|
|
|
|
|
|
|
=head1 NAME |
6
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
Catalyst::Helper::View::TT::ForceUTF8 - Helper for TT::ForceUTF8 Views |
8
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
=head1 SYNOPSIS |
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
script/create.pl view TT TT::ForceUTF8 |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
=head1 DESCRIPTION |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
Helper for TT::ForceUTF8 Views. |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
=head2 METHODS |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
=head3 mk_compclass |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
=cut |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
sub mk_compclass { |
24
|
0
|
|
|
0
|
1
|
|
my ( $self, $helper ) = @_; |
25
|
0
|
|
|
|
|
|
my $file = $helper->{file}; |
26
|
0
|
|
|
|
|
|
$helper->render_file( 'compclass', $file ); |
27
|
|
|
|
|
|
|
} |
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
=head1 SEE ALSO |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
L<Catalyst::Manual>, L<Catalyst::Test>, L<Catalyst::Request>, |
32
|
|
|
|
|
|
|
L<Catalyst::Response>, L<Catalyst::Helper>, L<Catalyst::View::TT> |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
=head1 AUTHOR |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
Lyo Kato, C<lyo.kato@gmail.com> |
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
=head1 LICENSE |
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
This library is free software . You can redistribute it and/or modify |
41
|
|
|
|
|
|
|
it under the same terms as perl itself. |
42
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
=cut |
44
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
1; |
46
|
|
|
|
|
|
|
|
47
|
|
|
|
|
|
|
__DATA__ |
48
|
|
|
|
|
|
|
|
49
|
|
|
|
|
|
|
__compclass__ |
50
|
|
|
|
|
|
|
package [% class %]; |
51
|
|
|
|
|
|
|
|
52
|
|
|
|
|
|
|
use strict; |
53
|
|
|
|
|
|
|
use base 'Catalyst::View::TT::ForceUTF8'; |
54
|
|
|
|
|
|
|
|
55
|
|
|
|
|
|
|
=head1 NAME |
56
|
|
|
|
|
|
|
|
57
|
|
|
|
|
|
|
[% class %] - Catalyst TT View |
58
|
|
|
|
|
|
|
|
59
|
|
|
|
|
|
|
=head1 SYNOPSIS |
60
|
|
|
|
|
|
|
|
61
|
|
|
|
|
|
|
See L<[% app %]> |
62
|
|
|
|
|
|
|
|
63
|
|
|
|
|
|
|
=head1 DESCRIPTION |
64
|
|
|
|
|
|
|
|
65
|
|
|
|
|
|
|
Catalyst TT View. |
66
|
|
|
|
|
|
|
|
67
|
|
|
|
|
|
|
=head1 AUTHOR |
68
|
|
|
|
|
|
|
|
69
|
|
|
|
|
|
|
[% author %] |
70
|
|
|
|
|
|
|
|
71
|
|
|
|
|
|
|
=head1 LICENSE |
72
|
|
|
|
|
|
|
|
73
|
|
|
|
|
|
|
This library is free software, you can redistribute it and/or modify |
74
|
|
|
|
|
|
|
it under the same terms as Perl itself. |
75
|
|
|
|
|
|
|
|
76
|
|
|
|
|
|
|
=cut |
77
|
|
|
|
|
|
|
|
78
|
|
|
|
|
|
|
1; |