提交 97330be9 编写于 作者: J Jacob Schatz

Merge branch 'format-timeago-date' into 'master'

Formats timeago dates to be more friendly

Closes #27537

See merge request !9145
...@@ -167,7 +167,7 @@ module ApplicationHelper ...@@ -167,7 +167,7 @@ module ApplicationHelper
css_classes = short_format ? 'js-short-timeago' : 'js-timeago' css_classes = short_format ? 'js-short-timeago' : 'js-timeago'
css_classes << " #{html_class}" unless html_class.blank? css_classes << " #{html_class}" unless html_class.blank?
element = content_tag :time, time.to_s, element = content_tag :time, time.strftime("%b %d, %Y"),
class: css_classes, class: css_classes,
title: time.to_time.in_time_zone.to_s(:medium), title: time.to_time.in_time_zone.to_s(:medium),
datetime: time.to_time.getutc.iso8601, datetime: time.to_time.getutc.iso8601,
......
---
title: Format timeago date to short format
merge_request:
author:
...@@ -192,7 +192,7 @@ describe 'Commits' do ...@@ -192,7 +192,7 @@ describe 'Commits' do
commits = project.repository.commits(branch_name) commits = project.repository.commits(branch_name)
commits.each do |commit| commits.each do |commit|
expect(page).to have_content("committed #{commit.committed_date}") expect(page).to have_content("committed #{commit.committed_date.strftime("%b %d, %Y")}")
end end
end end
end end
......
...@@ -193,8 +193,8 @@ describe ApplicationHelper do ...@@ -193,8 +193,8 @@ describe ApplicationHelper do
describe 'time_ago_with_tooltip' do describe 'time_ago_with_tooltip' do
def element(*arguments) def element(*arguments)
Time.zone = 'UTC' Time.zone = 'UTC'
time = Time.zone.parse('2015-07-02 08:23') @time = Time.zone.parse('2015-07-02 08:23')
element = helper.time_ago_with_tooltip(time, *arguments) element = helper.time_ago_with_tooltip(@time, *arguments)
Nokogiri::HTML::DocumentFragment.parse(element).first_element_child Nokogiri::HTML::DocumentFragment.parse(element).first_element_child
end end
...@@ -204,7 +204,7 @@ describe ApplicationHelper do ...@@ -204,7 +204,7 @@ describe ApplicationHelper do
end end
it 'includes the date string' do it 'includes the date string' do
expect(element.text).to eq '2015-07-02 08:23:00 UTC' expect(element.text).to eq @time.strftime("%b %d, %Y")
end end
it 'has a datetime attribute' do it 'has a datetime attribute' do
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册