aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_view/helpers/active_record_helper.rb
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2004-12-07 11:43:21 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2004-12-07 11:43:21 +0000
commit3ee4357b8643c611bbe9eb3a7ce820a5e32cddaa (patch)
tree1d6efa4c7559a1016a05779d859357bd138d4abc /actionpack/lib/action_view/helpers/active_record_helper.rb
parent63c4e789b50f502bedcfd0a9b6bf231ec97307f5 (diff)
downloadrails-3ee4357b8643c611bbe9eb3a7ce820a5e32cddaa.tar.gz
rails-3ee4357b8643c611bbe9eb3a7ce820a5e32cddaa.tar.bz2
rails-3ee4357b8643c611bbe9eb3a7ce820a5e32cddaa.zip
Added that ActiveRecordHelper#form now calls url_for on the :action option.
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@62 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionpack/lib/action_view/helpers/active_record_helper.rb')
-rw-r--r--actionpack/lib/action_view/helpers/active_record_helper.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/actionpack/lib/action_view/helpers/active_record_helper.rb b/actionpack/lib/action_view/helpers/active_record_helper.rb
index de18696992..7066121c28 100644
--- a/actionpack/lib/action_view/helpers/active_record_helper.rb
+++ b/actionpack/lib/action_view/helpers/active_record_helper.rb
@@ -24,7 +24,7 @@ module ActionView
# Returns an entire form with input tags and everything for a specified Active Record object. Example
# (post is a new record that has a title using VARCHAR and a body using TEXT):
# form("post") =>
- # <form action='create' method='POST'>
+ # <form action='/post/create' method='POST'>
# <p>
# <label for="post_title">Title</label><br />
# <input id="post_title" name="post[title]" size="30" type="text" value="Hello World" />
@@ -44,14 +44,14 @@ module ActionView
# form("entry", :action => "sign", :input_block =>
# Proc.new { |record, column| "#{column.human_name}: #{input(record, column.name)}<br />" }) =>
#
- # <form action='sign' method='POST'>
+ # <form action='/post/sign' method='POST'>
# Message:
# <input id="post_title" name="post[title]" size="30" type="text" value="Hello World" /><br />
# <input type='submit' value='Sign' />
# </form>
def form(record_name, options = {})
record = instance_eval("@#{record_name}")
- action = options[:action] || (record.new_record? ? "create" : "update")
+ action = url_for(:action => options[:action] || (record.new_record? ? "create" : "update"))
id_field = record.new_record? ? "" : InstanceTag.new(record_name, "id", self).to_input_field_tag("hidden")
"<form action='#{action}' method='POST'>" +