# HG changeset patch # User Sascha Teichmann # Date 1284796253 0 # Node ID 9c7e1d957d6b873bc36891f7b9b0d0d3e969d6bb # Parent e97e8dd52a0ce4c7252dfa539f46747f8f72e98e sawmill: Not all displayed times are in UTC so the general 'Z's at all times/dates are removed. Now it is only mentioned that the times in the main table are in UTC. To reduce the optical noise this is done by simple comments in the date rows. diff -r e97e8dd52a0c -r 9c7e1d957d6b contrib/sawmill/web/templates/details.html --- a/contrib/sawmill/web/templates/details.html Fri Sep 17 15:45:53 2010 +0000 +++ b/contrib/sawmill/web/templates/details.html Sat Sep 18 07:50:53 2010 +0000 @@ -90,7 +90,7 @@ def pretty_time(t, format="%H:%M:%S"): if not t: return "<unknown>" - return t.strftime(format)+"Z" + return t.strftime(format) def pretty_timedelta(a, b): if a is None or b is None: return "<unknown>" @@ -150,7 +150,7 @@ if curr_date != last_date: last_date = curr_date %> -<%= pretty_time(last_date, "%Y-%m-%d") %> +<%= pretty_time(last_date, "%Y-%m-%d") %> (times in UTC) <% # date changed %>