Rename “Age” column headers into “Date” - stagit-gopher - A git gopher frontend. (mirror) HTML git clone git://bitreich.org/stagit-gopher/ git://enlrupgkhuxnvlhsf6lc3fziv5h2hhfrinws65d7roiv6bfj7d652fid.onion/stagit-gopher/ DIR Log DIR Files DIR Refs DIR Tags DIR README DIR LICENSE --- DIR commit 75b4b23c9f0331fa933392e78fb387b08c740017 DIR parent 502b95ce68ef3e08fb536a0d22c267dcd3e9c7fc HTML Author: Quentin Rameau <quinq@fifth.space> Date: Thu, 21 Jan 2016 18:34:14 +0100 Rename “Age” column headers into “Date” Diffstat: M stagit.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- DIR diff --git a/stagit.c b/stagit.c @@ -443,7 +443,7 @@ writelog(FILE *fp, const git_oid *oid) git_revwalk_sorting(w, GIT_SORT_TIME); git_revwalk_simplify_first_parent(w); - fputs("<table id=\"log\"><thead>\n<tr><td>Age</td><td>Commit message</td>" + fputs("<table id=\"log\"><thead>\n<tr><td>Date</td><td>Commit message</td>" "<td>Author</td><td>Files</td><td class=\"num\">+</td>" "<td class=\"num\">-</td></tr>\n</thead><tbody>\n", fp); @@ -817,7 +817,7 @@ writerefs(FILE *fp) /* print header if it has an entry (first). */ if (++count == 1) { fprintf(fp, "<h2>%s</h2><table id=\"%s\"><thead>\n<tr><td>%s</td>" - "<td>Age</td><td>Author</td>\n</tr>\n</thead><tbody>\n", + "<td>Last commit date</td><td>Author</td>\n</tr>\n</thead><tbody>\n", titles[j], ids[j], cols[j]); }