]> gitweb.ps.run Git - ps-cgit/blobdiff - ui-summary.c
Re-enable 'index-info' and add support for 'root-desc' in cgitrc
[ps-cgit] / ui-summary.c
index 0b66b5289b54161b048b0d6b9144ed0794e00c37..ad0b4a7b251a448201b6d509e6949fe68c1647c8 100644 (file)
 
 void cgit_print_summary()
 {
-       if (ctx.repo->readme) {
-               html("<div id='summary'>");
-               html_include(ctx.repo->readme);
-               html("</div>");
-       }
-       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'>");
-       if (ctx.cfg.summary_log > 0)
-               html("<tr class='nohover'><td colspan='4'>&nbsp;</td></tr>");
        cgit_print_branches(ctx.cfg.summary_branches);
        html("<tr class='nohover'><td colspan='4'>&nbsp;</td></tr>");
        cgit_print_tags(ctx.cfg.summary_tags);
+       if (ctx.cfg.summary_log > 0) {
+               html("<tr class='nohover'><td colspan='4'>&nbsp;</td></tr>");
+               cgit_print_log(ctx.qry.head, 0, ctx.cfg.summary_log, NULL,
+                              NULL, NULL, 0);
+       }
        html("</table>");
 }
+
+void cgit_print_repo_readme()
+{
+       if (ctx.repo->readme) {
+               html("<div id='summary'>");
+               html_include(ctx.repo->readme);
+               html("</div>");
+       }
+}