From: Eric Wong Date: Sun, 2 Nov 2014 23:26:33 +0000 (+0000) Subject: view: add time to entries older than one day X-Git-Tag: v1.0.0~1099 X-Git-Url: http://www.git.stargrave.org/?a=commitdiff_plain;h=e09d9faf6056e1f5748abeafe682c6e1c30558ba;p=public-inbox.git view: add time to entries older than one day This is occasionally useful and we're not as starved for screen space now now that sender+timestamps are on a separate line. --- diff --git a/lib/PublicInbox/View.pm b/lib/PublicInbox/View.pm index b943c4ce..e76d904e 100644 --- a/lib/PublicInbox/View.pm +++ b/lib/PublicInbox/View.pm @@ -68,12 +68,13 @@ sub index_entry { my $pfx = (' ' x $level); my $ts = $mime->header('X-PI-Date'); - my $fmt = '%H:%M UTC'; + my $time = '%H:%M UTC'; + my $fmt = $time; if ($now > ($ts + (365 * 24 * 60 * 60))) { # doesn't have to be exactly 1 year - $fmt = '%Y/%m/%d'; + $fmt = '%Y/%m/%d ' . $time; } elsif ($now > ($ts + (24 * 60 * 60))) { - $fmt = '%m/%d'; + $fmt = '%m/%d ' . $time; } $ts = POSIX::strftime($fmt, gmtime($ts));