Add head-include configuration option.

This patch adds an option to the configuration file, "head-include",
which works just like "header" or "footer", except the content is put
into the HTML's <head> tag.
此提交包含在:
Mark Lodato
2009-03-15 00:11:54 -04:00
提交者 Lars Hjemli
父節點 45e7fcecc1
當前提交 b5a3a20496
共有 3 個檔案被更改,包括 6 行新增1 行删除

2
cgit.c
查看文件

@ -31,6 +31,8 @@ void config_cb(const char *name, const char *value)
ctx.cfg.favicon = xstrdup(value);
else if (!strcmp(name, "footer"))
ctx.cfg.footer = xstrdup(value);
else if (!strcmp(name, "head-include"))
ctx.cfg.head_include = xstrdup(value);
else if (!strcmp(name, "header"))
ctx.cfg.header = xstrdup(value);
else if (!strcmp(name, "logo"))