aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_controller/base.rb
Commit message (Expand)AuthorAgeFilesLines
* Remove all remaining references to @params in the documentation.Marcel Molina2006-04-251-2/+2
* Add documentation for redirect_to :back's RedirectBackError exception.Marcel Molina2006-04-251-0/+4
* Added ActionController.filter_parameter_logging that makes it easy to remove ...David Heinemeier Hansson2006-04-071-1/+48
* CHANGED DEFAULT: Don't parse YAML input by default, but keep it available as ...David Heinemeier Hansson2006-04-041-7/+9
* Fixed docsDavid Heinemeier Hansson2006-03-281-16/+15
* Spell existence properly (closes #4442)David Heinemeier Hansson2006-03-271-2/+2
* Enable application/x-yaml processing by defaultJamis Buck2006-03-251-6/+7
* Updated Kernel#returning for the AP performance patch [DHH]David Heinemeier Hansson2006-03-201-1/+1
* fix usage of #returning in ActionController::BaseRick Olson2006-03-201-1/+1
* Performance speedup for ActionController (closes #4174) [Stefan Kaes] Include...David Heinemeier Hansson2006-03-201-27/+21
* Simplify controller_pathNicholas Seckar2006-03-131-7/+1
* Always use application/xml, then the charset is determined by the XML docDavid Heinemeier Hansson2006-03-131-1/+1
* The mere existance of a rjs file shouldnt cause the layout to disappear. Made...David Heinemeier Hansson2006-03-131-1/+1
* The mere existance of a rjs file shouldnt cause the layout to disappear. Made...David Heinemeier Hansson2006-03-131-1/+3
* Rendering xml shouldnt happen inside any layout. Added class proxying to RJS,...David Heinemeier Hansson2006-03-131-0/+4
* Mime types are separated by a comma, not semicolon, in the Accept header. Als...David Heinemeier Hansson2006-03-121-4/+4
* Added better support for using the same actions to output for different sourc...David Heinemeier Hansson2006-03-111-2/+11
* XmlSimple _should_ be the default since XmlNode is not compatible with regula...David Heinemeier Hansson2006-03-071-9/+11
* Doc fixesDavid Heinemeier Hansson2006-03-051-4/+2
* ActionController::Base.param_parsers now accept symbols. currently supported ...Tobias Lütke2006-03-051-8/+3
* Added new infrastructure support for REST webservices.Tobias Lütke2006-03-051-2/+33
* Remove ::Controllers related cruft; fix AP testsNicholas Seckar2006-02-261-2/+0
* Ensure backwards compatibility with symbolized action names for render_action...David Heinemeier Hansson2006-02-191-1/+1
* Make RJS treat symbolic action names nicely #3861 [Rick Olson]David Heinemeier Hansson2006-02-171-1/+1
* Stopped the massive bleeding of concerns into ActionController::Base. Base no...David Heinemeier Hansson2006-02-121-36/+39
* The components module should also contain the options that pertain to it, so ...David Heinemeier Hansson2006-02-121-17/+4
* Major components cleanup and speedup. Closes #3527.Jeremy Kemper2006-02-091-11/+35
* Just go with Subclasses instead of OnlySubclassesDavid Heinemeier Hansson2006-02-041-1/+1
* Add Reloadable::OnlySubclasses which handles the common case where a base cla...Nicholas Seckar2006-02-021-8/+3
* Ensure assigns are copied to the template when using render :update. Closes ...Nicholas Seckar2006-01-301-0/+3
* Added reusable reloading support through the inclusion of the Relodable modul...David Heinemeier Hansson2006-01-291-0/+7
* Add the ability to call JavaScriptGenerator methods from helpers called in up...Sam Stephenson2006-01-231-2/+3
* Backing out of [3470] until visual_effect, et al can workSam Stephenson2006-01-231-3/+2
* Add the ability to call JavaScriptGenerator methods from helpers called in up...Sam Stephenson2006-01-231-2/+3
* Raise a RedirectBackError if redirect_to :back is called when theres no HTTP_...David Heinemeier Hansson2006-01-221-1/+8
* Pass along blocks from render_to_string to renderSam Stephenson2006-01-201-2/+2
* Add render :update for inline RJSSam Stephenson2006-01-201-7/+30
* Remove Upload Progress. Closes #2871.Marcel Molina2006-01-131-6/+0
* only log session_id if @session object responds to .session_id. Tobias Lütke2005-12-221-1/+1
* Add session ID to default logging, but remove the verbose description of ever...David Heinemeier Hansson2005-12-221-0/+1
* Don't try to strip out the controller name if default_action_name is nilMarcel Molina2005-12-201-2/+4
* Don't include a layout when rendering an rjs template using render's :templat...Marcel Molina2005-12-171-0/+10
* Make ActionController's render honor the :locals option when rendering a :fil...Sam Stephenson2005-11-221-3/+7
* Make rjs templates always implicitly skip out on layouts.Marcel Molina2005-11-181-3/+8
* Update documentation for render :file. References #2858.Jeremy Kemper2005-11-141-8/+12
* CGI::Session::ActiveRecordStore.data_column_name = 'foobar' to use a differen...Jeremy Kemper2005-11-091-1/+5
* Fix docs (closes #2725)David Heinemeier Hansson2005-11-071-2/+2
* Added redirect_to :back as a short-hand for redirect_to(request.env["HTTP_REF...David Heinemeier Hansson2005-11-021-0/+6
* ensure close_session in AC::Base#processJeremy Kemper2005-11-021-2/+2
* Fix problem where redirecting components can cause an Scott Barron2005-10-301-0/+1