aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_view/helpers/tag_helper.rb
diff options
context:
space:
mode:
Diffstat (limited to 'actionpack/lib/action_view/helpers/tag_helper.rb')
-rw-r--r--actionpack/lib/action_view/helpers/tag_helper.rb29
1 files changed, 15 insertions, 14 deletions
diff --git a/actionpack/lib/action_view/helpers/tag_helper.rb b/actionpack/lib/action_view/helpers/tag_helper.rb
index 8d3f6be04c..f222e43adc 100644
--- a/actionpack/lib/action_view/helpers/tag_helper.rb
+++ b/actionpack/lib/action_view/helpers/tag_helper.rb
@@ -8,6 +8,8 @@ module ActionView
module TagHelper
include ERB::Util
+ BOOLEAN_ATTRIBUTES = Set.new(%w(disabled readonly multiple))
+
# Returns an empty HTML tag of type +name+ which by default is XHTML
# compliant. Setting +open+ to true will create an open tag compatible
# with HTML 4.0 and below. Add HTML attributes by passing an attributes
@@ -97,29 +99,28 @@ module ActionView
private
def content_tag_string(name, content, options)
- tag_options = options ? tag_options(options) : ""
+ tag_options = tag_options(options) if options
"<#{name}#{tag_options}>#{content}</#{name}>"
end
-
- def tag_options(options)
- cleaned_options = convert_booleans(options.stringify_keys.reject {|key, value| value.nil?})
- ' ' + cleaned_options.map {|key, value| %(#{key}="#{escape_once(value)}")}.sort * ' ' unless cleaned_options.empty?
- end
- def convert_booleans(options)
- %w( disabled readonly multiple ).each { |a| boolean_attribute(options, a) }
- options
+ def tag_options(options)
+ unless options.blank?
+ attrs = []
+ options.each do |key, value|
+ next unless value
+ key = key.to_s
+ value = BOOLEAN_ATTRIBUTES.include?(key) ? key : escape_once(value)
+ attrs << %(#{key}="#{value}")
+ end
+ " #{attrs.sort * ' '}" unless attrs.empty?
+ end
end
- def boolean_attribute(options, attribute)
- options[attribute] ? options[attribute] = attribute : options.delete(attribute)
- end
-
# Fix double-escaped entities, such as &amp;amp;, &amp;#123;, etc.
def fix_double_escape(escaped)
escaped.gsub(/&amp;([a-z]+|(#\d+));/i) { "&#{$1};" }
end
-
+
def block_is_within_action_view?(block)
eval("defined? _erbout", block.binding)
end