index
:
rails.git
3-2-stable-for-hmno
master
Mirror of official rails repo with custom fixes.
Harald Eilertsen
about
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
actionpack
/
lib
/
action_controller
/
cgi_ext
Commit message (
Expand
)
Author
Age
Files
Lines
*
Parse url-encoded and multipart requests ourselves instead of delegating to CGI.
Jeremy Kemper
2007-05-18
2
-289
/
+7
*
Simplify CgiRequest#query_parameters
Jeremy Kemper
2007-05-15
1
-5
/
+5
*
Move request parameter parsing from CGI to AbstractRequest.
Jeremy Kemper
2007-05-15
1
-14
/
+0
*
Introduce the request.body stream. Lazy-read to parse parameters rather than ...
Jeremy Kemper
2007-05-15
3
-22
/
+31
*
Shine some sunlight on the CGI extensions. Remove unused CGI#session.
Jeremy Kemper
2007-05-15
7
-287
/
+266
*
Non-executable source files.
Jeremy Kemper
2007-05-14
2
-0
/
+0
*
Fixed that parameters from XML should also be presented in a hash with indiff...
David Heinemeier Hansson
2007-04-16
1
-1
/
+1
*
Removed ill faded xml_node class from codebase. Use XmlSimple instead
Tobias Lütke
2007-04-09
1
-5
/
+1
*
Fix PStore typo. Closes #7900.
Jeremy Kemper
2007-03-23
1
-2
/
+2
*
Never return nil from CGI#read_query for compatibility with plain CGI query p...
Jeremy Kemper
2007-03-18
1
-1
/
+1
*
Performance: patch cgi/session/pstore to require digest/md5 once rather than ...
Jeremy Kemper
2007-03-16
1
-0
/
+30
*
Add a #dbman attr_reader for CGI::Session and make CGI::Session::CookieStore#...
Rick Olson
2007-03-06
1
-0
/
+1
*
Factor out unique id generator. Expose cgi to session store.
Jeremy Kemper
2007-02-19
1
-13
/
+25
*
Performance: patch cgi/session to require digest/md5 once rather than per #cr...
Jeremy Kemper
2007-02-10
1
-0
/
+30
*
Change the query parser to map empty GET params to "" rather than nil. Closes...
Nicholas Seckar
2007-01-28
1
-1
/
+1
*
Use a consistent load path to avoid double requires. Fix some scattered Ruby ...
Jeremy Kemper
2007-01-28
1
-0
/
+3
*
Nodoc the irrelevant (from 1.2)
David Heinemeier Hansson
2007-01-26
1
-1
/
+1
*
Fix parsing of array[] CGI parameters so extra empty values aren't included. ...
Jeremy Kemper
2007-01-12
1
-6
/
+7
*
Fix that redirects should set "Location" header, not "location", and remove d...
David Heinemeier Hansson
2006-11-26
1
-7
/
+0
*
Multipart form values may have a content type without being treated as upload...
Jeremy Kemper
2006-11-09
1
-32
/
+39
*
GET parameter keys can be escaped too [DHH]
David Heinemeier Hansson
2006-10-17
1
-1
/
+1
*
Hash.create_from_xml has been renamed to Hash.from_xml, alias will exist unti...
David Heinemeier Hansson
2006-09-20
1
-1
/
+1
*
Skip params with empty names, such as the &=Save query string from <input typ...
Jeremy Kemper
2006-09-12
1
-1
/
+2
*
Update descriptive messages for exceptions thrown by cgi_methods. Closes #6103.
Jeremy Kemper
2006-09-08
1
-3
/
+5
*
Add descriptive messages to the exceptions thrown by cgi_methods. Closes #6091.
Nicholas Seckar
2006-09-07
1
-2
/
+8
*
Tighten rescue clauses. Closes #5985.
Jeremy Kemper
2006-08-31
1
-1
/
+1
*
Switch to using FormEncodedPairParser for parsing request parameters.
Nicholas Seckar
2006-08-30
1
-111
/
+56
*
FormEncodedStringParser needs a tad more work before it can handle POST data ...
David Heinemeier Hansson
2006-08-28
1
-70
/
+91
*
Actually, indifferent access mattered in the bowels (hashes hidden in arrays)
David Heinemeier Hansson
2006-08-26
1
-1
/
+1
*
Result is made indifferent on the way out
David Heinemeier Hansson
2006-08-26
1
-1
/
+1
*
Changed the POST parameter processing to use the new QueryStringParser and ma...
David Heinemeier Hansson
2006-08-26
1
-1
/
+1
*
The white space inquisition is coming for you!
David Heinemeier Hansson
2006-08-04
1
-3
/
+1
*
Fix broken query parameter tests
Nicholas Seckar
2006-08-04
1
-43
/
+113
*
r4487@asus: jeremy | 2006-04-29 12:21:39 -0700
Jeremy Kemper
2006-07-08
1
-1
/
+1
*
r4748@asus: jeremy | 2006-06-29 22:40:35 -0700
Jeremy Kemper
2006-06-30
1
-1
/
+1
*
Fixed proper form-encoded parameter parsing for requests with "Content-Type: ...
David Heinemeier Hansson
2006-06-30
1
-1
/
+1
*
Fix CGI extensions when they expect string but get nil in Windows. Closes #52...
Marcel Molina
2006-06-28
1
-1
/
+1
*
Added Hash.create_from_xml(string) which will create a hash from a XML string...
David Heinemeier Hansson
2006-06-16
1
-134
/
+74
*
Rewind readable CGI params so others may reread them (such as CGI::Session wh...
Jeremy Kemper
2006-06-02
1
-1
/
+3
*
Cope with missing content type and length headers. Parse parameters from mult...
Jeremy Kemper
2006-06-01
1
-21
/
+42
*
performance enhancement for previous patch [skaes]
Michael Koziarski
2006-05-16
1
-1
/
+1
*
Fix NoMethodError when parsing params like &&. [Adam Greenfield]. Closes #4955
Michael Koziarski
2006-05-16
1
-0
/
+1
*
Make sure xml_simple requests don't blow up if an empty request body is recieved
Jamis Buck
2006-03-18
1
-5
/
+6
*
XML-formatted requests are typecast according to "type" attributes for :xml_s...
Jamis Buck
2006-03-18
1
-1
/
+43
*
Be sure to look at array elements when dasherizing keys of a formatted request
Jamis Buck
2006-03-17
1
-9
/
+11
*
Underscore dasherized keys in formatted requests
Jamis Buck
2006-03-15
1
-1
/
+13
*
use "mime_type" instead of "format"
Jamis Buck
2006-03-15
1
-1
/
+1
*
Mime types are separated by a comma, not semicolon, in the Accept header. Als...
David Heinemeier Hansson
2006-03-12
1
-2
/
+2
*
Proper options for XmlSimple
David Heinemeier Hansson
2006-03-07
1
-1
/
+1
*
XmlSimple _should_ be the default since XmlNode is not compatible with regula...
David Heinemeier Hansson
2006-03-07
1
-9
/
+9
[next]