aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_controller/request.rb
Commit message (Expand)AuthorAgeFilesLines
* 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
* More robust relative url root discovery for SCGI compatibility. This solves ...Jeremy Kemper2005-12-081-1/+2
* Document request.env and request.host. Strip trailing whitespace.Jeremy Kemper2005-11-201-15/+18
* Update/clean up AP documentation (rdoc)Jamis Buck2005-10-161-7/+9
* Fix Request#host_with_port to use the standard port when Rails is behind a pr...Nicholas Seckar2005-10-151-2/+10
* Fixed that Request#domain caused an exception if the domain header wasn't set...David Heinemeier Hansson2005-09-201-1/+2
* Cache relative_url_root for all webservers, not just Apache #2193 [skae]David Heinemeier Hansson2005-09-151-1/+1
* Ensure that request.path never returns nil. Closes #1675Nicholas Seckar2005-09-111-6/+4
* AbstractRequest#domain returns nil when host is an ip address #2012 [kevin.cl...Jamis Buck2005-09-021-0/+2
* Improved performance with 5-30% through a series of Action Pack optimizations...David Heinemeier Hansson2005-07-231-23/+26
* Make Request#subdomains handle "foo.foo.com" correctlyJamis Buck2005-07-121-1/+1
* Improved performance of Routes generation by a factor of 5 #1434 [Nicholas Se...David Heinemeier Hansson2005-06-241-5/+8
* Improved AbstractRequest documentation. Closes #1483.Jeremy Kemper2005-06-241-23/+47
* Added :xhr => true/false option to verify so you can ensure that a request is...David Heinemeier Hansson2005-06-211-1/+1
* Fixed relative urls support for lighttpd #1048 [Nicholas Seckar/maznawak@neri...David Heinemeier Hansson2005-06-181-4/+13
* Deprecated redirect_to_path and redirect_to_url in favor of letting redirect_...David Heinemeier Hansson2005-05-221-19/+18
* Made the post_format work with content-typeDavid Heinemeier Hansson2005-05-201-1/+1
* Made the post_format work with content-typeDavid Heinemeier Hansson2005-05-201-2/+8
* Cache relative_url_root and optimize path #1232 [skaen]David Heinemeier Hansson2005-05-191-2/+3
* Use X-POST_DATA_FORMAT instead of just POST_DATA_FORMATDavid Heinemeier Hansson2005-05-141-2/+2
* Added support for POST data in form of YAML or XML, which is controller throu...David Heinemeier Hansson2005-05-141-0/+21
* Added support for web servers that use PATH_INFO instead of REQUEST_URI like ...David Heinemeier Hansson2005-04-181-2/+10
* Added Request#xml_http_request? (and an alias xhr?) to that'll return true wh...David Heinemeier Hansson2005-04-171-0/+8
* Changed .htaccess to allow dispatch.* to be called from a sub-directory as pa...David Heinemeier Hansson2005-03-201-2/+13
* Removed the reliance on PATH_INFO as it was causing problems for caching and ...David Heinemeier Hansson2005-03-141-5/+1
* Made path work for lighttpd again as it uses an empty string where Apache ret...David Heinemeier Hansson2005-03-011-1/+1
* Fix request.path_info and clear up LoadingModule behavior #754 [Nicholas Seckar]David Heinemeier Hansson2005-03-011-1/+1
* Added PATH_INFO access from the request that allows urls like the following t...David Heinemeier Hansson2005-02-271-1/+5
* Fixed that proxy IPs do not follow all RFC1918 nets #251 [caleb@aei-tech.com]David Heinemeier Hansson2005-02-241-1/+1
* Fixed https handling on other ports than 443 [Alan Gano]David Heinemeier Hansson2005-02-161-1/+1
* A hopefully more successful attempt at the Routing branch mergeDavid Heinemeier Hansson2005-02-151-3/+13
* Backed out of routing merge.. investigating missing patchesDavid Heinemeier Hansson2005-02-151-12/+3
* Merged back the Routing branchDavid Heinemeier Hansson2005-02-151-3/+12
* Fixed documentation snafus #575, #576, #577, #585David Heinemeier Hansson2005-02-071-1/+1
* Added @request.raw_post as a convenience access to @request.env['RAW_POST_DAT...David Heinemeier Hansson2005-01-251-9/+17
* Added Request#port_string to get something like ":8080" back on 8080 and "" o...David Heinemeier Hansson2004-12-181-7/+6
* Added Request#domain (returns string) and Request#subdomains (returns array).David Heinemeier Hansson2004-12-181-0/+14
* Added indifference to whether @headers["Content-Type"], @headers["Content-typ...David Heinemeier Hansson2004-12-071-0/+4
* Fixed AbstractRequest#remote_ip for users going through proxies - Patch #228 ...David Heinemeier Hansson2004-11-251-9/+9
* Added Request#ssl? which is shorthand for @request.protocol == "https://"David Heinemeier Hansson2004-11-241-0/+4
* InitialDavid Heinemeier Hansson2004-11-241-0/+99