From: Jakub Narebski Date: Mon, 28 Aug 2006 21:17:31 +0000 (+0200) Subject: gitweb: Add local time and timezone to git_print_authorship X-Git-Url: https://git.ladys.computer/Gitweb/commitdiff_plain/5770644d14cff4e096df5f36ccf3c8f490c5a7b6eeab23cbf13c1e0cbf49ddda?ds=inline gitweb: Add local time and timezone to git_print_authorship Add local time (hours and minutes) and local timezone to the output of git_print_authorship command, used by git_commitdiff. The code was taken from git_commit subroutine. Signed-off-by: Jakub Narebski Signed-off-by: Junio C Hamano --- diff --git a/gitweb.perl b/gitweb.perl index 0994203..2701317 100755 --- a/gitweb.perl +++ b/gitweb.perl @@ -1358,10 +1358,18 @@ sub git_print_header_div { sub git_print_authorship { my $co = shift; - my %ad = parse_date($co->{'author_epoch'}); + my %ad = parse_date($co->{'author_epoch'}, $co->{'author_tz'}); print "
" . esc_html($co->{'author_name'}) . - " [$ad{'rfc2822'}]
\n"; + " [$ad{'rfc2822'}"; + if ($ad{'hour_local'} < 6) { + printf(" (%02d:%02d %s)", + $ad{'hour_local'}, $ad{'minute_local'}, $ad{'tz_local'}); + } else { + printf(" (%02d:%02d %s)", + $ad{'hour_local'}, $ad{'minute_local'}, $ad{'tz_local'}); + } + print "]\n"; } sub git_print_page_path {