Merge branch 'lh/header'
Lars Hjemli hjemli@gmail.com
Sun, 01 Feb 2009 19:17:52 +0100
4 files changed,
9 insertions(+),
0 deletions(-)
M
cgit.c
→
cgit.c
@@ -31,6 +31,8 @@ else if (!strcmp(name, "favicon"))
ctx.cfg.favicon = xstrdup(value); else if (!strcmp(name, "footer")) ctx.cfg.footer = xstrdup(value); + else if (!strcmp(name, "header")) + ctx.cfg.header = xstrdup(value); else if (!strcmp(name, "logo")) ctx.cfg.logo = xstrdup(value); else if (!strcmp(name, "index-header"))
M
cgitrc.5.txt
→
cgitrc.5.txt
@@ -84,6 +84,10 @@ The content of the file specified with this option will be included
verbatim at the bottom of all pages (i.e. it replaces the standard "generated by..." message. Default value: none. +header + The content of the file specified with this option will be included + verbatim at the top of all pages. Default value: none. + include Name of a configfile to include before the rest of the current config- file is parsed. Default value: none.