X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FCatalyst%2FRequest.pm;h=496682dc3d0dc68a4146e1421b4625e4e316afe4;hb=94b8f5dec021a418afb9c086b6286f22f18ff1a1;hp=42b3c8ac7ba571826b5a627e0cf4371bad09b0da;hpb=933ba40380c86f9642bcfbee446a04d48efe4544;p=catagits%2FCatalyst-Runtime.git diff --git a/lib/Catalyst/Request.pm b/lib/Catalyst/Request.pm index 42b3c8a..496682d 100644 --- a/lib/Catalyst/Request.pm +++ b/lib/Catalyst/Request.pm @@ -9,7 +9,7 @@ use utf8; use URI::QueryParam; __PACKAGE__->mk_accessors( - qw/action address arguments cookies headers keywords match method + qw/action address arguments cookies headers match method protocol query_parameters secure captures uri user/ ); @@ -51,7 +51,6 @@ Catalyst::Request - provides information about the current client request $req->headers; $req->hostname; $req->input; - $req->keywords; $req->match; $req->method; $req->param; @@ -260,15 +259,6 @@ sub hostname { Alias for $req->body. -=head2 $req->keywords - -Contains the keywords portion of a query string, when no '=' signs are -present. - - http://localhost/path?some+keywords - - $c->request->keywords will contain 'some keywords' - =head2 $req->match This contains the matching part of a Regex action. Otherwise