X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FCatalyst%2FEngine%2FHTTP.pm;h=62c5d0b4e8633dbc85aff374eac8bd0e9b08f686;hb=52c5e714ef4dd079008b4e736eca4e2b98e22207;hp=9626f6689eb9878d6e4757846f4efd75afba2444;hpb=eb511a7855c9fea0951dcf730d04f0ea7f24a23d;p=catagits%2FCatalyst-Runtime.git diff --git a/lib/Catalyst/Engine/HTTP.pm b/lib/Catalyst/Engine/HTTP.pm index 9626f66..62c5d0b 100644 --- a/lib/Catalyst/Engine/HTTP.pm +++ b/lib/Catalyst/Engine/HTTP.pm @@ -12,10 +12,6 @@ use Socket; use IO::Socket::INET (); use IO::Select (); -# For PAR -require Catalyst::Engine::HTTP::Restarter; -require Catalyst::Engine::HTTP::Restarter::Watcher; - use constant CHUNKSIZE => 64 * 1024; use constant DEBUG => $ENV{CATALYST_HTTP_DEBUG} || 0; @@ -159,7 +155,7 @@ around write => sub { # Prepend the headers if they have not yet been sent if ( $self->_has_header_buf ) { $self->_warn_on_write_error( - $self->$orig($self->_clear_header_buf) + $self->$orig($c, $self->_clear_header_buf) ); } @@ -368,6 +364,9 @@ sub _handler { while (1) { my ( $path, $query_string ) = split /\?/, $uri, 2; + # URI is not the same as path. Remove scheme, domain name and port from it + $path =~ s{^https?://[^/?#]+}{}; + # Initialize CGI environment local %ENV = ( PATH_INFO => $path || '',