about summary refs log tree commit diff
path: root/ui-shared.c
diff options
context:
space:
mode:
authorLars Hjemli <hjemli@gmail.com>2008-06-26 13:53:30 +0200
committerLars Hjemli <hjemli@gmail.com>2008-06-26 13:53:30 +0200
commitde5e9281719809c5b07051faa88e95bd16e8d485 (patch)
tree30c6f6bc74c067ebad78e45e5602011006332f8b /ui-shared.c
parentMerge branch 'master' of git://git.klever.net/patchwork/cgit (diff)
downloadcgit-pink-de5e9281719809c5b07051faa88e95bd16e8d485.tar.gz
cgit-pink-de5e9281719809c5b07051faa88e95bd16e8d485.zip
Add support for including a footer on all pages
The new cgitrc option `footer` can be used to include a html-file which
replaces the standard 'generated by cgit' message at the bottom of each
page.

Suggested-by: Peter Danenberg <pcd@wikitex.org>
Signed-off-by: Lars Hjemli <hjemli@gmail.com>
Diffstat (limited to 'ui-shared.c')
-rw-r--r--ui-shared.c14
1 files changed, 10 insertions, 4 deletions
diff --git a/ui-shared.c b/ui-shared.c
index cd98387..8a00099 100644
--- a/ui-shared.c
+++ b/ui-shared.c
@@ -443,10 +443,16 @@ void cgit_print_docstart(struct cgit_context *ctx)
 
 void cgit_print_docend()
 {
-	html("</div><div class='footer'>generated ");
-	cgit_print_date(time(NULL), FMT_LONGDATE);
-	htmlf(" by cgit %s", cgit_version);
-	html("</div>\n</body>\n</html>\n");
+	html("</div>");
+	if (ctx.cfg.footer)
+		html_include(ctx.cfg.footer);
+	else {
+		html("<div class='footer'>generated ");
+		cgit_print_date(time(NULL), FMT_LONGDATE);
+		htmlf(" by cgit %s", cgit_version);
+		html("</div>\n");
+	}
+	html("</body>\n</html>\n");
 }
 
 int print_branch_option(const char *refname, const unsigned char *sha1,