]> gitweb.ps.run Git - ps-cgit/blobdiff - ui-summary.c
Introduce struct cgit_context
[ps-cgit] / ui-summary.c
index c856793b978da4e05b7eb81de236d3fc3df8875b..bbd446444ab85962f1dd80c7598e6e51a9cd3177 100644 (file)
@@ -94,7 +94,7 @@ static int print_tag(struct refinfo *ref)
                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);
@@ -123,7 +123,7 @@ static int print_tag(struct refinfo *ref)
 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>");
 }
 
@@ -188,9 +188,9 @@ void cgit_print_summary()
                html("</div>");
        }
        if (cgit_summary_log > 0)
-               cgit_print_log(cgit_query_head, 0, cgit_summary_log, NULL,
+               cgit_print_log(ctx.qry.head, 0, cgit_summary_log, NULL,
                               NULL, NULL, 0);
-       html("<table class='list nowrap'>");
+       html("<table summary='repository info' class='list nowrap'>");
        if (cgit_summary_log > 0)
                html("<tr class='nohover'><td colspan='4'>&nbsp;</td></tr>");
        cgit_print_branches(cgit_summary_branches);