-rw-r--r-- | cgit.c | 2 | ||||
-rw-r--r-- | cgit.h | 1 | ||||
-rw-r--r-- | ui-shared.c | 14 |
3 files changed, 13 insertions, 4 deletions
@@ -22,12 +22,14 @@ void config_cb(const char *name, const char *value) else if (!strcmp(name, "root-desc")) ctx.cfg.root_desc = xstrdup(value); else if (!strcmp(name, "root-readme")) ctx.cfg.root_readme = xstrdup(value); else if (!strcmp(name, "css")) ctx.cfg.css = xstrdup(value); + else if (!strcmp(name, "footer")) + ctx.cfg.footer = xstrdup(value); else if (!strcmp(name, "logo")) ctx.cfg.logo = xstrdup(value); else if (!strcmp(name, "index-header")) ctx.cfg.index_header = xstrdup(value); else if (!strcmp(name, "index-info")) ctx.cfg.index_info = xstrdup(value); @@ -122,12 +122,13 @@ struct cgit_query { struct cgit_config { char *agefile; char *cache_root; char *clone_prefix; char *css; + char *footer; char *index_header; char *index_info; char *logo; char *logo_link; char *module_link; char *repo_group; diff --git a/ui-shared.c b/ui-shared.c index cd98387..8a00099 100644 --- a/ui-shared.c +++ b/ui-shared.c @@ -440,16 +440,22 @@ void cgit_print_docstart(struct cgit_context *ctx) html("</head>\n"); html("<body>\n"); } 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, int flags, void *cb_data) { char *name = (char *)refname; |