Skip to content

Commit

Permalink
Fixed that FormTagHelper generates illegal html if name contains e.g.…
Browse files Browse the repository at this point in the history
… square brackets [#1238 state:committed]

Signed-off-by: David Heinemeier Hansson <david@loudthinking.com>
  • Loading branch information
geekq authored and dhh committed Nov 4, 2008
1 parent b2cd318 commit 5fad229
Show file tree
Hide file tree
Showing 3 changed files with 46 additions and 5 deletions.
2 changes: 2 additions & 0 deletions actionpack/CHANGELOG
@@ -1,5 +1,7 @@
*2.2.1 [RC2 or 2.2 final]*

* Fixed that FormTagHelper generated illegal html if name contained square brackets #1238 [Vladimir Dobriakov]

* Fix regression bug that made date_select and datetime_select raise a Null Pointer Exception when a nil date/datetime was passed and only month and year were displayed #1289 [Bernardo Padua/Tor Erik]

* Simplified the logging format for parameters (don't include controller, action, and format as duplicates) [DHH]
Expand Down
14 changes: 10 additions & 4 deletions actionpack/lib/action_view/helpers/form_tag_helper.rb
Expand Up @@ -78,7 +78,7 @@ def form_tag(url_for_options = {}, options = {}, *parameters_for_url, &block)
# # <option>Paris</option><option>Rome</option></select>
def select_tag(name, option_tags = nil, options = {})
html_name = (options[:multiple] == true && !name.to_s.ends_with?("[]")) ? "#{name}[]" : name
content_tag :select, option_tags, { "name" => html_name, "id" => name }.update(options.stringify_keys)
content_tag :select, option_tags, { "name" => html_name, "id" => sanitize_to_id(name) }.update(options.stringify_keys)
end

# Creates a standard text field; use these text fields to input smaller chunks of text like a username
Expand Down Expand Up @@ -112,7 +112,7 @@ def select_tag(name, option_tags = nil, options = {})
# text_field_tag 'ip', '0.0.0.0', :maxlength => 15, :size => 20, :class => "ip-input"
# # => <input class="ip-input" id="ip" maxlength="15" name="ip" size="20" type="text" value="0.0.0.0" />
def text_field_tag(name, value = nil, options = {})
tag :input, { "type" => "text", "name" => name, "id" => name, "value" => value }.update(options.stringify_keys)
tag :input, { "type" => "text", "name" => name, "id" => sanitize_to_id(name), "value" => value }.update(options.stringify_keys)
end

# Creates a label field
Expand All @@ -130,7 +130,7 @@ def text_field_tag(name, value = nil, options = {})
# label_tag 'name', nil, :class => 'small_label'
# # => <label for="name" class="small_label">Name</label>
def label_tag(name, text = nil, options = {})
content_tag :label, text || name.to_s.humanize, { "for" => name }.update(options.stringify_keys)
content_tag :label, text || name.to_s.humanize, { "for" => sanitize_to_id(name) }.update(options.stringify_keys)
end

# Creates a hidden form input field used to transmit data that would be lost due to HTTP's statelessness or
Expand Down Expand Up @@ -282,7 +282,7 @@ def text_area_tag(name, content = nil, options = {})
# check_box_tag 'eula', 'accepted', false, :disabled => true
# # => <input disabled="disabled" id="eula" name="eula" type="checkbox" value="accepted" />
def check_box_tag(name, value = "1", checked = false, options = {})
html_options = { "type" => "checkbox", "name" => name, "id" => name, "value" => value }.update(options.stringify_keys)
html_options = { "type" => "checkbox", "name" => name, "id" => sanitize_to_id(name), "value" => value }.update(options.stringify_keys)
html_options["checked"] = "checked" if checked
tag :input, html_options
end
Expand Down Expand Up @@ -470,6 +470,12 @@ def token_tag
tag(:input, :type => "hidden", :name => request_forgery_protection_token.to_s, :value => form_authenticity_token)
end
end

# see http://www.w3.org/TR/html4/types.html#type-name
def sanitize_to_id(name)
name.to_s.gsub(']','').gsub(/[^-a-zA-Z0-9:.]/, "_")
end

end
end
end
35 changes: 34 additions & 1 deletion actionpack/test/template/form_tag_helper_test.rb
Expand Up @@ -12,12 +12,19 @@ def url_for(options)
@controller = @controller.new
end

VALID_HTML_ID = /^[A-Za-z][-_:.A-Za-z0-9]*$/ # see http://www.w3.org/TR/html4/types.html#type-name

def test_check_box_tag
actual = check_box_tag "admin"
expected = %(<input id="admin" name="admin" type="checkbox" value="1" />)
assert_dom_equal expected, actual
end

def test_check_box_tag_id_sanitized
label_elem = root_elem(check_box_tag("project[2][admin]"))
assert_match VALID_HTML_ID, label_elem['id']
end

def test_form_tag
actual = form_tag
expected = %(<form action="http://www.example.com" method="post">)
Expand Down Expand Up @@ -64,6 +71,11 @@ def test_hidden_field_tag
assert_dom_equal expected, actual
end

def test_hidden_field_tag_id_sanitized
input_elem = root_elem(hidden_field_tag("item[][title]"))
assert_match VALID_HTML_ID, input_elem['id']
end

def test_file_field_tag
assert_dom_equal "<input name=\"picsplz\" type=\"file\" id=\"picsplz\" />", file_field_tag("picsplz")
end
Expand Down Expand Up @@ -118,6 +130,11 @@ def test_select_tag_disabled
assert_dom_equal expected, actual
end

def test_select_tag_id_sanitized
input_elem = root_elem(select_tag("project[1]people", "<option>david</option>"))
assert_match VALID_HTML_ID, input_elem['id']
end

def test_text_area_tag_size_string
actual = text_area_tag "body", "hello world", "size" => "20x40"
expected = %(<textarea cols="20" id="body" name="body" rows="40">hello world</textarea>)
Expand Down Expand Up @@ -184,6 +201,11 @@ def test_text_field_tag_with_multiple_options
assert_dom_equal expected, actual
end

def test_text_field_tag_id_sanitized
input_elem = root_elem(text_field_tag("item[][title]"))
assert_match VALID_HTML_ID, input_elem['id']
end

def test_label_tag_without_text
actual = label_tag "title"
expected = %(<label for="title">Title</label>)
Expand All @@ -208,11 +230,16 @@ def test_label_tag_class_string
assert_dom_equal expected, actual
end

def test_label_tag_id_sanitized
label_elem = root_elem(label_tag("item[title]"))
assert_match VALID_HTML_ID, label_elem['for']
end

def test_boolean_optios
assert_dom_equal %(<input checked="checked" disabled="disabled" id="admin" name="admin" readonly="readonly" type="checkbox" value="1" />), check_box_tag("admin", 1, true, 'disabled' => true, :readonly => "yes")
assert_dom_equal %(<input checked="checked" id="admin" name="admin" type="checkbox" value="1" />), check_box_tag("admin", 1, true, :disabled => false, :readonly => nil)
assert_dom_equal %(<select id="people" multiple="multiple" name="people[]"><option>david</option></select>), select_tag("people", "<option>david</option>", :multiple => true)
assert_dom_equal %(<select id="people[]" multiple="multiple" name="people[]"><option>david</option></select>), select_tag("people[]", "<option>david</option>", :multiple => true)
assert_dom_equal %(<select id="people_" multiple="multiple" name="people[]"><option>david</option></select>), select_tag("people[]", "<option>david</option>", :multiple => true)
assert_dom_equal %(<select id="people" name="people"><option>david</option></select>), select_tag("people", "<option>david</option>", :multiple => nil)
end

Expand Down Expand Up @@ -283,4 +310,10 @@ def test_field_set_tag_in_erb
def protect_against_forgery?
false
end

private

def root_elem(rendered_content)
HTML::Document.new(rendered_content).root.children[0]
end
end

0 comments on commit 5fad229

Please sign in to comment.