diff options
author | John Keeping | 2015-08-14 12:47:18 +0100 |
---|---|---|
committer | Jason A. Donenfeld | 2015-08-14 15:46:51 +0200 |
commit | a3daa41b78fc2c528c9a42630ab95451ddb87358 (patch) | |
tree | 6aef1a4cd112c9e0a1a1a190a7bdaf57f8f68aca /ui-summary.c | |
parent | 892c5441f4af2f53a3b1906c4d7e458829e0cf0a (diff) | |
download | cgit-a3daa41b78fc2c528c9a42630ab95451ddb87358.tar.gz cgit-a3daa41b78fc2c528c9a42630ab95451ddb87358.tar.bz2 cgit-a3daa41b78fc2c528c9a42630ab95451ddb87358.zip |
summary: move layout into page function
Signed-off-by: John Keeping <john@keeping.me.uk>
Diffstat (limited to 'ui-summary.c')
-rw-r--r-- | ui-summary.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ui-summary.c b/ui-summary.c index cd1fef5..fb04dc3 100644 --- a/ui-summary.c +++ b/ui-summary.c | |||
@@ -48,6 +48,7 @@ void cgit_print_summary(void) | |||
48 | if (ctx.repo->enable_log_linecount) | 48 | if (ctx.repo->enable_log_linecount) |
49 | columns++; | 49 | columns++; |
50 | 50 | ||
51 | cgit_print_layout_start(); | ||
51 | html("<table summary='repository info' class='list nowrap'>"); | 52 | html("<table summary='repository info' class='list nowrap'>"); |
52 | cgit_print_branches(ctx.cfg.summary_branches); | 53 | cgit_print_branches(ctx.cfg.summary_branches); |
53 | htmlf("<tr class='nohover'><td colspan='%d'> </td></tr>", columns); | 54 | htmlf("<tr class='nohover'><td colspan='%d'> </td></tr>", columns); |
@@ -60,6 +61,7 @@ void cgit_print_summary(void) | |||
60 | urls = 0; | 61 | urls = 0; |
61 | cgit_add_clone_urls(print_url); | 62 | cgit_add_clone_urls(print_url); |
62 | html("</table>"); | 63 | html("</table>"); |
64 | cgit_print_layout_end(); | ||
63 | } | 65 | } |
64 | 66 | ||
65 | /* The caller must free the return value. */ | 67 | /* The caller must free the return value. */ |