X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FCatalyst%2FRequest.pm;h=9c43407ce70435ff4a950328349481d966475f27;hb=7e9340de3b12a6c9da620a34d2f1f1f2ec6f6c60;hp=3c9dee1b0dd125218223b21b747eda84e186a44c;hpb=47b9d68e304e9cb305974bc15aa8e60f4bfb6c45;p=catagits%2FCatalyst-Runtime.git diff --git a/lib/Catalyst/Request.pm b/lib/Catalyst/Request.pm index 3c9dee1..9c43407 100644 --- a/lib/Catalyst/Request.pm +++ b/lib/Catalyst/Request.pm @@ -301,7 +301,7 @@ sub params { shift->parameters(@_) } sub query_params { shift->query_parameters(@_) } sub path_info { shift->path(@_) } -=for stopwords param params snippets +=for stopwords param params =head1 NAME @@ -862,10 +862,22 @@ Add a chunk to the request body. Sets up parameters from body. -=head2 $self->prepare_cookies($c) +=head2 $self->prepare_cookies() Parse cookies from header. Sets up a L object. +=head2 $self->prepare_connection() + +Sets up various fields in the request like the local and remote addresses, +request method, hostname requested etc. + +=head2 $self->prepare_parameters() + +Ensures that the body has been parsed, then builds the parameters, which are +combined from those in the request and those in the body. + +This method is the builder for the 'parameters' attribute. + =head2 meta Provided by Moose