author | Lars Hjemli <hjemli@gmail.com> | 2008-04-14 20:13:38 (UTC) |
---|---|---|
committer | Lars Hjemli <hjemli@gmail.com> | 2008-04-14 20:13:38 (UTC) |
commit | 5764fe95469f65fdee285467f0f87d188fc1a780 (patch) (unidiff) | |
tree | 0dc9e9545bd8b43fbf1a571f3ef239ff3aea771c /ui-summary.c | |
parent | 35d19bbb641aa56a21fb2c238994716c272e154f (diff) | |
download | cgit-5764fe95469f65fdee285467f0f87d188fc1a780.zip cgit-5764fe95469f65fdee285467f0f87d188fc1a780.tar.gz cgit-5764fe95469f65fdee285467f0f87d188fc1a780.tar.bz2 |
Make branches, tags and log play better together in the summary view
Signed-off-by: Lars Hjemli <hjemli@gmail.com>
-rw-r--r-- | ui-summary.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/ui-summary.c b/ui-summary.c index 0b66b52..318148a 100644 --- a/ui-summary.c +++ b/ui-summary.c | |||
@@ -18,14 +18,14 @@ void cgit_print_summary() | |||
18 | html_include(ctx.repo->readme); | 18 | html_include(ctx.repo->readme); |
19 | html("</div>"); | 19 | html("</div>"); |
20 | } | 20 | } |
21 | if (ctx.cfg.summary_log > 0) | ||
22 | cgit_print_log(ctx.qry.head, 0, ctx.cfg.summary_log, NULL, | ||
23 | NULL, NULL, 0); | ||
24 | html("<table summary='repository info' class='list nowrap'>"); | 21 | html("<table summary='repository info' class='list nowrap'>"); |
25 | if (ctx.cfg.summary_log > 0) | ||
26 | html("<tr class='nohover'><td colspan='4'> </td></tr>"); | ||
27 | cgit_print_branches(ctx.cfg.summary_branches); | 22 | cgit_print_branches(ctx.cfg.summary_branches); |
28 | html("<tr class='nohover'><td colspan='4'> </td></tr>"); | 23 | html("<tr class='nohover'><td colspan='4'> </td></tr>"); |
29 | cgit_print_tags(ctx.cfg.summary_tags); | 24 | cgit_print_tags(ctx.cfg.summary_tags); |
25 | if (ctx.cfg.summary_log > 0) { | ||
26 | html("<tr class='nohover'><td colspan='4'> </td></tr>"); | ||
27 | cgit_print_log(ctx.qry.head, 0, ctx.cfg.summary_log, NULL, | ||
28 | NULL, NULL, 0); | ||
29 | } | ||
30 | html("</table>"); | 30 | html("</table>"); |
31 | } | 31 | } |