aboutsummaryrefslogtreecommitdiff
diff refs
from: back
to: back
| flip
diff options
context:
space:
mode:
-rw-r--r--ui-summary.c14
-rw-r--r--ui-summary.h1
2 files changed, 5 insertions, 10 deletions
diff --git a/ui-summary.c b/ui-summary.c
index ad0b4a7..318148a 100644
--- a/ui-summary.c
+++ b/ui-summary.c
@@ -13,6 +13,11 @@
void cgit_print_summary()
{
+ if (ctx.repo->readme) {
+ html("<div id='summary'>");
+ html_include(ctx.repo->readme);
+ html("</div>");
+ }
html("<table summary='repository info' class='list nowrap'>");
cgit_print_branches(ctx.cfg.summary_branches);
html("<tr class='nohover'><td colspan='4'>&nbsp;</td></tr>");
@@ -24,12 +29,3 @@ void cgit_print_summary()
}
html("</table>");
}
-
-void cgit_print_repo_readme()
-{
- if (ctx.repo->readme) {
- html("<div id='summary'>");
- html_include(ctx.repo->readme);
- html("</div>");
- }
-}
diff --git a/ui-summary.h b/ui-summary.h
index 3e13039..37aedd2 100644
--- a/ui-summary.h
+++ b/ui-summary.h
@@ -2,6 +2,5 @@
#define UI_SUMMARY_H
extern void cgit_print_summary();
-extern void cgit_print_repo_readme();
#endif /* UI_SUMMARY_H */