Canonicalize the url becuse we're building it from the always-undecoded REQUEST_URI...
[catagits/Catalyst-Runtime.git] / lib / Catalyst / Script / CGI.pm
CommitLineData
0ba6e8aa 1package Catalyst::Script::CGI;
accb0640 2use Moose;
accb0640 3BEGIN { $ENV{CATALYST_ENGINE} ||= 'CGI' }
7f67b4a9 4use namespace::autoclean;
accb0640 5
d3082fac 6with 'Catalyst::ScriptRole';
7
8__PACKAGE__->meta->make_immutable;
9
10=head1 NAME
11
12Catalyst::Script::CGI - The CGI Catalyst Script
13
14=head1 SYNOPSIS
15
3dcfb4c8 16 myapp_cgi.pl [options]
17
18 Options:
19 -h --help display this help and exits
d3082fac 20
21=head1 DESCRIPTION
accb0640 22
cbaaecc0 23This is a script to run the Catalyst engine specialized for the CGI environment.
8a289b5f 24
d3082fac 25=head1 AUTHORS
8a289b5f 26
d3082fac 27Catalyst Contributors, see Catalyst.pm
accb0640 28
d3082fac 29=head1 COPYRIGHT
57dc50b0 30
d3082fac 31This library is free software. You can redistribute it and/or modify it under
32the same terms as Perl itself.
accb0640 33
d3082fac 34=cut