diff options
author | David Heinemeier Hansson <david@loudthinking.com> | 2006-05-29 00:05:13 +0000 |
---|---|---|
committer | David Heinemeier Hansson <david@loudthinking.com> | 2006-05-29 00:05:13 +0000 |
commit | 2b5894741bdbc4b7e8ba7764eabbcfe33123dbfc (patch) | |
tree | 60b76e9aa4381150a4559b295b8b350ea3185b63 /actionpack/CHANGELOG | |
parent | 140a998de31ed4547e0d21715165f4b338030673 (diff) | |
download | rails-2b5894741bdbc4b7e8ba7764eabbcfe33123dbfc.tar.gz rails-2b5894741bdbc4b7e8ba7764eabbcfe33123dbfc.tar.bz2 rails-2b5894741bdbc4b7e8ba7764eabbcfe33123dbfc.zip |
Expanded :method option in FormTagHelper#form_tag, FormHelper#form_for, PrototypeHelper#remote_form_for, PrototypeHelper#remote_form_tag, and PrototypeHelper#link_to_remote to allow for verbs other than GET and POST by automatically creating a hidden form field named _method, which will simulate the other verbs over post [DHH]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@4375 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionpack/CHANGELOG')
-rw-r--r-- | actionpack/CHANGELOG | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/actionpack/CHANGELOG b/actionpack/CHANGELOG index bf68e40466..81c660086c 100644 --- a/actionpack/CHANGELOG +++ b/actionpack/CHANGELOG @@ -1,8 +1,6 @@ *SVN* -* Added :method handling for other verbs to remote_form_tag and remote_form_for [DHH] - -* Expanded :method option in FormHelper#form_tag to allow for verbs other than GET and POST by automatically creating a hidden form field named _method, which will simulate the other verbs over post [DHH] +* Expanded :method option in FormTagHelper#form_tag, FormHelper#form_for, PrototypeHelper#remote_form_for, PrototypeHelper#remote_form_tag, and PrototypeHelper#link_to_remote to allow for verbs other than GET and POST by automatically creating a hidden form field named _method, which will simulate the other verbs over post [DHH] * Added :method option to UrlHelper#link_to, which allows for using other verbs than GET for the link. This replaces the :post option, which is now deprecated. Example: link_to "Destroy", person_url(:id => person), :method => :delete [DHH] |