]> gitweb.ps.run Git - ps-cgit/blobdiff - ui-summary.c
Move cgit_repo into cgit_context
[ps-cgit] / ui-summary.c
index bbd446444ab85962f1dd80c7598e6e51a9cd3177..3baac08f0cf7d43933dda233272fda154b2952c1 100644 (file)
@@ -182,19 +182,19 @@ void cgit_print_tags(int maxcount)
 
 void cgit_print_summary()
 {
 
 void cgit_print_summary()
 {
-       if (cgit_repo->readme) {
+       if (ctx.repo->readme) {
                html("<div id='summary'>");
                html("<div id='summary'>");
-               html_include(cgit_repo->readme);
+               html_include(ctx.repo->readme);
                html("</div>");
        }
                html("</div>");
        }
-       if (cgit_summary_log > 0)
-               cgit_print_log(ctx.qry.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 summary='repository info' class='list nowrap'>");
                               NULL, NULL, 0);
        html("<table summary='repository info' class='list nowrap'>");
-       if (cgit_summary_log > 0)
+       if (ctx.cfg.summary_log > 0)
                html("<tr class='nohover'><td colspan='4'>&nbsp;</td></tr>");
                html("<tr class='nohover'><td colspan='4'>&nbsp;</td></tr>");
-       cgit_print_branches(cgit_summary_branches);
+       cgit_print_branches(ctx.cfg.summary_branches);
        html("<tr class='nohover'><td colspan='4'>&nbsp;</td></tr>");
        html("<tr class='nohover'><td colspan='4'>&nbsp;</td></tr>");
-       cgit_print_tags(cgit_summary_tags);
+       cgit_print_tags(ctx.cfg.summary_tags);
        html("</table>");
 }
        html("</table>");
 }