X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FCatalyst%2FEngine%2FCGI.pm;h=29b8421a2383c3117d4fb82fb50dd82518cdbda9;hb=6dc87a0f8301391acfe25ee5bcaad0fe48dad559;hp=b48cf2f2765faaaa811b617ef90fb690a3e0ec42;hpb=8b4483b384270e6e6a7e78bfb2fbdbefdf7b72f4;p=catagits%2FCatalyst-Runtime.git diff --git a/lib/Catalyst/Engine/CGI.pm b/lib/Catalyst/Engine/CGI.pm index b48cf2f..29b8421 100644 --- a/lib/Catalyst/Engine/CGI.pm +++ b/lib/Catalyst/Engine/CGI.pm @@ -5,7 +5,6 @@ use base 'Catalyst::Engine'; use URI; require CGI::Simple; -require CGI::Cookie; $CGI::Simple::POST_MAX = 1048576; $CGI::Simple::DISABLE_UPLOADS = 0; @@ -41,11 +40,6 @@ application module: use Catalyst qw(-Engine=CGI); -Catalyst::Engine::CGI generates a full set of HTTP headers, which means that -applications using the engine must be be configured as "Non-parsed Headers" -scripts (at least when running under Apache). To configure this under Apache -name the starting with C. - The performance of this way of using Catalyst is not expected to be useful in production applications, but it may be helpful for development. @@ -53,10 +47,6 @@ useful in production applications, but it may be helpful for development. =over 4 -=item $c->run - -To be called from a CGI script to start the Catalyst application. - =item $c->cgi This config parameter contains the C object. @@ -65,7 +55,7 @@ This config parameter contains the C object. =head1 OVERLOADED METHODS -This class overloads some methods from C. +This class overloads some methods from C. =over 4 @@ -75,23 +65,14 @@ This class overloads some methods from C. sub finalize_headers { my $c = shift; - my %headers = ( -nph => 1 ); + my %headers; + $headers{-status} = $c->response->status if $c->response->status; + for my $name ( $c->response->headers->header_field_names ) { - $headers{"-$name"} = $c->response->headers->header($name); - } - my @cookies; - while ( my ( $name, $cookie ) = each %{ $c->response->cookies } ) { - push @cookies, $c->cgi->cookie( - -name => $name, - -value => $cookie->{value}, - -expires => $cookie->{expires}, - -domain => $cookie->{domain}, - -path => $cookie->{path}, - -secure => $cookie->{secure} || 0 - ); + $headers{"-$name"} = $c->response->header($name); } - $headers{-cookie} = \@cookies if @cookies; + print $c->cgi->header(%headers); } @@ -116,14 +97,6 @@ sub prepare_connection { $c->req->address( $c->cgi->remote_addr ); } -=item $c->prepare_cookies - -Sets up cookies. - -=cut - -sub prepare_cookies { shift->req->cookies( { CGI::Cookie->fetch } ) } - =item $c->prepare_headers =cut @@ -145,6 +118,9 @@ sub prepare_headers { sub prepare_parameters { my $c = shift; + + $c->cgi->parse_query_string; + my %vars = $c->cgi->Vars; while ( my ( $key, $value ) = each %vars ) { my @values = split "\0", $value; @@ -177,6 +153,7 @@ sub prepare_path { } my $path = $ENV{PATH_INFO} || '/'; + $path =~ s/%([0-9A-Fa-f]{2})/chr(hex($1))/eg; $path =~ s/^\///; $c->req->base($base); @@ -205,6 +182,10 @@ sub prepare_uploads { } } +=item $c->run + +=cut + sub run { shift->handler } =back