From e09d9faf6056e1f5748abeafe682c6e1c30558ba Mon Sep 17 00:00:00 2001 From: Eric Wong Date: Sun, 2 Nov 2014 23:26:33 +0000 Subject: 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. --- lib/PublicInbox/View.pm | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'lib') 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)); -- cgit v1.2.3-24-ge0c7