aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_controller/cgi_ext
Commit message (Expand)AuthorAgeFilesLines
* 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
* Proper options for XmlSimpleDavid Heinemeier Hansson2006-03-071-1/+1
* XmlSimple _should_ be the default since XmlNode is not compatible with regula...David Heinemeier Hansson2006-03-071-9/+9
* ActionController::Base.param_parsers now accept symbols. currently supported ...Tobias Lütke2006-03-051-1/+13
* Added new infrastructure support for REST webservices.Tobias Lütke2006-03-051-6/+2
* Remove Upload Progress. Closes #2871.Marcel Molina2006-01-131-169/+0
* Strip out trailing &_= for raw post bodies #2868Sam Stephenson2005-11-211-0/+1
* Handle cookie parsing irregularity for certain Nokia phones. Closes #2530.Jeremy Kemper2005-11-151-1/+1
* Undo condition change made in [2345] to prevent normal parameters arriving as...Nicholas Seckar2005-09-271-1/+1
* Ticket #2295 - Tolerate consecutive delimiters in query parametersJeremy Kemper2005-09-271-0/+3
* r3573@asus: jeremy | 2005-09-26 11:38:44 -0700Jeremy Kemper2005-09-261-1/+22
* Speed up cookie use by decreasing string copying #2194 [skae]David Heinemeier Hansson2005-09-151-7/+7
* Performance improvements to CGI methods. Closes #1980Nicholas Seckar2005-09-081-7/+11
* Use chop! instead of chop! for efficiencyJamis Buck2005-09-021-1/+1