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=6946e55589059a3d44fefca26b46825daf4e7e1a;hpb=c9afa5fc4ed6c36afe6653d7d8fbb9909994c1a8;p=catagits%2FCatalyst-Runtime.git diff --git a/lib/Catalyst/Engine/CGI.pm b/lib/Catalyst/Engine/CGI.pm index 6946e55..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. @@ -61,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 @@ -72,22 +66,13 @@ This class overloads some methods from C. sub finalize_headers { my $c = shift; 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); + $headers{"-$name"} = $c->response->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{-cookie} = \@cookies if @cookies; + print $c->cgi->header(%headers); } @@ -112,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 @@ -141,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; @@ -173,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);