summaryrefslogtreecommitdiff
path: root/urmoms.c
diff options
context:
space:
mode:
authorEivind Uggedal <eivind@uggedal.com>2015-12-10 22:35:39 +0000
committerHiltjo Posthuma <hiltjo@codemadness.org>2015-12-10 23:40:13 +0100
commit57d70b0a2d945470402b9a9a61ce72289025a36c (patch)
tree2766ff03d7ab5c8bd65650223121c61e1f6e2057 /urmoms.c
parent0a4451bc150154cfb0390f242860d4b66930e1bd (diff)
Right align numbers in tables
Diffstat (limited to 'urmoms.c')
-rw-r--r--urmoms.c13
1 files changed, 7 insertions, 6 deletions
diff --git a/urmoms.c b/urmoms.c
index 0b0cbe6..de49636 100644
--- a/urmoms.c
+++ b/urmoms.c
@@ -413,8 +413,9 @@ writelog(FILE *fp)
git_revwalk_simplify_first_parent(w);
/* TODO: also make "expanded" log ? (with message body) */
- fputs("<table id=\"log\"><thead>\n<tr><td>Age</td><td>Commit message</td><td>Author</td>"
- "<td>Files</td><td>+</td><td>-</td></tr>\n</thead><tbody>\n", fp);
+ fputs("<table id=\"log\"><thead>\n<tr><td>Age</td><td>Commit message</td>"
+ "<td>Author</td><td>Files</td><td class=\"num\">+</td>"
+ "<td class=\"num\">-</td></tr>\n</thead><tbody>\n", fp);
while (!git_revwalk_next(&id, w)) {
relpath = "";
@@ -438,11 +439,11 @@ writelog(FILE *fp)
fputs("</td><td>", fp);
if (ci->author)
xmlencode(fp, ci->author->name, strlen(ci->author->name));
- fputs("</td><td>", fp);
+ fputs("</td><td class=\"num\">", fp);
fprintf(fp, "%zu", ci->filecount);
- fputs("</td><td>", fp);
+ fputs("</td><td class=\"num\">", fp);
fprintf(fp, "+%zu", ci->addcount);
- fputs("</td><td>", fp);
+ fputs("</td><td class=\"num\">", fp);
fprintf(fp, "-%zu", ci->delcount);
fputs("</td></tr>\n", fp);
@@ -610,7 +611,7 @@ writefiles(FILE *fp)
xmlencode(fp, entry->path, strlen(entry->path));
fputs(".html\">", fp);
xmlencode(fp, entry->path, strlen(entry->path));
- fputs("</a></td><td>", fp);
+ fputs("</a></td><td class=\"num\">", fp);
fprintf(fp, "%" PRIu64, entry->file_size);
fputs("</td></tr>\n", fp);