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
*
Filter procs must take 1 or 2 arguments. Raise ArgumentError otherwise.
Jeremy Kemper
2008-01-07
1
-3
/
+5
*
The asset_host block takes the controller request as an optional second argum...
Jeremy Kemper
2008-01-06
1
-3
/
+4
*
Support render :text => nil. Closes #6684.
Jeremy Kemper
2008-01-06
1
-2
/
+2
*
* Continue evolution toward ActiveSupport::TestCase and friends. #10679 [Jos...
Jeremy Kemper
2008-01-05
2
-20
/
+13
*
assert_response failures include the exception message. Closes #10688.
Jeremy Kemper
2008-01-05
1
-1
/
+5
*
Moved the caching stores from ActionController::Caching::Fragments::* to Acti...
David Heinemeier Hansson
2008-01-03
6
-678
/
+590
*
Refactored ActionController::Verification and improved docs (closes #10681) [...
David Heinemeier Hansson
2008-01-03
1
-57
/
+73
*
Made fragment caching in views work for rjs and builder as well (closes #6642...
David Heinemeier Hansson
2008-01-03
1
-3
/
+29
*
Ruby 1.9 compat: introduce instance_variable_names. Closes #10630 [Frederick ...
Jeremy Kemper
2007-12-28
2
-2
/
+2
*
Ensure that test case setup is run even if overridden. Closes #10382.
Jeremy Kemper
2007-12-28
1
-3
/
+16
*
Use extract_options! rather than Hash test + pop. Closes #10628 [ssoroka]
Jeremy Kemper
2007-12-28
1
-1
/
+1
*
Ruby 1.9 compat: file uploads. References #1689 [Frederick Cheung]
Jeremy Kemper
2007-12-27
1
-2
/
+2
*
Introduce native mongrel handler and push mutex into dispatcher.
Jeremy Kemper
2007-12-27
1
-6
/
+12
*
Fix HTML Sanitizer to allow trailing spaces in CSS style attributes. Closes ...
Rick Olson
2007-12-23
1
-2
/
+2
*
Integration tests use ActionController::Dispatcher rather than the old Dispat...
Jeremy Kemper
2007-12-22
1
-2
/
+3
*
Fold reset! into the run method directly. Make -n options compatible with Rub...
Jeremy Kemper
2007-12-22
1
-7
/
+6
*
Request profiler resets after warmup and each run so you don't have to do it ...
Jeremy Kemper
2007-12-22
1
-3
/
+13
*
Request profiler: use actual script path and line numbers for backtraces.
Jeremy Kemper
2007-12-22
1
-3
/
+4
*
Update layout docs. Closes #10584 [Cheah Chu Yeow]
Jeremy Kemper
2007-12-21
1
-15
/
+14
*
Ruby 1.9 compat: move from the deprecated Base64 module to ActiveSupport::Bas...
Jeremy Kemper
2007-12-18
3
-15
/
+11
*
Added delete_via_redirect and put_via_redirect to integration testing (closes...
David Heinemeier Hansson
2007-12-17
1
-13
/
+28
*
Allow headers[Accept] to be set by hand when calling xml_http_request (closes...
David Heinemeier Hansson
2007-12-17
1
-1
/
+1
*
Added OPTIONS to list of default accepted HTTP methods (closes #10449) [holoway]
David Heinemeier Hansson
2007-12-17
1
-1
/
+1
*
Fix doc (closes #10526)
David Heinemeier Hansson
2007-12-16
1
-1
/
+1
*
Ruby 1.9 compat: helpers
Jeremy Kemper
2007-12-15
1
-1
/
+2
*
Ruby 1.9 compat: account for new, non-flattening Array#to_s
Jeremy Kemper
2007-12-15
1
-3
/
+3
*
Ruby 1.9 compat: cookies
Jeremy Kemper
2007-12-15
1
-5
/
+1
*
Remove missing default helper warnings
Jeremy Kemper
2007-12-15
1
-2
/
+0
*
Introduce (in /Users/jeremy/rails/git/trunk) to output a crytographically sec...
Jeremy Kemper
2007-12-15
1
-0
/
+3
*
Docfix (closes #10429) [jamesh/ssoroka]
David Heinemeier Hansson
2007-12-14
1
-9
/
+8
*
Make the routes rake task more discoverable but documenting it in the routing...
Marcel Molina
2007-12-13
1
-0
/
+4
*
Explain how the layout macro behaves when passed a path that contains a direc...
Marcel Molina
2007-12-13
1
-1
/
+2
*
More Action View refactoring. Knock :erb default down a notch. Closes #10455.
Jeremy Kemper
2007-12-10
1
-1
/
+1
*
Ruby 1.9 compat: File.exists\? -> File.exist\? en masse. References #1689 [Pr...
Jeremy Kemper
2007-12-10
2
-3
/
+3
*
Fix strange NoMemoryError on amd64. Closes #10442 [wrb]
Jeremy Kemper
2007-12-10
1
-4
/
+5
*
Document how to disable forgery protection for tests. Useful note for those u...
Jeremy Kemper
2007-12-10
1
-1
/
+7
*
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
[next]