1 /* ui-summary.c: functions for generating repo summary page
3 * Copyright (C) 2006 Lars Hjemli
5 * Licensed under GNU General Public License v2
6 * (see COPYING for full license text)
14 void cgit_print_summary()
16 if (ctx.repo->readme) {
17 html("<div id='summary'>");
18 html_include(ctx.repo->readme);
21 if (ctx.cfg.summary_log > 0)
22 cgit_print_log(ctx.qry.head, 0, ctx.cfg.summary_log, NULL,
24 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);
28 html("<tr class='nohover'><td colspan='4'> </td></tr>");
29 cgit_print_tags(ctx.cfg.summary_tags);