aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_controller/base.rb
Commit message (Expand)AuthorAgeFilesLines
* Use response_body rather than performed?Yehuda Katz2009-08-091-1/+1
* Rename find_by_parts and find_by_parts? to find and exists?Yehuda Katz2009-08-071-1/+1
* Renamed presenter to renderer, added some documentation and defined its API.José Valim2009-08-071-2/+2
* Rename /base to /metal and make base.rb and metal.rb top-level to reflect the...Yehuda Katz2009-08-061-0/+167
* Reorganize ActionController folder structureJoshua Peek2009-01-271-1392/+0
* Begin unifying the interface between ActionController and ActionViewYehuda Katz2009-01-221-112/+146
* Deprecate ActionController::Base#session_enabled?Pratik Naik2009-01-191-1/+1
* Build query string and POST params parser on top of Rack::Request. Also switc...Joshua Peek2009-01-171-4/+1
* Fix failing flash testJeremy Kemper2009-01-061-1/+1
* Memoize request accessors on the Rack env so other request objects have acces...Joshua Peek2009-01-041-2/+2
* Test that exceptions raised in filters are properly rescuedJeremy Kemper2008-12-301-4/+7
* Clean up view path cruft and split path implementations into Template::Path a...Joshua Peek2008-12-291-6/+6
* Make router and controller classes better rack citizensJoshua Peek2008-12-281-0/+7
* Don't recurse when ActionController#render is called without any argumentsPratik Naik2008-12-261-1/+1
* Make ActionController#render(symbol) behave same as ActionController#render(s...Pratik Naik2008-12-261-5/+5
* Make ActionController#render(string) work as a shortcut for render :action =>...Pratik Naik2008-12-251-1/+3
* Make ActionController#render(string) work as a shortcut for render :template ...Pratik Naik2008-12-251-1/+3
* Make ActionController#render(string) work as a shortcut for render :file => s...Pratik Naik2008-12-251-1/+8
* Move ActionController::Base#render arguments validation to a separate methodPratik Naik2008-12-251-8/+14
* Ensure the template format is always passed to the template finder. Now we ca...Joshua Peek2008-12-211-12/+18
* Switch to Rack::Response#set_cookie instead of using CGI::Cookie to build coo...Joshua Peek2008-12-201-2/+2
* Use status response accessor instead of the 'Status' headerJoshua Peek2008-12-191-2/+2
* Remove CGI::Session memory leak patchJoshua Peek2008-12-161-5/+0
* Switch to Rack based session stores.Joshua Peek2008-12-151-10/+2
* Fixed session related memory leak [#1558 state:resolved]Frederick Cheung2008-12-111-0/+3
* Making the IP Spoofing check in AbstractRequest#remote_ip configurable.Darren Boyd2008-12-011-0/+4
* Reinstate "Super lazy load view paths in development mode (no indexing or cac...Joshua Peek2008-11-281-2/+3
* Revert "Super lazy load view paths in development mode (no indexing or cachin...David Heinemeier Hansson2008-11-271-3/+2
* Super lazy load view paths in development mode (no indexing or caching at all...Joshua Peek2008-11-261-2/+3
* Ensure ActionView will be available to ActionMailer if ActionController is no...Joshua Peek2008-11-251-1/+0
* Drop unneeded drb requireJeremy Kemper2008-11-231-1/+0
* Use autoload instead of explicit requires for ActionControllerJoshua Peek2008-11-231-7/+7
* Revert "Simplify benchmarking and rescue". Need a different approach.Pratik Naik2008-11-201-15/+1
* Simplify benchmarking and rescuePratik Naik2008-11-201-1/+15
* Remove deprecated ActionController::Base#assign_default_content_type_and_charsetPratik Naik2008-11-191-5/+0
* Remove deprecated render_component. Please use the plugin from http://github....Pratik Naik2008-11-191-1/+1
* Merge docrails.Pratik Naik2008-11-141-3/+3
* Dont bother logging the parameters hash if there are no parametersDavid Heinemeier Hansson2008-11-061-1/+1
* Dont log the _method attribute either. Its already available in the headerDavid Heinemeier Hansson2008-11-041-13/+4
|\
| * Remove unused debug_routesPratik Naik2008-11-021-6/+0
| * Dont dup params twice when filter_parameters is presentPratik Naik2008-11-021-2/+2
| * Dont document internalsPratik Naik2008-11-021-3/+0
| * Backwards compatibility fixes for relative_url_rootMichael Koziarski2008-11-021-5/+2
| * Merge with docrailsPratik Naik2008-11-021-0/+3
* | Dont log the _method attribute either. Its already available in the headerDavid Heinemeier Hansson2008-11-041-2/+2
|/
* Simplified the logging format for parameters (don't include controller, actio...David Heinemeier Hansson2008-11-011-6/+23
* Make sure habtm use class variable to list association valid keysLuca Guidi2008-11-011-1/+2
* Remove the logging of the Session ID when the session store is CookieStore [DHH]David Heinemeier Hansson2008-11-011-1/+5
* Accidently nixed a doc headerDavid Heinemeier Hansson2008-11-011-0/+1
* Added render :js for people who want to render inline JavaScript replies with...David Heinemeier Hansson2008-11-011-1/+23