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
Commit message (
Expand
)
Author
Age
Files
Lines
...
*
Fix doc typo on Dispatcher.dispatch. Closes #10434 [fxn]
Jeremy Kemper
2007-12-10
1
-1
/
+1
*
render :xml and :json preserve custom content types. Closes #10388.
Jeremy Kemper
2007-12-09
1
-2
/
+2
*
Fix DoubleRenderError message and leave out mention of returning false from f...
Rick Olson
2007-12-08
1
-1
/
+1
*
Clean up some cruft around ActionController::Base#head. Closes #10417 [ssoroka]
Rick Olson
2007-12-08
1
-12
/
+2
*
Ignore illegal seeks on body rewind. Catches CGI errors depending on your htt...
Jeremy Kemper
2007-12-07
1
-1
/
+7
*
Fixed send_file/binary_content for testing (closes #8044) [tolsen]
David Heinemeier Hansson
2007-12-05
1
-7
/
+1
*
Adding missing space to documentation of the layout method. Closes #7126 [ora...
Marcel Molina
2007-12-05
1
-1
/
+1
*
Add example of redirect_to that uses a named route. Closes #7149 [stevenbristol]
Marcel Molina
2007-12-05
1
-0
/
+1
*
Correct example for path parameters to use strings as keys in the hash rather...
Marcel Molina
2007-12-05
1
-2
/
+3
*
Enhance documentation coverage for fragment caching. Closes #7315 [bscofield]
Marcel Molina
2007-12-05
1
-14
/
+23
*
Fix typos (closes #10378)
David Heinemeier Hansson
2007-12-05
5
-10
/
+10
*
Add many examples to assertion documentation. Closes #7803 [jeremymcanally]
Marcel Molina
2007-12-05
4
-37
/
+128
*
Add examples in the documentation for various assertions. Closes #9938 [zapnap]
Marcel Molina
2007-12-05
3
-5
/
+48
*
When a NonInferrableControllerError is raised, make the proposed fix clearer ...
Marcel Molina
2007-12-05
1
-1
/
+1
*
Removed some of the tags that does not make sense to allow per default in the...
David Heinemeier Hansson
2007-12-04
1
-2
/
+2
*
Fixed that verification violations with no specified action didn't halt the c...
David Heinemeier Hansson
2007-11-30
1
-6
/
+15
*
Make sure assert_select_rjs gets counted, Closes #10278 [tarmo]
Michael Koziarski
2007-11-29
1
-1
/
+2
*
Raise UnknownHttpMethod exception for unknown HTTP methods. Closes #10303 [ta...
Rick Olson
2007-11-29
2
-12
/
+23
*
correct confusing comments
Michael Koziarski
2007-11-28
1
-1
/
+1
*
Make sure the optimisation code for routes doesn't get used if :host, :anchor...
Michael Koziarski
2007-11-28
1
-1
/
+1
*
Added protection from trailing slashes on page caching (closes #10229) [devri...
David Heinemeier Hansson
2007-11-28
1
-1
/
+1
*
Fixed to_s bug with namespace routes (closes #10283) [johnb]
David Heinemeier Hansson
2007-11-26
1
-1
/
+1
*
Minor inconsistency in description of render example. Closes #10029 [ScottSch...
Marcel Molina
2007-11-26
1
-2
/
+2
*
Add #prepend_view_path and #append_view_path instance methods on ActionContro...
Rick Olson
2007-11-26
1
-3
/
+22
*
Refactor sanitizer helpers into HTML classes and make it easy to swap them ou...
Rick Olson
2007-11-26
2
-0
/
+174
*
Fixed that named routes living under resources shouldn't have double slashes ...
David Heinemeier Hansson
2007-11-25
1
-1
/
+1
*
Improve error messages when providing a secret that is too short. Closes #10...
Michael Koziarski
2007-11-24
1
-4
/
+5
*
Document that the cookie store is the default session store. Mention the memc...
Jeremy Kemper
2007-11-22
2
-8
/
+17
*
Make sure that cookie sessions use a secret that is at least 30 chars in leng...
Michael Koziarski
2007-11-21
1
-3
/
+17
*
Emphasize the importance of a dictionary attack-proof secret for the cookie s...
David Heinemeier Hansson
2007-11-21
1
-1
/
+4
*
Refactor cookie_only option to survive multiple requests and add regression t...
Michael Koziarski
2007-11-21
1
-3
/
+7
*
Ensure that the routing optimisation code isn't used when additional argument...
Michael Koziarski
2007-11-20
1
-4
/
+10
*
Remove unnecessary route reload in integration tests, obsoleted by [7676]. Cl...
Michael Koziarski
2007-11-19
1
-1
/
+0
*
Docfix (closes #10155)
David Heinemeier Hansson
2007-11-18
1
-2
/
+2
*
memoize host with port and refactor the tests which depend on it changing
Michael Koziarski
2007-11-17
1
-1
/
+1
*
Remove unneeded code to disable optimisations. the defined?(request) stuff t...
Michael Koziarski
2007-11-17
1
-3
/
+0
*
Fixed handling of non-domain hosts (closes #9479) [purp]
David Heinemeier Hansson
2007-11-07
1
-2
/
+6
*
Standardize on using hyphens rather than colons to separate option names from...
Marcel Molina
2007-11-06
4
-25
/
+27
*
Fix broken tag in assert_tag documentation. Closes #9037 [mfazekas]
Marcel Molina
2007-11-06
1
-3
/
+3
*
Add documentation for route conditions. Closes #9041 [innu, manfred]
Marcel Molina
2007-11-06
1
-0
/
+18
*
Fixed that ActionController::CgiRequest#host_with_port() should handle standa...
David Heinemeier Hansson
2007-11-06
1
-3
/
+3
*
Minor documentation enhancements and white-space fixes. Closes #9819 [chuyeow]
Michael Koziarski
2007-11-06
1
-144
/
+144
*
Make rescue_from behave like rescue when dealing with subclasses. Closes #10...
Michael Koziarski
2007-11-06
1
-6
/
+51
*
Add missing quote to send_file documentation. [developingchris] Closes #10078
Michael Koziarski
2007-11-05
1
-1
/
+1
*
Profile an integration session instead of a single request
Jeremy Kemper
2007-11-01
1
-87
/
+58
*
Factor Integration::Runner behavior out of IntegrationTest. Introduce Session...
Jeremy Kemper
2007-11-01
1
-72
/
+85
*
Expose the cookie jar as a helper method (before the view would just get the ...
David Heinemeier Hansson
2007-10-31
1
-0
/
+4
*
Integration tests: get_ and post_via_redirect take a headers hash. Closes #9130.
Jeremy Kemper
2007-10-27
1
-6
/
+7
*
Simplfy #view_paths implementation. ActionView templates get the exact objec...
Rick Olson
2007-10-26
1
-24
/
+27
*
Update tests for ActiveSupport's JSON escaping change. [rick]
Rick Olson
2007-10-26
1
-0
/
+1
[prev]
[next]