stagit

stagit fork
git clone git://git.mdnr.space/stagit
Log | Files | Refs | README | LICENSE

commit e1d900c90ab723c8a2cf6bc21b74fbd6b5cc573b
parent 293e00857a1605229efa888988392d1c16f67e63
Author: mdnrz <mehdeenoroozi@gmail.com>
Date:   Sat, 13 Dec 2025 21:10:43 +0330

remove owner from index list

Diffstat:
Mstagit-index.c | 13+++++++------
1 file changed, 7 insertions(+), 6 deletions(-)

diff --git a/stagit-index.c b/stagit-index.c @@ -110,7 +110,8 @@ 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>" + // "<tr><td><b>Name</b></td><td><b>Description</b></td><td><b>Owner</b></td>" "<td><b>Last commit</b></td></tr>" "</thead><tbody>\n", fp); } @@ -156,11 +157,11 @@ 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); + // xmlencode(fp, owner, strlen(owner)); + // fputs("</td><td>", fp); + // if (author) + // printtimeshort(fp, &(author->when)); + // fputs("</td></tr>", fp); git_commit_free(commit); err: