aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_controller/cgi_ext
Commit message (Expand)AuthorAgeFilesLines
* Use ActiveSupport::SecureRandom instead of the strange fallback code.Michael Koziarski2008-09-241-22/+2
* Ruby 1.8.7 compat: work around broken DelegateClass#respond_to?Jeremy Kemper2008-05-311-0/+6
* Merge docrails.Pratik Naik2008-05-251-18/+17
* Ruby 1.9 compat: ensure binary encoding for post body parsingJeremy Kemper2008-05-191-0/+1
* make CGI::Cookie handle deleting a cookie properlyRich Cavanaugh2008-05-131-1/+1
* Don't double-escape cookie store data. Don't split cookie values with newline...Rich Cavanaugh2008-05-121-1/+1
* remove support for ampersand-delimited cookie valuesJamis Buck2008-02-121-4/+3
* Don't split cookies on comma also. References r8505.Jeremy Kemper2008-02-021-1/+1
* Ruby 1.9 compat: cookiesJeremy Kemper2007-12-151-5/+1
* Use SecureRandom to generate unique ids, if available.Jeremy Kemper2007-10-181-12/+22
* 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