2006-12-11 16:55:07 +01:00
|
|
|
/* ui-summary.c: functions for generating repo summary page
|
|
|
|
*
|
|
|
|
* Copyright (C) 2006 Lars Hjemli
|
|
|
|
*
|
|
|
|
* Licensed under GNU General Public License v2
|
|
|
|
* (see COPYING for full license text)
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "cgit.h"
|
2008-02-23 22:45:33 +01:00
|
|
|
#include "html.h"
|
2008-03-24 16:38:47 +01:00
|
|
|
#include "ui-log.h"
|
|
|
|
#include "ui-refs.h"
|
2006-12-11 16:55:07 +01:00
|
|
|
|
2006-12-11 17:04:19 +01:00
|
|
|
void cgit_print_summary()
|
2006-12-11 16:55:07 +01:00
|
|
|
{
|
2008-02-16 13:56:09 +01:00
|
|
|
if (ctx.repo->readme) {
|
2007-10-30 10:47:38 +01:00
|
|
|
html("<div id='summary'>");
|
2008-02-16 13:56:09 +01:00
|
|
|
html_include(ctx.repo->readme);
|
2007-10-30 10:47:38 +01:00
|
|
|
html("</div>");
|
|
|
|
}
|
2008-02-16 13:07:13 +01:00
|
|
|
if (ctx.cfg.summary_log > 0)
|
|
|
|
cgit_print_log(ctx.qry.head, 0, ctx.cfg.summary_log, NULL,
|
2007-10-30 10:47:38 +01:00
|
|
|
NULL, NULL, 0);
|
2007-11-11 13:04:28 +01:00
|
|
|
html("<table summary='repository info' class='list nowrap'>");
|
2008-02-16 13:07:13 +01:00
|
|
|
if (ctx.cfg.summary_log > 0)
|
2007-05-26 03:33:41 +02:00
|
|
|
html("<tr class='nohover'><td colspan='4'> </td></tr>");
|
2008-02-16 13:07:13 +01:00
|
|
|
cgit_print_branches(ctx.cfg.summary_branches);
|
2007-01-17 01:10:39 +01:00
|
|
|
html("<tr class='nohover'><td colspan='4'> </td></tr>");
|
2008-02-16 13:07:13 +01:00
|
|
|
cgit_print_tags(ctx.cfg.summary_tags);
|
2007-01-17 01:10:39 +01:00
|
|
|
html("</table>");
|
2006-12-11 16:55:07 +01:00
|
|
|
}
|