refs: add link to log per branch - 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 a83a75bb18fb252a783a02353e32fd0f5ace2e6c DIR parent 465d72a6d2795bb42d5e688dcb82af5169973483 HTML Author: Hiltjo Posthuma <hiltjo@codemadness.org> Date: Sun, 3 Jan 2016 21:21:30 +0100 refs: add link to log per branch Diffstat: M stagit.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) --- DIR diff --git a/stagit.c b/stagit.c @@ -820,9 +820,11 @@ writebranches(FILE *fp) relpath = ""; - fputs("<tr><td>", fp); + fputs("<tr><td><a href=\"log-", fp); xmlencode(fp, branchname, strlen(branchname)); - fputs("</td><td>", fp); + fputs(".html\">", fp); + xmlencode(fp, branchname, strlen(branchname)); + fputs("</a></td><td>", fp); if (ci->author) printtimeshort(fp, &(ci->author->when)); fputs("</td><td>", fp);