diff options
author | Hiltjo Posthuma <hiltjo@codemadness.org> | 2015-12-07 16:40:45 +0100 |
---|---|---|
committer | Hiltjo Posthuma <hiltjo@codemadness.org> | 2015-12-07 16:40:45 +0100 |
commit | 52151038885c99a2ddf6b259e6c29601bd7051ef (patch) | |
tree | 52a6bb3f3dd67a58f83ac9c27703584ee32951af /urmoms.c | |
parent | 45d8d2f4303b0953f8267116eecde019d1ba1feb (diff) |
print file as table, add link
Diffstat (limited to 'urmoms.c')
-rw-r--r-- | urmoms.c | 14 |
1 files changed, 12 insertions, 2 deletions
@@ -503,11 +503,21 @@ writefiles(FILE *fp) git_repository_index(&index, repo); count = git_index_entrycount(index); + fputs("<table><thead><tr><td>Mode</td><td>Name</td><td>Size</td></tr></thead><tbody>", fp); + for (i = 0; i < count; i++) { entry = git_index_get_byindex(index, i); - fprintf(fp, "name: %s, size: %" PRIu64 ", mode: %u\n", - entry->path, entry->file_size, entry->mode); + fputs("<tr><td>", fp); + fprintf(fp, "%u", entry->mode); /* TODO: fancy print, like: "-rw-r--r--" */ + fprintf(fp, "</td><td><a href=\"%sfile/", relpath); + xmlencode(fp, entry->path, strlen(entry->path)); + fputs("\">", fp); + xmlencode(fp, entry->path, strlen(entry->path)); + fputs("</a></td><td align=\"right\">", fp); + fprintf(fp, "%" PRIu64, entry->file_size); + fputs("</td></tr>", fp); } + fputs("</tbody></table>", fp); return 0; } |