stagit
Personal fork of stagit
git clone git://mccd.space/stagitcommit c99ef144ff30d506c51ff426fef613ca2ea3f550
parent d5168a17cd9541b81bfc4d331e41af43fc4774ef
Author: Marc <marc@coquand.email>
Date: Sun, 21 Jun 2026 11:48:17 +0200
Skip owner in stagit
Diffstat:
1 file changed, 1 insertion(+), 3 deletions(-)
diff --git a/stagit-index.c b/stagit-index.c
@@ -110,7 +110,7 @@ writeheader(FILE *fp)
fputs("</span></td></tr><tr><td>\n"
"</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>"
+ "<tr><td><b>Name</b></td><td><b>Description</b></td>"
"<td><b>Last commit</b></td></tr>"
"</thead><tbody>\n", fp);
}
@@ -156,8 +156,6 @@ writelog(FILE *fp)
fputs("</a></td><td>", fp);
xmlencode(fp, description, strlen(description));
fputs("</td><td>", fp);
- xmlencode(fp, owner, strlen(owner));
- fputs("</td><td>", fp);
if (author)
printtimeshort(fp, &(author->when));
fputs("</td></tr>", fp);