aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_controller/base.rb
Commit message (Expand)AuthorAgeFilesLines
* Removed template_public? because it will always be true since the default tem...Joshua Peek2008-08-211-5/+1
* Cleanup around partial renderingRyan Bates2008-08-211-17/+3
* deprecate Base#assign_default_content_type_and_charsetJeremy Kemper2008-08-211-0/+5
* Move default content type and charset from Base to Response. Handle charset =...Jeremy Kemper2008-08-211-10/+0
* Return nil instead of a space when passing an empty collection or nil to 'ren...Ryan Bates2008-08-191-3/+6
* Be more careful about deducing action_methodsJeremy Kemper2008-08-061-6/+10
* Ensure public superclass methods don't shadow public controller methods. Case...Jeremy Kemper2008-08-051-3/+3
* List available actions in UnknownAction exception messageJeremy Kemper2008-07-311-1/+1
* Fix file permissionsTarmo Tänav2008-07-311-0/+0
* Added back ActionController::Base.allow_concurrency flag and moved lock down ...Joshua Peek2008-07-281-1/+14
* ActionController::Base.relative_url_root falls back to ENV['RAILS_RELATIVE_UR...Joshua Peek2008-07-241-1/+6
* AbstractRequest.relative_url_root is no longer automatically configured by a ...Joshua Peek2008-07-241-0/+4
* Memoize ActionView::Base pick_template and find_partial_path for rendering du...Joshua Peek2008-07-221-0/+2
* etag! and last_modified! conditional GET helpersJeremy Kemper2008-07-171-2/+13
* Use fully-qualified controller name when logging. [#600 state:resolved]Ripta Pasay2008-07-171-1/+1
* Set config.action_view.warn_cache_misses = true to receive a warning if you p...Joshua Peek2008-07-121-2/+2
* Refactor template preloading. New abstractions include Renderable mixins and ...Joshua Peek2008-07-121-5/+4
* Remove some Symbol#to_proc usage in runtime code. [#484 state:resolved]Cheah Chu Yeow2008-07-091-6/+6
* Reenable the use of the Accept header to give people a chance to update their...Michael Koziarski2008-07-091-3/+3
* Ensure url_for(nil) falls back to url_for({}). [#472 state:resolved]Cheah Chu Yeow2008-07-091-1/+2
* Disable the Accept header by defaultMichael Koziarski2008-07-071-0/+10
* Simplify the implementation of assert_redirected_to to normalise the urls bef...Michael Koziarski2008-07-041-15/+17
* Reduce the number of callsites for new TemplateFilesJoshua Peek2008-07-031-2/+3
* Remove unneeded ObjectWrapper class.Michael Koziarski2008-07-031-1/+1
* Deprecate :use_full_path render option. The supplying the option no longer ha...Joshua Peek2008-07-021-5/+5
* Add :as option to render a collection of partials with a custom local variabl...Pratik Naik2008-07-021-1/+4
* Make sure render :template works with :locals. [#524 state:resolved]Tim Haines2008-07-021-1/+4
* Hide InlineTemplate class from ActionController and use ActionView's render APIJoshua Peek2008-06-251-2/+1
* Made ActionView::Base#render_file privateJoshua Peek2008-06-251-1/+1
* Replaced TemplateFinder abstraction with ViewLoadPathsJoshua Peek2008-06-171-14/+10
* Fix url_for with no arguments when default_url_options is not explicitly defi...Luke Redpath2008-06-171-2/+2
* Drop ActionController::Base.allow_concurrency flagJoshua Peek2008-06-081-7/+0
* Merge docrails.Pratik Naik2008-05-251-7/+7
* Protect #filter_parameters created by filter_parameter_logging [José Valim] ...Joshua Peek2008-05-141-25/+26
* Merge docrails:Pratik Naik2008-05-091-23/+29
* Allow ActionController::Base#default_url_options to have a default options ar...Cheah Chu Yeow2008-05-051-1/+1
* Ensure that default_url_options, if defined, are used in named routes.Cheah Chu Yeow2008-05-041-2/+2
* Improve documentation coverage and markupXavier Noria2008-05-021-6/+7
* Clarify confusing ActionController::Base.allow_concurrency flag.Jeremy Kemper2008-04-281-3/+4
* Delegate ivars to controller instead of copyingPratik Naik2008-04-211-1/+2
* Remove ActionController::Base#view_controller_internalsPratik Naik2008-04-211-24/+6
* Remove ActionController::Base#add_class_variables_to_assignsPratik Naik2008-04-211-7/+0
* Remove unused ignore_missing_templates optionPratik Naik2008-04-191-4/+1
* Move missing template logic to ActionViewPratik Naik2008-04-191-13/+0
* Introduce ActionView::InlineTemplate classPratik Naik2008-04-191-1/+1
* Allow alternative values for the 'new' and 'edit' actions in resourceful routes.Michael Koziarski2008-04-121-0/+4
* Automatically parse posted JSON content for Mime::JSON requests. [rick]Rick Olson2008-04-081-2/+3
* Inspect options hashes in RenderError message so it's actually readable. Clos...Jeremy Kemper2008-03-281-2/+2
* Remove unused ActionController::Base.template_class. Closes #10787Pratik Naik2008-03-051-8/+1
* Moved template handlers related code from ActionView::Base to ActionView::Tem...Pratik Naik2008-03-051-2/+1