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