diff options
author | Jakub Narebski <jnareb@gmail.com> | 2011-04-28 21:04:08 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2011-05-24 11:22:45 -0700 |
commit | ce71b07632c71c2e6f4732abd3db6d59fb1bb924 (patch) | |
tree | 232044b4871981b8636681be8f6597027bb1e45c /gitweb | |
parent | 256b7b4883231ae9c7f24f2cb4170f61e00704e1 (diff) | |
download | git-ce71b07632c71c2e6f4732abd3db6d59fb1bb924.tar.gz |
gitweb: Unify the way long timestamp is displayed
format_timestamp_html loses its "-localtime => 1" option, and now
always print the local time (in author/comitter/tagger local
timezone), with "atnight" warning if needed.
This means that both 'summary' and 'log' views now display localtime.
In the case of 'log' view this can be thought as an improvement, as
now one can easily see which commits in a series are made "atnight"
and should be examined closer.
Signed-off-by: Jakub Narebski <jnareb@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'gitweb')
-rwxr-xr-x | gitweb/gitweb.perl | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/gitweb/gitweb.perl b/gitweb/gitweb.perl index 7329db289c..67bcfe894e 100755 --- a/gitweb/gitweb.perl +++ b/gitweb/gitweb.perl @@ -3939,11 +3939,9 @@ sub git_print_section { } sub format_timestamp_html { - my ($date, %opts) = @_; + my $date = shift; my $strtime = $date->{'rfc2822'}; - return $strtime unless $opts{'-localtime'}; - my $localtime_format = '(%02d:%02d %s)'; if ($date->{'hour_local'} < 6) { $localtime_format = '(<span class="atnight">%02d:%02d</span> %s)'; @@ -3965,7 +3963,7 @@ sub git_print_authorship { my %ad = parse_date($co->{'author_epoch'}, $co->{'author_tz'}); print "<$tag class=\"author_date\">" . format_search_author($author, "author", esc_html($author)) . - " [".format_timestamp_html(\%ad, %opts)."]". + " [".format_timestamp_html(\%ad)."]". git_get_avatar($co->{'author_email'}, -pad_before => 1) . "</$tag>\n"; } @@ -3992,7 +3990,7 @@ sub git_print_authorship_rows { "</td></tr>\n" . "<tr>" . "<td></td><td>" . - format_timestamp_html(\%wd, -localtime=>1) . + format_timestamp_html(\%wd) . "</td>" . "</tr>\n"; } |