aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_controller/cgi_ext
Commit message (Expand)AuthorAgeFilesLines
* Fix bufferDavid Heinemeier Hansson2007-09-221-0/+1
* Added support for HTTP Only cookies (works in IE6+ and FF 2.0.5+) as an impro...David Heinemeier Hansson2007-09-211-36/+22
* Parse url-encoded and multipart requests ourselves instead of delegating to CGI.Jeremy Kemper2007-05-182-289/+7
* Simplify CgiRequest#query_parametersJeremy Kemper2007-05-151-5/+5
* Move request parameter parsing from CGI to AbstractRequest.Jeremy Kemper2007-05-151-14/+0
* Introduce the request.body stream. Lazy-read to parse parameters rather than ...Jeremy Kemper2007-05-153-22/+31
* Shine some sunlight on the CGI extensions. Remove unused CGI#session.Jeremy Kemper2007-05-157-287/+266
* Non-executable source files.Jeremy Kemper2007-05-142-0/+0
* Fixed that parameters from XML should also be presented in a hash with indiff...David Heinemeier Hansson2007-04-161-1/+1
* Removed ill faded xml_node class from codebase. Use XmlSimple insteadTobias Lütke2007-04-091-5/+1
* Fix PStore typo. Closes #7900.Jeremy Kemper2007-03-231-2/+2
* Never return nil from CGI#read_query for compatibility with plain CGI query p...Jeremy Kemper2007-03-181-1/+1
* Performance: patch cgi/session/pstore to require digest/md5 once rather than ...Jeremy Kemper2007-03-161-0/+30
* Add a #dbman attr_reader for CGI::Session and make CGI::Session::CookieStore#...Rick Olson2007-03-061-0/+1
* Factor out unique id generator. Expose cgi to session store.Jeremy Kemper2007-02-191-13/+25
* Performance: patch cgi/session to require digest/md5 once rather than per #cr...Jeremy Kemper2007-02-101-0/+30
* Change the query parser to map empty GET params to "" rather than nil. Closes...Nicholas Seckar2007-01-281-1/+1
* Use a consistent load path to avoid double requires. Fix some scattered Ruby ...Jeremy Kemper2007-01-281-0/+3
* Nodoc the irrelevant (from 1.2)David Heinemeier Hansson2007-01-261-1/+1
* Fix parsing of array[] CGI parameters so extra empty values aren't included. ...Jeremy Kemper2007-01-121-6/+7
* Fix that redirects should set "Location" header, not "location", and remove d...David Heinemeier Hansson2006-11-261-7/+0
* Multipart form values may have a content type without being treated as upload...Jeremy Kemper2006-11-091-32/+39
* GET parameter keys can be escaped too [DHH]David Heinemeier Hansson2006-10-171-1/+1
* Hash.create_from_xml has been renamed to Hash.from_xml, alias will exist unti...David Heinemeier Hansson2006-09-201-1/+1
* Skip params with empty names, such as the &=Save query string from <input typ...Jeremy Kemper2006-09-121-1/+2
* Update descriptive messages for exceptions thrown by cgi_methods. Closes #6103.Jeremy Kemper2006-09-081-3/+5
* Add descriptive messages to the exceptions thrown by cgi_methods. Closes #6091.Nicholas Seckar2006-09-071-2/+8
* Tighten rescue clauses. Closes #5985.Jeremy Kemper2006-08-311-1/+1
* Switch to using FormEncodedPairParser for parsing request parameters.Nicholas Seckar2006-08-301-111/+56
* FormEncodedStringParser needs a tad more work before it can handle POST data ...David Heinemeier Hansson2006-08-281-70/+91
* Actually, indifferent access mattered in the bowels (hashes hidden in arrays)David Heinemeier Hansson2006-08-261-1/+1
* Result is made indifferent on the way outDavid Heinemeier Hansson2006-08-261-1/+1
* Changed the POST parameter processing to use the new QueryStringParser and ma...David Heinemeier Hansson2006-08-261-1/+1
* The white space inquisition is coming for you!David Heinemeier Hansson2006-08-041-3/+1
* Fix broken query parameter testsNicholas Seckar2006-08-041-43/+113
* r4487@asus: jeremy | 2006-04-29 12:21:39 -0700Jeremy Kemper2006-07-081-1/+1
* r4748@asus: jeremy | 2006-06-29 22:40:35 -0700Jeremy Kemper2006-06-301-1/+1
* Fixed proper form-encoded parameter parsing for requests with "Content-Type: ...David Heinemeier Hansson2006-06-301-1/+1
* Fix CGI extensions when they expect string but get nil in Windows. Closes #52...Marcel Molina2006-06-281-1/+1
* Added Hash.create_from_xml(string) which will create a hash from a XML string...David Heinemeier Hansson2006-06-161-134/+74
* Rewind readable CGI params so others may reread them (such as CGI::Session wh...Jeremy Kemper2006-06-021-1/+3
* Cope with missing content type and length headers. Parse parameters from mult...Jeremy Kemper2006-06-011-21/+42
* performance enhancement for previous patch [skaes]Michael Koziarski2006-05-161-1/+1
* Fix NoMethodError when parsing params like &&. [Adam Greenfield]. Closes #4955Michael Koziarski2006-05-161-0/+1
* Make sure xml_simple requests don't blow up if an empty request body is recievedJamis Buck2006-03-181-5/+6
* XML-formatted requests are typecast according to "type" attributes for :xml_s...Jamis Buck2006-03-181-1/+43
* Be sure to look at array elements when dasherizing keys of a formatted requestJamis Buck2006-03-171-9/+11
* Underscore dasherized keys in formatted requestsJamis Buck2006-03-151-1/+13
* use "mime_type" instead of "format"Jamis Buck2006-03-151-1/+1
* Mime types are separated by a comma, not semicolon, in the Accept header. Als...David Heinemeier Hansson2006-03-121-2/+2