improve HTML code - stagit-gopher - A git gopher frontend. (mirror)
 (HTM) git clone git://bitreich.org/stagit-gopher/ git://enlrupgkhuxnvlhsf6lc3fziv5h2hhfrinws65d7roiv6bfj7d652fid.onion/stagit-gopher/
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) Tags
 (DIR) README
 (DIR) LICENSE
       ---
 (DIR) commit 0808028312c76abf2fdd51678bd8ce28c2e8b2a5
 (DIR) parent 53d6b47cc28903f9344245a36d33be6d0a6eee45
 (HTM) Author: Hiltjo Posthuma <hiltjo@codemadness.org>
       Date:   Mon,  7 Dec 2015 19:00:30 +0100
       
       improve HTML code
       
       Diffstat:
         M urmoms.c                            |       4 ++--
       
       1 file changed, 2 insertions(+), 2 deletions(-)
       ---
 (DIR) diff --git a/urmoms.c b/urmoms.c
       @@ -510,7 +510,7 @@ 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);
       +        fputs("<table><thead>\n<tr><td>Mode</td><td>Name</td><td align=\"right\">Size</td></tr>\n</thead><tbody>\n", fp);
        
                for (i = 0; i < count; i++) {
                        entry = git_index_get_byindex(index, i);
       @@ -522,7 +522,7 @@ writefiles(FILE *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("</td></tr>\n", fp);
                }
                fputs("</tbody></table>", fp);