]> gitweb.ps.run Git - ps-cgit/blob - ui-summary.c
Make branches, tags and log play better together in the summary view
[ps-cgit] / ui-summary.c
1 /* ui-summary.c: functions for generating repo summary page
2  *
3  * Copyright (C) 2006 Lars Hjemli
4  *
5  * Licensed under GNU General Public License v2
6  *   (see COPYING for full license text)
7  */
8
9 #include "cgit.h"
10 #include "html.h"
11 #include "ui-log.h"
12 #include "ui-refs.h"
13
14 void cgit_print_summary()
15 {
16         if (ctx.repo->readme) {
17                 html("<div id='summary'>");
18                 html_include(ctx.repo->readme);
19                 html("</div>");
20         }
21         html("<table summary='repository info' class='list nowrap'>");
22         cgit_print_branches(ctx.cfg.summary_branches);
23         html("<tr class='nohover'><td colspan='4'>&nbsp;</td></tr>");
24         cgit_print_tags(ctx.cfg.summary_tags);
25         if (ctx.cfg.summary_log > 0) {
26                 html("<tr class='nohover'><td colspan='4'>&nbsp;</td></tr>");
27                 cgit_print_log(ctx.qry.head, 0, ctx.cfg.summary_log, NULL,
28                                NULL, NULL, 0);
29         }
30         html("</table>");
31 }