aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_controller/cgi_process.rb
Commit message (Expand)AuthorAgeFilesLines
* Refactor cookie_only option to survive multiple requests and add regression t...Michael Koziarski2007-11-211-3/+7
* Fixed that ActionController::CgiRequest#host_with_port() should handle standa...David Heinemeier Hansson2007-11-061-3/+3
* Move #query_string to AbstractRequestJeremy Kemper2007-10-031-3/+1
* Merge session fixation fixes from stableMichael Koziarski2007-10-021-4/+12
* Ruby 1.9 compat, consistent load pathsJeremy Kemper2007-10-021-3/+3
* request.host works with IPv6 addresses. Closes #9458.Jeremy Kemper2007-08-311-1/+1
* Don't mistakenly interpret the request uri as the query string. Closes #8731.Jeremy Kemper2007-06-231-2/+2
* Set RAW_POST_DATA when request parameters are parsed.Jeremy Kemper2007-05-231-1/+1
* Parse url-encoded and multipart requests ourselves instead of delegating to CGI.Jeremy Kemper2007-05-181-11/+5
* Simplify CgiRequest#query_parametersJeremy Kemper2007-05-151-2/+1
* Move request parameter parsing from CGI to AbstractRequest.Jeremy Kemper2007-05-151-1/+1
* Introduce the request.body stream. Lazy-read to parse parameters rather than ...Jeremy Kemper2007-05-151-1/+11
* Shine some sunlight on the CGI extensions. Remove unused CGI#session.Jeremy Kemper2007-05-151-8/+4
* Performance: patch cgi/session/pstore to require digest/md5 once rather than ...Jeremy Kemper2007-03-161-0/+1
* Introduce a cookie-based session store as the Rails default. Sessions typical...Jeremy Kemper2007-02-211-3/+4
* Move etagging down to response, so renders with layouts dont screw it up [DHH]David Heinemeier Hansson2007-02-191-22/+0
* Performance: patch cgi/session to require digest/md5 once rather than per #cr...Jeremy Kemper2007-02-101-0/+1
* Change session restoration to allow namespaced models to be autoloaded. Close...Nicholas Seckar2007-01-281-2/+3
* use stringify_keysJeremy Kemper2007-01-011-1/+1
* Merge [5822] from 1.2 (oops, wrong order).Jeremy Kemper2007-01-011-9/+14
* Set session to an empty hash if :new_session => false and no session cookie o...Jeremy Kemper2007-01-011-1/+7
* Fixed that HEAD should return the proper Content-Length header (that is, actu...David Heinemeier Hansson2006-11-231-8/+16
* Cache parsed query parameters. Closes #6559.Jeremy Kemper2006-11-061-7/+8
* Update CGI process to allow sessions to contain namespaced models. Closes #4638.Nicholas Seckar2006-09-201-1/+1
* Rescue Errno::ECONNRESET to handle an unexpectedly closed socket connection. ...Jeremy Kemper2006-09-181-4/+4
* Switch to using FormEncodedPairParser for parsing request parameters.Nicholas Seckar2006-08-301-2/+2
* FormEncodedStringParser needs a tad more work before it can handle POST data ...David Heinemeier Hansson2006-08-281-1/+1
* Changed the POST parameter processing to use the new QueryStringParser and ma...David Heinemeier Hansson2006-08-261-1/+1
* r4487@asus: jeremy | 2006-04-29 12:21:39 -0700Jeremy Kemper2006-07-081-2/+2
* Use #flush between switching from #write to #syswrite. Closes #4907. [Blair Z...Marcel Molina2006-04-291-0/+3
* Cache CgiRequest#request_parameters so that multiple calls don't re-parse mul...Rick Olson2006-04-231-5/+6
* Performance speedup for ActionController (closes #4174) [Stefan Kaes] Include...David Heinemeier Hansson2006-03-201-1/+0
* Fixed proxy support for lighttpd (closes #3267) [stephen_purcell@yahoo.com]David Heinemeier Hansson2006-03-161-13/+19
* Added new infrastructure support for REST webservices.Tobias Lütke2006-03-051-2/+2
* Backed out of that. PStore doesnt support suffix :(David Heinemeier Hansson2006-03-041-1/+0
* Backed out of that. PStore doesnt support suffix :(David Heinemeier Hansson2006-03-041-1/+3
* CHANGED DEFAILT: File-based sessions now have a suffix of ".rails_session" in...David Heinemeier Hansson2006-03-041-2/+2
* Major components cleanup and speedup. Closes #3527.Jeremy Kemper2006-02-091-14/+11
* Add support for multiple proxy servers in HTTP_X_FORWARDED_HOST. Closes #3397Michael Koziarski2006-01-131-1/+7
* Back out of 3109 for now as it seems to interfere with the flashDavid Heinemeier Hansson2005-11-211-6/+2
* r3209@asus: jeremy | 2005-11-20 01:04:22 -0800Jeremy Kemper2005-11-201-2/+6
* fewer objects, no loop in convert_content_type. Closes #2883.Jeremy Kemper2005-11-161-5/+8
* Include all of session creation in stale_session_checkJeremy Kemper2005-11-091-6/+8
* Delete existing sessions with the same session id before creating a new sessi...Jeremy Kemper2005-11-091-27/+42
* Fix Request#host_with_port to use the standard port when Rails is behind a pr...Nicholas Seckar2005-10-151-1/+9
* Fixed problem with send_file and WEBrick using stdout #1812David Heinemeier Hansson2005-09-201-1/+1
* Fixed access to "Host" header with requests made by crappy old HTTP/1.0 clien...David Heinemeier Hansson2005-09-141-1/+1
* Added easy assignment of fragment cache store through use of symbols for incl...David Heinemeier Hansson2005-09-131-5/+0
* Performance improvements to CGI methods. Closes #1980Nicholas Seckar2005-09-081-2/+2
* Improved performance with 5-30% through a series of Action Pack optimizations...David Heinemeier Hansson2005-07-231-9/+9