summaryrefslogtreecommitdiffstats
path: root/extensions
diff options
context:
space:
mode:
authorDylan Hardison <dylan@mozilla.com>2016-06-09 21:28:26 +0200
committerDylan Hardison <dylan@mozilla.com>2016-06-09 21:28:26 +0200
commit37b2bd154be263e95edb3ca66420e0357535b183 (patch)
treed871ac7918c8ea7294daaa6362e53c8237875a45 /extensions
parentd2507d158fbc961a2ccabdcd384edf18adff7032 (diff)
downloadbugzilla-37b2bd154be263e95edb3ca66420e0357535b183.tar.gz
bugzilla-37b2bd154be263e95edb3ca66420e0357535b183.tar.xz
Bug 1209219 - Add an option to the disable the "X months ago" format for dates
Diffstat (limited to 'extensions')
-rw-r--r--extensions/BugModal/Extension.pm6
-rw-r--r--extensions/BugModal/template/en/default/bug_modal/activity_stream.html.tmpl4
-rw-r--r--extensions/BugModal/template/en/default/bug_modal/attachments.html.tmpl9
-rw-r--r--extensions/BugModal/template/en/default/bug_modal/edit.html.tmpl10
-rw-r--r--extensions/BugModal/template/en/default/bug_modal/flags.html.tmpl9
-rw-r--r--extensions/BugModal/template/en/default/bug_modal/rel_time.html.tmpl15
-rw-r--r--extensions/BugModal/template/en/default/hook/global/setting-descs-settings.none.tmpl1
-rw-r--r--extensions/BugModal/web/bug_modal.js6
8 files changed, 43 insertions, 17 deletions
diff --git a/extensions/BugModal/Extension.pm b/extensions/BugModal/Extension.pm
index b1700fddd..01faf06d5 100644
--- a/extensions/BugModal/Extension.pm
+++ b/extensions/BugModal/Extension.pm
@@ -342,6 +342,12 @@ sub install_before_final_checks {
default => 'off',
category => 'User Interface'
});
+ add_setting({
+ name => 'ui_use_absolute_time',
+ options => ['on', 'off'],
+ default => 'off',
+ category => 'User Interface',
+ });
# ensure the correct skin is being used
my $dbh = Bugzilla->dbh;
diff --git a/extensions/BugModal/template/en/default/bug_modal/activity_stream.html.tmpl b/extensions/BugModal/template/en/default/bug_modal/activity_stream.html.tmpl
index 807f5772f..edec45428 100644
--- a/extensions/BugModal/template/en/default/bug_modal/activity_stream.html.tmpl
+++ b/extensions/BugModal/template/en/default/bug_modal/activity_stream.html.tmpl
@@ -158,7 +158,11 @@
<table class="layout-table change-head default-collapsed" id="cc-[% comment.count FILTER none %]">
<tr>
<td class="comment-collapse-reason"
+ [% IF user.setting("ui_use_absolute_time") == "on" %]
+ title="[% comment.author.moz_nick FILTER html %] [[% comment.creation_ts FILTER time("%Y-%m-%d %H:%M %Z") FILTER html %]]">
+ [% ELSE %]
title="[% comment.author.moz_nick FILTER html %] [[% comment.creation_ts FILTER time_duration FILTER html %]]">
+ [% END %]
Comment hidden ([% comment.collapsed_reason FILTER html %])
</td>
<td class="comment-actions">
diff --git a/extensions/BugModal/template/en/default/bug_modal/attachments.html.tmpl b/extensions/BugModal/template/en/default/bug_modal/attachments.html.tmpl
index f9d219497..0604b41bc 100644
--- a/extensions/BugModal/template/en/default/bug_modal/attachments.html.tmpl
+++ b/extensions/BugModal/template/en/default/bug_modal/attachments.html.tmpl
@@ -68,8 +68,13 @@
[% ELSE %]
<span
[% END %]
- class="flag-name-status rel-time-title[% " activity-ref" IF activity_id %]"
- title="[% flag.creation_date FILTER time_duration FILTER html %]"
+ [% IF user.setting("ui_use_absolute_time") == "on" %]
+ class="flag-name-status abs-time-title[% " activity-ref" IF activity_id %]"
+ title="[% flag.creation_date FILTER time("%Y-%m-%d %H:%M %Z") FILTER html %]"
+ [% ELSE %]
+ class="flag-name-status rel-time-title[% " activity-ref" IF activity_id %]"
+ title="[% flag.creation_date FILTER time_duration FILTER html %]"
+ [% END %]
data-time="[% flag.creation_date FILTER epoch FILTER none %]"
>
[%+ flag.type.name FILTER html %][% flag.status FILTER none %]
diff --git a/extensions/BugModal/template/en/default/bug_modal/edit.html.tmpl b/extensions/BugModal/template/en/default/bug_modal/edit.html.tmpl
index f18d0e7b7..f78f74e0b 100644
--- a/extensions/BugModal/template/en/default/bug_modal/edit.html.tmpl
+++ b/extensions/BugModal/template/en/default/bug_modal/edit.html.tmpl
@@ -245,8 +245,14 @@
[% ELSE %]
(<span
[% END %]
- class="flag-name-status rel-time-title[% " activity-ref" IF activity_id %]"
- title="[% ni.creation_date FILTER time_duration FILTER html %]"
+ <!-- time("%Y-%m-%d %H:%M %Z") -->
+ [% IF user.setting("ui_use_absolute_time") == "on" %]
+ class="flag-name-status abs-time-title[% " activity-ref" IF activity_id %]"
+ title="[% ni.creation_date FILTER time("%Y-%m-%d %H:%M %Z") FILTER html %]"
+ [% ELSE %]
+ class="flag-name-status rel-time-title[% " activity-ref" IF activity_id %]"
+ title="[% ni.creation_date FILTER time_duration FILTER html %]"
+ [% END %]
data-time="[% ni.creation_date FILTER epoch FILTER none %]"
>NeedInfo
[% activity_id ? "</a>" : "</span>" %]
diff --git a/extensions/BugModal/template/en/default/bug_modal/flags.html.tmpl b/extensions/BugModal/template/en/default/bug_modal/flags.html.tmpl
index 53b5c08ca..6c49ef784 100644
--- a/extensions/BugModal/template/en/default/bug_modal/flags.html.tmpl
+++ b/extensions/BugModal/template/en/default/bug_modal/flags.html.tmpl
@@ -84,8 +84,13 @@
[% ELSE %]
<span
[% END %]
- class="rel-time-title[% " activity-ref" IF activity_id %]"
- title="[% f.creation_date FILTER time_duration FILTER html %]"
+ [% IF user.setting("ui_use_absolute_time") == "on" %]
+ class="abs-time-title[% " activity-ref" IF activity_id %]"
+ title="[% f.creation_date FILTER time('%Y-%m-%d %H:%M %Z') %]"
+ [% ELSE %]
+ class="rel-time-title[% " activity-ref" IF activity_id %]"
+ title="[% f.creation_date FILTER time_duration FILTER html %]"
+ [% END %]
data-time="[% f.creation_date FILTER epoch FILTER none %]"
>
[% f.type.name FILTER html %]
diff --git a/extensions/BugModal/template/en/default/bug_modal/rel_time.html.tmpl b/extensions/BugModal/template/en/default/bug_modal/rel_time.html.tmpl
index 26a1b709b..8f8f4925b 100644
--- a/extensions/BugModal/template/en/default/bug_modal/rel_time.html.tmpl
+++ b/extensions/BugModal/template/en/default/bug_modal/rel_time.html.tmpl
@@ -9,13 +9,12 @@
[%#
# ts: timestamp
#%]
-
+[% IF user.setting("ui_use_absolute_time") == "on" -%]
+<span class="rel-time-title" title="[% ts FILTER time_duration FILTER html %]" data-time="[% ts FILTER epoch FILTER none %]">
+ [%~ ts FILTER time("%Y-%m-%d %H:%M %Z"); ~%]
+</span>
+[% ELSE -%]
<span class="rel-time" title="[% ts FILTER time("%Y-%m-%d %H:%M %Z") %]" data-time="[% ts FILTER epoch FILTER none %]">
- [%~
- IF content.defined;
- content;
- ELSE;
- ts FILTER time_duration FILTER html;
- END;
- ~%]
+ [%~ ts FILTER time_duration FILTER html; ~%]
</span>
+[% END -%] \ No newline at end of file
diff --git a/extensions/BugModal/template/en/default/hook/global/setting-descs-settings.none.tmpl b/extensions/BugModal/template/en/default/hook/global/setting-descs-settings.none.tmpl
index 4ca9c3003..0a253b282 100644
--- a/extensions/BugModal/template/en/default/hook/global/setting-descs-settings.none.tmpl
+++ b/extensions/BugModal/template/en/default/hook/global/setting-descs-settings.none.tmpl
@@ -9,4 +9,5 @@
[%
setting_descs.ui_experiments = "Use experimental user interface"
setting_descs.ui_remember_collapsed = "Remember visibility of header sections when viewing a bug"
+ setting_descs.ui_use_absolute_time = "Use absolute format instead of relative time when viewing a bug"
%]
diff --git a/extensions/BugModal/web/bug_modal.js b/extensions/BugModal/web/bug_modal.js
index 6e36c994d..0dd9305c4 100644
--- a/extensions/BugModal/web/bug_modal.js
+++ b/extensions/BugModal/web/bug_modal.js
@@ -54,7 +54,7 @@ $(function() {
var relative_timer_duration = 60000;
var relative_timer_id = window.setInterval(relativeTimer, relative_timer_duration);
$(document).on('show.visibility', function() {
- relative_timer_id = window.setInterval(relativeTimer, relative_timer_duration)
+ relative_timer_id = window.setInterval(relativeTimer, relative_timer_duration);
});
$(document).on('hide.visibility', function() {
window.clearInterval(relative_timer_id);
@@ -148,8 +148,8 @@ $(function() {
$(this).hide();
});
- // use non-native tooltips for relative times and bug summaries
- $('.rel-time, .rel-time-title, .bz_bug_link, .tt').tooltip({
+ // use non-native tooltips for relative/absolute times and bug summaries
+ $('.rel-time, .rel-time-title, .abs-time-title, .bz_bug_link, .tt').tooltip({
position: { my: "left top+8", at: "left bottom", collision: "flipfit" },
show: { effect: 'none' },
hide: { effect: 'none' }