tNote timezone in table header - stagit - static git page generator
 (HTM) git clone git://src.adamsgaard.dk/stagit
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
 (DIR) commit 4e31f0fbbe6bf3b7836bf3e0f4a7087dbbf91e9c
 (DIR) parent 09a04a8ab8624322a3dd79cedcdb8155f672c6d6
 (HTM) Author: Anders Damsgaard <anders@adamsgaard.dk>
       Date:   Thu,  2 Jan 2020 22:18:05 +0100
       
       Note timezone in table header
       
       Diffstat:
         M stagit-index.c                      |       2 +-
         M stagit.c                            |       2 +-
       
       2 files changed, 2 insertions(+), 2 deletions(-)
       ---
 (DIR) diff --git a/stagit-index.c b/stagit-index.c
       t@@ -86,7 +86,7 @@ writeheader(FILE *fp)
                        "</td></tr>\n</table>\n<hr/>\n<div id=\"content\">\n"
                        "<table id=\"index\"><thead>\n"
                        "<tr><td><b>Name</b></td><td><b>Description</b></td><td><b>Owner</b></td>"
       -                "<td><b>Last commit</b></td></tr>"
       +                "<td><b>Last commit (UTC)</b></td></tr>"
                        "</thead><tbody>\n", fp);
        }
        
 (DIR) diff --git a/stagit.c b/stagit.c
       t@@ -1005,7 +1005,7 @@ writerefs(FILE *fp)
                                if (++count == 1) {
                                        fprintf(fp, "<h2>%s</h2><table id=\"%s\">"
                                                "<thead>\n<tr><td><b>Name</b></td>"
       -                                        "<td><b>Last commit date</b></td>"
       +                                        "<td><b>Last commit date (UTC)</b></td>"
                                                "<td><b>Author</b></td>\n</tr>\n"
                                                "</thead><tbody>\n",
                                                 titles[j], ids[j]);