if (!info)
return 1;
html("<tr><td>");
- cgit_log_link(name, NULL, NULL, name, NULL, NULL, 0);
+ cgit_log_link(name, NULL, NULL, name, NULL, NULL, 0, NULL, NULL);
html("</td><td>");
if (ref->object->type == OBJ_COMMIT) {
if (!tag || !info)
return 1;
html("<tr><td>");
- url = cgit_pageurl(cgit_query_repo, "tag",
+ url = cgit_pageurl(ctx.qry.repo, "tag",
fmt("id=%s", name));
html_link_open(url, NULL, NULL);
html_txt(name);
static void print_refs_link(char *path)
{
html("<tr class='nohover'><td colspan='4'>");
- cgit_refs_link("[...]", NULL, NULL, cgit_query_head, NULL, path);
+ cgit_refs_link("[...]", NULL, NULL, ctx.qry.head, NULL, path);
html("</td></tr>");
}
void cgit_print_summary()
{
- if (cgit_repo->readme) {
+ if (ctx.repo->readme) {
html("<div id='summary'>");
- html_include(cgit_repo->readme);
+ html_include(ctx.repo->readme);
html("</div>");
}
- if (cgit_summary_log > 0)
- cgit_print_log(cgit_query_head, 0, cgit_summary_log, NULL,
+ if (ctx.cfg.summary_log > 0)
+ cgit_print_log(ctx.qry.head, 0, ctx.cfg.summary_log, NULL,
NULL, NULL, 0);
- html("<table class='list nowrap'>");
- if (cgit_summary_log > 0)
+ html("<table summary='repository info' class='list nowrap'>");
+ if (ctx.cfg.summary_log > 0)
html("<tr class='nohover'><td colspan='4'> </td></tr>");
- cgit_print_branches(cgit_summary_branches);
+ cgit_print_branches(ctx.cfg.summary_branches);
html("<tr class='nohover'><td colspan='4'> </td></tr>");
- cgit_print_tags(cgit_summary_tags);
+ cgit_print_tags(ctx.cfg.summary_tags);
html("</table>");
}