提交 33cc3667 编写于 作者: J Josh Kalderimis 提交者: Santiago Pastorino

Allow for the format of time_tag in AP to be changed via an option argument.

Signed-off-by: NSantiago Pastorino <santiago@wyeworks.com>
上级 95a5bd87
......@@ -566,7 +566,7 @@ def select_month(date, options = {}, html_options = {})
def select_year(date, options = {}, html_options = {})
DateTimeSelector.new(date, options, html_options).select_year
end
# Returns an html time tag for the given date or time.
#
# ==== Examples
......@@ -581,9 +581,11 @@ def select_year(date, options = {}, html_options = {})
#
def time_tag(date_or_time, *args)
options = args.extract_options!
content = args.first || I18n.l(date_or_time, :format => :long)
format = options.delete(:format) || :long
content = args.first || I18n.l(date_or_time, :format => format)
datetime = date_or_time.acts_like?(:time) ? date_or_time.xmlschema : date_or_time.rfc3339
content_tag :time, content, options.reverse_merge(:datetime => datetime)
content_tag(:time, content, options.reverse_merge(:datetime => datetime))
end
end
......
......@@ -2699,27 +2699,33 @@ def test_object_select_html_safety
assert date_select("post", "written_on", :default => Time.local(2006, 9, 19, 15, 16, 35), :include_blank => true).html_safe?
assert time_select("post", "written_on", :ignore_date => true).html_safe?
end
def test_time_tag_with_date
date = Date.today
expected = "<time datetime=\"#{date.rfc3339}\">#{I18n.l(date, :format => :long)}</time>"
assert_equal expected, time_tag(date)
end
def test_time_tag_with_time
time = Time.now
expected = "<time datetime=\"#{time.xmlschema}\">#{I18n.l(time, :format => :long)}</time>"
assert_equal expected, time_tag(time)
end
def test_time_tag_pubdate_option
assert_match /<time.*pubdate="pubdate">.*<\/time>/, time_tag(Time.now, :pubdate => true)
end
def test_time_tag_with_given_text
assert_match /<time.*>Right now<\/time>/, time_tag(Time.now, 'Right now')
end
def test_time_tag_with_different_format
time = Time.now
expected = "<time datetime=\"#{time.xmlschema}\">#{I18n.l(time, :format => :short)}</time>"
assert_equal expected, time_tag(time, :format => :short)
end
protected
def with_env_tz(new_tz = 'US/Eastern')
old_tz, ENV['TZ'] = ENV['TZ'], new_tz
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册