aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_controller/base.rb
Commit message (Expand)AuthorAgeFilesLines
* Fixed that the content-header was being set to application/octet_stream inste...David Heinemeier Hansson2005-01-221-1/+1
* Fixed that all redirect and render calls now return true, so you can use the ...David Heinemeier Hansson2005-01-201-3/+18
* Added more informative error message for "file not found" situation in send_f...David Heinemeier Hansson2005-01-161-1/+1
* Fixed that send_file would "remember" all the files sent by adding to the hea...David Heinemeier Hansson2005-01-131-4/+4
* Added that all renders and redirects now return false, so they can be used as...David Heinemeier Hansson2005-01-101-0/+2
* Added authentication framework to protect actions behind a condition and redi...David Heinemeier Hansson2005-01-091-1/+1
* Added first stab at page and fragment cachingDavid Heinemeier Hansson2005-01-081-2/+8
* Added class declaration for the MissingFile exception #388 [Kent Sibilev]David Heinemeier Hansson2005-01-011-1/+3
* Added second boolean parameter to Base.redirect_to_url and Response#redirect ...David Heinemeier Hansson2004-12-311-3/+4
* Tagged the 0.9.1 releaseDavid Heinemeier Hansson2004-12-171-2/+2
* Updated documentationDavid Heinemeier Hansson2004-12-161-1/+1
* Added the option of passing false to :module or :controller_prefix in order t...David Heinemeier Hansson2004-12-131-1/+3
* Fixed CgiRequest#out to fall back to #write if doesn't have #syswrite [bitsw...David Heinemeier Hansson2004-12-121-4/+10
* Syntax errors and other exceptions thrown outside of an action are now gracef...David Heinemeier Hansson2004-12-061-18/+3
* Moved the global require_* out of the classes so they actually work without s...David Heinemeier Hansson2004-11-301-2/+4
* Abolished ActionController::Base.require_or_load in favor of require_dependen...David Heinemeier Hansson2004-11-301-1/+3
* Silenced warnings from reloading filesDavid Heinemeier Hansson2004-11-301-1/+1
* Added a new container for cookies that makes them more intuative to use. The ...David Heinemeier Hansson2004-11-261-27/+5
* Added ActionController#cookies[]= as an alias for cookie "name", "value" -- y...David Heinemeier Hansson2004-11-261-2/+8
* Added ActionController#cookies[] as a reader for @cookies that'll return the ...David Heinemeier Hansson2004-11-261-4/+5
* Added the opportunity to defined method_missing on a controller which will ha...David Heinemeier Hansson2004-11-251-1/+1
* InitialDavid Heinemeier Hansson2004-11-241-0/+689