aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_controller/request.rb
Commit message (Expand)AuthorAgeFilesLines
* request.parameters doesn't overwrite request.request_parameters. Closes #9949...Jeremy Kemper2007-10-221-1/+1
* Use StringIO and Tempfile subclasses instead of defining singleton methods on...Jeremy Kemper2007-10-061-47/+59
* Rewind stdin if possible after multipart parsing.Jeremy Kemper2007-10-061-0/+1
* Move #query_string to AbstractRequestJeremy Kemper2007-10-031-0/+9
* Ruby 1.9 compat, consistent load pathsJeremy Kemper2007-10-021-10/+13
* Added security notice to Request#remote_ip underlining the fact that its valu...David Heinemeier Hansson2007-09-171-0/+8
* Fixed that setting request.format would also affect respond_to blocks [DHH]David Heinemeier Hansson2007-09-151-3/+17
* Random hits from the style naziDavid Heinemeier Hansson2007-09-091-1/+1
* Fixed that file.content_type for uploaded files would include a trailing \r #...David Heinemeier Hansson2007-07-241-1/+1
* Give the legacy X-POST_DATA_FORMAT header greater precedence during params pa...Jeremy Kemper2007-06-261-6/+8
* Tolerate missing content type on multipart file uploads. Fix for Safari 3.Jeremy Kemper2007-06-121-4/+2
* request.remote_ip understands X-Forwarded-For addresses with nonstandard whit...Jeremy Kemper2007-05-281-1/+1
* Don't alias local varJeremy Kemper2007-05-241-1/+1
* Set RAW_POST_DATA when request parameters are parsed.Jeremy Kemper2007-05-231-35/+32
* Rewind request body after reading it, if possible. Closes #8438.Jeremy Kemper2007-05-231-1/+3
* Fix incorrent content type lookup in request parsing. Closes #8407.Jeremy Kemper2007-05-191-27/+35
* Remove dev exception.Jeremy Kemper2007-05-181-2/+0
* Parse url-encoded and multipart requests ourselves instead of delegating to CGI.Jeremy Kemper2007-05-181-14/+356
* Move request parameter parsing from CGI to AbstractRequest.Jeremy Kemper2007-05-151-0/+17
* Lazy-read request.raw_post from request.bodyJeremy Kemper2007-05-151-1/+1
* Introduce the request.body stream. Lazy-read to parse parameters rather than ...Jeremy Kemper2007-05-151-13/+21
* The default respond_to blocks don't set a specific extension anymore, so that...Rick Olson2007-04-121-1/+3
* Fix nil error for requests with empty PATH_INFO header such as those which ar...Tobias Lütke2007-03-191-1/+1
* Prefer MIME constants to strings. Closes #7707.Jeremy Kemper2007-03-061-4/+4
* Ignore odd charset declaration in CONTENT_TYPE header which would throw off m...Tobias Lütke2007-03-051-1/+2
* Sans request pleaseDavid Heinemeier Hansson2007-03-041-1/+1
* Added Request#url that returns the complete URL used for the request [DHH]David Heinemeier Hansson2007-03-041-50/+58
* Added that rendering will automatically insert the etag header on 200 OK resp...David Heinemeier Hansson2007-02-171-0/+4
* In tests, content_type can be nil, which would disturb accepts/formatDavid Heinemeier Hansson2007-02-151-1/+1
* Use a consistent load path to avoid double requires. Fix some scattered Ruby ...Jeremy Kemper2007-01-281-0/+1
* Set request.env['REQUEST_URI'] when absent.Jeremy Kemper2007-01-121-5/+7
* Remove support for json in X-Post-Data-Format header since it's for backward ...Jeremy Kemper2006-12-061-2/+0
* respond_to recognizes JSON. render :json => @person.to_json automatically set...Jeremy Kemper2006-12-061-0/+2
* Added Request#format to return the format used for the request as a mime type...David Heinemeier Hansson2006-12-021-0/+10
* * Added GET-masquarading for HEAD, so request.method will return :get even fo...David Heinemeier Hansson2006-11-231-4/+9
* Fix relative URL root matching problemsJamis Buck2006-10-091-4/+3
* Restrict Request Method hacking with ?_method to POST requests. [Rick Olson]Rick Olson2006-08-011-2/+2
* Added map.resources from the Simply Restful plugin (backwards incompatible wi...David Heinemeier Hansson2006-07-311-1/+3
* Documentation for AbstractRequest. Closes #4895. [kevin.clark@gmail.com]Marcel Molina2006-04-261-3/+11
* Performance speedup for ActionController (closes #4174) [Stefan Kaes] Include...David Heinemeier Hansson2006-03-201-20/+20
* Add ability for relative_url_root to be specified via an environment variable...Nicholas Seckar2006-03-181-2/+11
* Prepare for mime type reordering depending on the branch [DHH]David Heinemeier Hansson2006-03-121-3/+1
* Mime types are separated by a comma, not semicolon, in the Accept header. Als...David Heinemeier Hansson2006-03-121-2/+2
* Added synonym and custom type handling to respond_to [DHH]David Heinemeier Hansson2006-03-121-2/+2
* Assume that we accept what we give [DHH]David Heinemeier Hansson2006-03-121-3/+9
* Added better support for using the same actions to output for different sourc...David Heinemeier Hansson2006-03-111-6/+13
* Proper options for XmlSimpleDavid Heinemeier Hansson2006-03-071-1/+0
* Added new infrastructure support for REST webservices.Tobias Lütke2006-03-051-34/+15
* Major components cleanup and speedup. Closes #3527.Jeremy Kemper2006-02-091-24/+27
* Fixed that SSL would not correctly be detected when running lighttpd/fcgi beh...David Heinemeier Hansson2006-01-231-1/+1