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
/
request.rb
Commit message (
Expand
)
Author
Age
Files
Lines
*
Make AbstractRequest.if_modified_sense return nil if the header could not be ...
Jamis Buck
2008-08-19
1
-1
/
+1
*
Update tests for request memoization
Jeremy Kemper
2008-08-08
1
-12
/
+13
*
Simplifying usage of ETags and Last-Modified and conditional GET requests
Jeremy Kemper
2008-08-07
1
-36
/
+108
*
Fix file permissions
Tarmo Tänav
2008-07-31
1
-0
/
+0
*
AbstractRequest.relative_url_root is no longer automatically configured by a ...
Joshua Peek
2008-07-24
1
-27
/
+14
*
Merge with docrails.
Pratik Naik
2008-07-16
1
-3
/
+3
*
Move accept header parsing shortcut to Mime::Type.parse
Jeremy Kemper
2008-07-09
1
-2
/
+0
*
Request#accepts special-cases a single mime type
Jeremy Kemper
2008-07-09
1
-4
/
+10
*
Disable the Accept header by default
Michael Koziarski
2008-07-07
1
-9
/
+25
*
Move template_format logic out to the request so it's alongside the 'regular'...
Michael Koziarski
2008-07-03
1
-0
/
+13
*
Fixed Request#remote_ip to only raise hell if the HTTP_CLIENT_IP and HTTP_X_F...
David Heinemeier Hansson
2008-06-03
1
-4
/
+5
*
Ruby 1.9 compat: ensure binary encoding for post body parsing
Jeremy Kemper
2008-05-19
1
-11
/
+17
*
Improve documentation coverage and markup
Xavier Noria
2008-05-02
1
-9
/
+9
*
Automatically parse posted JSON content for Mime::JSON requests. [rick]
Rick Olson
2008-04-08
1
-4
/
+11
*
Avoid remote_ip spoofing
Jeremy Kemper
2008-03-28
1
-13
/
+28
*
Fixed that ActionController::Base#read_multipart would fail if boundary was e...
David Heinemeier Hansson
2008-03-28
1
-1
/
+0
*
Fix more obscure nested parameter hash parsing bug. Closes #10797 [thomas.lee]
Rick Olson
2008-03-13
1
-1
/
+2
*
Fix nested parameter hash parsing bug. #10797 [thomas.lee]
Rick Olson
2008-03-11
1
-0
/
+1
*
Better error message for type conflicts when parsing params. Closes #7962 [s...
Rick Olson
2008-03-07
1
-1
/
+1
*
Fix bug with setting Request#format= after the getter has cached the value. C...
Rick Olson
2008-02-07
1
-1
/
+1
*
Provide a nicer way to access headers. request.headers["Content-Type"] inste...
Michael Koziarski
2008-01-11
1
-1
/
+3
*
Ruby 1.9 compat: file uploads. References #1689 [Frederick Cheung]
Jeremy Kemper
2007-12-27
1
-2
/
+2
*
Added OPTIONS to list of default accepted HTTP methods (closes #10449) [holoway]
David Heinemeier Hansson
2007-12-17
1
-1
/
+1
*
Ignore illegal seeks on body rewind. Catches CGI errors depending on your htt...
Jeremy Kemper
2007-12-07
1
-1
/
+7
*
Correct example for path parameters to use strings as keys in the hash rather...
Marcel Molina
2007-12-05
1
-2
/
+3
*
Raise UnknownHttpMethod exception for unknown HTTP methods. Closes #10303 [ta...
Rick Olson
2007-11-29
1
-12
/
+21
*
memoize host with port and refactor the tests which depend on it changing
Michael Koziarski
2007-11-17
1
-1
/
+1
*
Fixed handling of non-domain hosts (closes #9479) [purp]
David Heinemeier Hansson
2007-11-07
1
-2
/
+6
*
request.parameters doesn't overwrite request.request_parameters. Closes #9949...
Jeremy Kemper
2007-10-22
1
-1
/
+1
*
Use StringIO and Tempfile subclasses instead of defining singleton methods on...
Jeremy Kemper
2007-10-06
1
-47
/
+59
*
Rewind stdin if possible after multipart parsing.
Jeremy Kemper
2007-10-06
1
-0
/
+1
*
Move #query_string to AbstractRequest
Jeremy Kemper
2007-10-03
1
-0
/
+9
*
Ruby 1.9 compat, consistent load paths
Jeremy Kemper
2007-10-02
1
-10
/
+13
*
Added security notice to Request#remote_ip underlining the fact that its valu...
David Heinemeier Hansson
2007-09-17
1
-0
/
+8
*
Fixed that setting request.format would also affect respond_to blocks [DHH]
David Heinemeier Hansson
2007-09-15
1
-3
/
+17
*
Random hits from the style nazi
David Heinemeier Hansson
2007-09-09
1
-1
/
+1
*
Fixed that file.content_type for uploaded files would include a trailing \r #...
David Heinemeier Hansson
2007-07-24
1
-1
/
+1
*
Give the legacy X-POST_DATA_FORMAT header greater precedence during params pa...
Jeremy Kemper
2007-06-26
1
-6
/
+8
*
Tolerate missing content type on multipart file uploads. Fix for Safari 3.
Jeremy Kemper
2007-06-12
1
-4
/
+2
*
request.remote_ip understands X-Forwarded-For addresses with nonstandard whit...
Jeremy Kemper
2007-05-28
1
-1
/
+1
*
Don't alias local var
Jeremy Kemper
2007-05-24
1
-1
/
+1
*
Set RAW_POST_DATA when request parameters are parsed.
Jeremy Kemper
2007-05-23
1
-35
/
+32
*
Rewind request body after reading it, if possible. Closes #8438.
Jeremy Kemper
2007-05-23
1
-1
/
+3
*
Fix incorrent content type lookup in request parsing. Closes #8407.
Jeremy Kemper
2007-05-19
1
-27
/
+35
*
Remove dev exception.
Jeremy Kemper
2007-05-18
1
-2
/
+0
*
Parse url-encoded and multipart requests ourselves instead of delegating to CGI.
Jeremy Kemper
2007-05-18
1
-14
/
+356
*
Move request parameter parsing from CGI to AbstractRequest.
Jeremy Kemper
2007-05-15
1
-0
/
+17
*
Lazy-read request.raw_post from request.body
Jeremy Kemper
2007-05-15
1
-1
/
+1
*
Introduce the request.body stream. Lazy-read to parse parameters rather than ...
Jeremy Kemper
2007-05-15
1
-13
/
+21
*
The default respond_to blocks don't set a specific extension anymore, so that...
Rick Olson
2007-04-12
1
-1
/
+3
[next]