aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_controller/base.rb
Commit message (Expand)AuthorAgeFilesLines
...
* Undeprecate redirect_to with Hash argument and additional url_for parameters....Jeremy Kemper2007-03-161-1/+1
* Deprecation: remove deprecated url_for(:symbol, *args) and redirect_to(:symbo...Jeremy Kemper2007-03-131-12/+4
* Deprecation: privatize deprecated render_partial and render_partial_collectio...Jeremy Kemper2007-03-131-5/+2
* Deprecation: remove deprecated instance variables.Jeremy Kemper2007-03-131-19/+0
* Added user/password options for url_for to add http authentication in a URL [...David Heinemeier Hansson2007-03-031-3/+6
* session_enabled? works with session :off. Closes #6680.Jeremy Kemper2007-02-271-1/+1
* Added .erb and .builder as preferred aliases to the now deprecated .rhtml and...David Heinemeier Hansson2007-02-201-9/+9
* Move etagging down to response, so renders with layouts dont screw it up [DHH]David Heinemeier Hansson2007-02-191-14/+3
* Added caching option to AssetTagHelper#stylesheet_link_tag and AssetTagHelper...David Heinemeier Hansson2007-02-181-1/+1
* Allow people to set their own etags, if they want more control over the proce...David Heinemeier Hansson2007-02-181-2/+2
* Etagging ignores appended and block responses.Jeremy Kemper2007-02-181-9/+11
* Added that rendering will automatically insert the etag header on 200 OK resp...David Heinemeier Hansson2007-02-171-0/+18
* Fix issue with deprecation messing up #template_root= usage. Add #prepend_vi...Rick Olson2007-02-041-3/+19
* Allow Controllers to have multiple view_paths instead of a single template_ro...Rick Olson2007-02-041-14/+44
* Allow exempt_from_layout :rhtml. References #6742, closes #7026.Jeremy Kemper2007-01-141-4/+3
* Remove unrelated render :yaml changes. References #4185.Jeremy Kemper2006-12-061-11/+3
* respond_to recognizes JSON. render :json => @person.to_json automatically set...Jeremy Kemper2006-12-061-0/+32
* Use Location rather than location header.Jeremy Kemper2006-11-261-1/+1
* Dont set default charset if the response is sending a file. Closes #6689 [DHH]David Heinemeier Hansson2006-11-251-1/+5
* Ensure render_to_string cleans up after itself when an exception is raised. C...Jeremy Kemper2006-11-201-4/+2
* render_text may optionally append to the response body. render_javascript app...Jeremy Kemper2006-10-091-4/+11
* add response to list of deprecated instance variablesJeremy Kemper2006-10-021-1/+1
* Deprecate @responseJeremy Kemper2006-09-291-9/+10
* Deprecate @headersJeremy Kemper2006-09-291-4/+4
* Deprecate @cookiesJeremy Kemper2006-09-291-3/+3
* Deprecation: @request will be removed after 1.2. Use the request method instead.Jeremy Kemper2006-09-291-4/+4
* modify head so that you can specify a bare status code as the first parameterJamis Buck2006-09-281-5/+21
* Add ActionController::Base#head for rendering empty responses. Add support fo...Jamis Buck2006-09-281-1/+26
* Added proper getters and setters for content type and charset [DHH] Added utf...David Heinemeier Hansson2006-09-171-3/+13
* Declare file extensions exempt from layouts. Closes #6219.Jeremy Kemper2006-09-161-1/+15
* Doc fix (closes #6023)David Heinemeier Hansson2006-09-041-1/+1
* Dont raise deprecation warning on render :action => "stuff"David Heinemeier Hansson2006-09-041-2/+2
* silence deprecation warnings. cosmetics.Jeremy Kemper2006-09-041-82/+84
* pass caller to deprecation warningJeremy Kemper2006-09-041-2/+4
* Added deprecation language for in_place_editor and auto_complete_field that b...David Heinemeier Hansson2006-09-031-2/+2
* Deprecated old render parameter callsDavid Heinemeier Hansson2006-09-031-7/+16
* Backout of blowup fixDavid Heinemeier Hansson2006-09-031-15/+6
* More deprecation funDavid Heinemeier Hansson2006-09-031-9/+29
* respond_to .html now always renders #{action_name}.rhtml so that registered c...Tobias Lütke2006-08-301-0/+2
* Invoke method_missing directly for hidden actions. Closes #3030.Nicholas Seckar2006-08-131-2/+5
* New dependencies implementationNicholas Seckar2006-08-081-1/+1
* Deprecation: check whether instance variables have been monkeyed with before ...Jeremy Kemper2006-08-071-4/+12
* Deprecate direct usage of @params. Update ActionView::Base for instance var d...Jeremy Kemper2006-08-071-9/+11
* Deprecation! @session and @flash will be removed after 1.2. Use the session a...Jeremy Kemper2006-08-071-27/+39
* Make controller_path available as an instance method. Closes #5724.Jeremy Kemper2006-08-051-0/+5
* Added map.resources from the Simply Restful plugin (backwards incompatible wi...David Heinemeier Hansson2006-07-311-0/+1
* Update render :partial documentation. Closes #5646.Jeremy Kemper2006-07-081-14/+18
* Clarify partial filename constraints. Closes #1161.Jeremy Kemper2006-07-071-0/+3
* Doc fix (closes #5429)David Heinemeier Hansson2006-07-051-0/+7
* Added support for Mime objects in render :content_type option [DHH]David Heinemeier Hansson2006-06-021-1/+1