aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_controller
Commit message (Expand)AuthorAgeFilesLines
* 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
* Update tests for ActiveSupport's JSON escaping change. [rick]Rick Olson2007-10-261-0/+1
* Make example parameters in restful routing docs idiomatic. Closes #9993 [danger]Marcel Molina2007-10-261-2/+2
* Make documentation comment for mime responders match documentation example. ...Marcel Molina2007-10-261-1/+1
* Introduce TestCase subclasses for testing rails applications allowing tests t...Michael Koziarski2007-10-261-0/+53
* Fix incorrect path in helper rdoc. Closes #9926 [viktor tron]Marcel Molina2007-10-261-2/+2
* / default uri, -b shortcutJeremy Kemper2007-10-251-3/+3
* Request profilerJeremy Kemper2007-10-251-0/+167
* Refactor the default rendering out to a method called default_render to provi...Michael Koziarski2007-10-251-5/+9
* Remove unnecessary returns from builtin filters since render/return is now su...Jeremy Kemper2007-10-243-8/+1
* Some mime type refactoring. Closes #9957 [Josh Peek]Jeremy Kemper2007-10-233-22/+11
* Remove duplicate rjs layout check. Closes #9956 [Josh Peek]Jeremy Kemper2007-10-231-1/+1
* request.parameters doesn't overwrite request.request_parameters. Closes #9949...Jeremy Kemper2007-10-221-1/+1
* Changed before_filter halting to happen automatically on render or redirect b...David Heinemeier Hansson2007-10-211-19/+28
* Ensure that cookies handle array values correctly. Closes #9937 [queso]Rick Olson2007-10-201-1/+4
* Use SecureRandom to generate unique ids, if available.Jeremy Kemper2007-10-181-12/+22
* caches_page uses a single after_filter instead of one per action. Closes #9891.Jeremy Kemper2007-10-161-3/+2
* More Performant Cookie Regexp for Integration tests. [Ola Bini]Michael Koziarski2007-10-161-1/+1
* Dispatcher: fix that to_prepare should only run once in production. Closes #9...Jeremy Kemper2007-10-161-1/+2
* Improve the error message for assert_redirected_to. Closes #7337 [mikong, san...Jeremy Kemper2007-10-161-3/+2
* Fix Json related documentation for render and the AR serializer. Closes #9814...Michael Koziarski2007-10-152-6/+12
* Memcached sessions: add session data on initialization; don't silently discar...Jeremy Kemper2007-10-141-15/+8
* Missed post_via_redirect. References #6834Michael Koziarski2007-10-131-1/+1
* Define get_via_redirect as well. Closes #6834 [colthorp]Michael Koziarski2007-10-131-1/+2
* Make sure that custom inflections are picked up by map.resources by triggerin...Michael Koziarski2007-10-131-7/+20
* rescue_from accepts :with => lambda { |exception| ... } or a normal block. Cl...Jeremy Kemper2007-10-101-4/+7
* Add :status to redirect_to allowing users to choose their own response code w...Michael Koziarski2007-10-092-10/+25