stagit
static git repository generator
git clone https://9o.is/git/stagit.git
commit 87b587c00ae97509f2426718d263e3e073a38de0 parent 51d8747e541065b1237f2c033b978b15ec6b037e Author: Jul <jul@9o.is> Date: Tue, 6 Jan 2026 10:35:51 -0500 remove owner column from index Diffstat:
| M | stagit-index.c | | | 4 | +--- |
1 file changed, 1 insertion(+), 3 deletions(-)
diff --git a/stagit-index.c b/stagit-index.c @@ -109,7 +109,7 @@ writeheader(FILE *fp) fputs("</span></td></tr><tr><td></td><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); } @@ -155,8 +155,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);