| Date: Tue, 8 Dec 2015 00:34:32 +0100
Remove hardcoded right-align
Dramatically reduces the filesize. There also was no reason to have
the aligns.
It now is even easier to read how many lines have changed in the commits
and given the table doesn't expand itself over the size of its entries,
we're cool anyway.
Diffstat:
M urmoms.c | 16 ++++++++--------
1 file changed, 8 insertions(+), 8 deletions(-)
--- |
| @@ -370,15 +370,15 @@ writelog(FILE *fp)
git_revwalk_push_head(w);
/* TODO: also make "expanded" log ? (with message body) */
- fputs(" \nAge | Commit message | Author | "
- "Files | + | - | \n\n", fp);
+ fputs("\nAge | Commit message | Author | "
+ "Files | + | - | \n\n", fp);
while (!git_revwalk_next(&id, w)) {
relpath = "";
if (!(ci = commitinfo_getbyoid(&id)))
break;
- fputs("", fp);
+ fputs(" | ", fp);
if (ci->author)
printtimeshort(fp, &(ci->author->when));
fputs(" | ", fp);
@@ -395,11 +395,11 @@ writelog(FILE *fp)
fputs(" | ", fp);
if (ci->author)
xmlencode(fp, ci->author->name, strlen(ci->author->name));
- fputs(" | ", fp);
+ fputs(" | ", fp);
fprintf(fp, "%zu", ci->filecount);
- fputs(" | ", fp);
+ fputs(" | ", fp);
fprintf(fp, "+%zu", ci->addcount);
- fputs(" | ", fp);
+ fputs(" | ", fp);
fprintf(fp, "-%zu", ci->delcount);
fputs(" | \n", fp);
@@ -512,7 +512,7 @@ writefiles(FILE *fp)
size_t count, i;
fputs("\n"
- "Mode | Name | Size | \n"
+ "Mode | Name | Size | \n"
"\n", fp);
git_repository_index(&index, repo);
@@ -526,7 +526,7 @@ writefiles(FILE *fp)
xmlencode(fp, entry->path, strlen(entry->path));
fputs("\">", fp);
xmlencode(fp, entry->path, strlen(entry->path));
- fputs("", fp);
+ fputs(" | ", fp);
fprintf(fp, "%" PRIu64, entry->file_size);
fputs(" | \n", fp);
}
|