about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--cmd.c2
-rw-r--r--ui-summary.c2
2 files changed, 3 insertions, 1 deletions
diff --git a/cmd.c b/cmd.c index 4f8e71d..928c8aa 100644 --- a/cmd.c +++ b/cmd.c
@@ -170,7 +170,7 @@ struct cgit_cmd *cgit_get_cmd(void)
170 def_cmd(repolist, 0, 0, 0, 0), 170 def_cmd(repolist, 0, 0, 0, 0),
171 def_cmd(snapshot, 1, 0, 0, 0), 171 def_cmd(snapshot, 1, 0, 0, 0),
172 def_cmd(stats, 1, 0, 1, 0), 172 def_cmd(stats, 1, 0, 1, 0),
173 def_cmd(summary, 1, 1, 0, 0), 173 def_cmd(summary, 1, 0, 0, 0),
174 def_cmd(tag, 1, 1, 0, 0), 174 def_cmd(tag, 1, 1, 0, 0),
175 def_cmd(tree, 1, 1, 1, 0), 175 def_cmd(tree, 1, 1, 1, 0),
176 }; 176 };
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'>&nbsp;</td></tr>", columns); 54 htmlf("<tr class='nohover'><td colspan='%d'>&nbsp;</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. */