line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Catalyst::Script::CGI; |
2
|
3
|
|
|
3
|
|
77738
|
use Moose; |
|
3
|
|
|
|
|
464406
|
|
|
3
|
|
|
|
|
24
|
|
3
|
3
|
|
|
3
|
|
23136
|
use namespace::clean -except => [ 'meta' ]; |
|
3
|
|
|
|
|
6341
|
|
|
3
|
|
|
|
|
31
|
|
4
|
|
|
|
|
|
|
|
5
|
2
|
|
|
2
|
|
12
|
sub _plack_engine_name { 'CGI' } |
6
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
with 'Catalyst::ScriptRole'; |
8
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
__PACKAGE__->meta->make_immutable; |
10
|
|
|
|
|
|
|
1; |
11
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
=head1 NAME |
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
Catalyst::Script::CGI - The CGI Catalyst Script |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
=head1 SYNOPSIS |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
myapp_cgi.pl [options] |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
Options: |
21
|
|
|
|
|
|
|
-? --help display this help and exits |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
=head1 DESCRIPTION |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
This is a script to run the Catalyst engine specialized for the CGI environment. |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
=head1 SEE ALSO |
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
L<Catalyst::ScriptRunner> |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
=head1 AUTHORS |
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
Catalyst Contributors, see Catalyst.pm |
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
=head1 COPYRIGHT |
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
This library is free software. You can redistribute it and/or modify it under |
38
|
|
|
|
|
|
|
the same terms as Perl itself. |
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
=cut |