aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib
Commit message (Expand)AuthorAgeFilesLines
* Cope with missing content type and length headers. Parse parameters from mult...Jeremy Kemper2006-06-011-21/+42
* Added interrogation of params[:format] to determine Accept type. If :format i...David Heinemeier Hansson2006-05-312-1/+23
* Easy way to set accepting for functional testsDavid Heinemeier Hansson2006-05-311-0/+4
* If not passing a hash, assume :id => whateverDavid Heinemeier Hansson2006-05-311-1/+1
* Expanded :method option in FormTagHelper#form_tag, FormHelper#form_for, Proto...David Heinemeier Hansson2006-05-292-1/+13
* Added :method handling for other verbs to remote_form_tag and remote_form_for...David Heinemeier Hansson2006-05-283-5/+5
* Expanded :method option in FormHelper#form_tag to allow for verbs other than ...David Heinemeier Hansson2006-05-281-3/+18
* Added :method option to UrlHelper#link_to, which allows for using other verbs...David Heinemeier Hansson2006-05-281-13/+27
* follow_redirect doesn't complain about being redirected to the same controlle...Jeremy Kemper2006-05-221-2/+3
* Change the request.env example in AC::Base docs to a var that exists (REMOTE_...Jeremy Kemper2006-05-171-3/+3
* Add layout attribute to response object with the name of the layout that was ...Marcel Molina2006-05-172-1/+2
* performance enhancement for previous patch [skaes]Michael Koziarski2006-05-161-1/+1
* Fix NoMethodError when parsing params like &&. [Adam Greenfield]. Closes #4955Michael Koziarski2006-05-161-0/+1
* Fix flip flopped logic in docs for url_for's :only_path option. Closes #4998....Marcel Molina2006-05-141-1/+1
* form.text_area handles the :size option just like the original text_area (:si...Jeremy Kemper2006-05-111-0/+5
* Excise ingrown code from FormOptionsHelper#options_for_select. Closes #5008.Jeremy Kemper2006-05-091-2/+0
* Small fix in routing to allow dynamic routes (broken after [4242]) [Rick]Rick Olson2006-04-301-2/+2
* Add Integration Session methods for PUT and DELETE requests [Rick]Rick Olson2006-04-301-7/+10
* Replace alias method chaining with Module#alias_method_chain. [Marcel Molina ...Marcel Molina2006-04-2910-43/+21
* Replace Ruby's deprecated append_features in favor of included. [Marcel Molin...Marcel Molina2006-04-298-20/+10
* Revert unintential change to filter parametersMarcel Molina2006-04-291-18/+16
* Update READMEMarcel Molina2006-04-291-16/+18
* Use #flush between switching from #write to #syswrite. Closes #4907. [Blair Z...Marcel Molina2006-04-291-0/+3
* Documentation fix: integration test scripts don't require integration_test. C...Marcel Molina2006-04-271-2/+0
* ActionController::Base Summary documentation rewrite. Closes #4900. [kevin.cl...Marcel Molina2006-04-271-65/+45
* Fix text_helper.rb documentation rendering. Closes #4725. [Frederick Ros]Marcel Molina2006-04-271-20/+20
* Fixes bad rendering of JavaScriptMacrosHelper rdoc (closes #4910) [Frederick ...Rick Olson2006-04-271-4/+5
* Allow error_messages_for to report errors for multiple objects, as well as su...Marcel Molina2006-04-261-16/+30
* Enhance documentation for setting headers in integration tests. Skip auto HTT...Marcel Molina2006-04-261-4/+10
* Documentation for AbstractRequest. Closes #4895. [kevin.clark@gmail.com]Marcel Molina2006-04-261-3/+11
* Fix documentation indentationMarcel Molina2006-04-261-3/+3
* Refactor various InstanceTag instance method to class methods. Closes #4800. ...Marcel Molina2006-04-253-29/+59
* Remove all remaining references to @params in the documentation.Marcel Molina2006-04-256-10/+10
* Add documentation for redirect_to :back's RedirectBackError exception.Marcel Molina2006-04-251-0/+4
* Update layout and content_for documentation to use yield rather than magic @c...Marcel Molina2006-04-253-21/+25
* Fix assert_redirected_to tests according to real-world usage.Rick Olson2006-04-251-8/+18
* only require redcloth/bluecloth if they are not already loaded [Rick]Rick Olson2006-04-231-2/+2
* Cache CgiRequest#request_parameters so that multiple calls don't re-parse mul...Rick Olson2006-04-231-5/+6
* Diff compared routing options. Allow #assert_recognizes to take a second arg...Rick Olson2006-04-231-5/+22
* allow -'s in tag names for html scanner when scanning AR xml documentsRick Olson2006-04-221-1/+1
* Use ActiveSupport's String#join methodRick Olson2006-04-221-4/+4
* Diff compared options with #assert_redirected_to [Rick]Rick Olson2006-04-221-25/+55
* reset TestRequest#parameters after assigning paramtersRick Olson2006-04-221-0/+1
* fix to ';' interpretation in route recognition--only follow a route with ';' ...Jamis Buck2006-04-211-4/+5
* Add support in routes for semicolon delimited "subpaths", like /books/:id;:ac...Jamis Buck2006-04-212-16/+73
* Change link_to_function and button_to_function to (optionally) take an update...Sam Stephenson2006-04-191-5/+25
* Fixed that remote_form_for can leave out the object parameter and default to ...David Heinemeier Hansson2006-04-161-2/+3
* Modify routing so that you can say :require => { :method => :post } for a rou...Jamis Buck2006-04-131-5/+12
* Added :add_headers option to verify which merges a hash of name/value pairs i...Sam Stephenson2006-04-081-0/+4
* Added ActionController.filter_parameter_logging that makes it easy to remove ...David Heinemeier Hansson2006-04-071-1/+48