aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_view
diff options
context:
space:
mode:
authorJosh Kalderimis <josh.kalderimis@gmail.com>2011-02-13 01:13:03 +0100
committerSantiago Pastorino <santiago@wyeworks.com>2011-02-12 22:22:30 -0200
commit33cc36678b7ff5ac84407df17475e1b3ffc9a2d8 (patch)
tree1fcd7e222a78ea290736b64915ad002cf6d97e20 /actionpack/lib/action_view
parent95a5bd87cb542c534b7f2490dcfa687a1bfeec43 (diff)
downloadrails-33cc36678b7ff5ac84407df17475e1b3ffc9a2d8.tar.gz
rails-33cc36678b7ff5ac84407df17475e1b3ffc9a2d8.tar.bz2
rails-33cc36678b7ff5ac84407df17475e1b3ffc9a2d8.zip
Allow for the format of time_tag in AP to be changed via an option argument.
Signed-off-by: Santiago Pastorino <santiago@wyeworks.com>
Diffstat (limited to 'actionpack/lib/action_view')
-rw-r--r--actionpack/lib/action_view/helpers/date_helper.rb8
1 files changed, 5 insertions, 3 deletions
diff --git a/actionpack/lib/action_view/helpers/date_helper.rb b/actionpack/lib/action_view/helpers/date_helper.rb
index f47198d467..737720792a 100644
--- a/actionpack/lib/action_view/helpers/date_helper.rb
+++ b/actionpack/lib/action_view/helpers/date_helper.rb
@@ -566,7 +566,7 @@ module ActionView
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 @@ module ActionView
#
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