diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2010-12-23 12:47:54 +0100 |
---|---|---|
committer | Lars Hjemli <hjemli@gmail.com> | 2011-02-19 14:41:39 +0100 |
commit | 808c685ebb7cd2d24d3881b74e3be2439bd1393b (patch) | |
tree | 5bb224b73bbbc7d57864c587cc022fcc9826f4b3 /cgit.c | |
parent | ui-stats: Remove unnecessary #include (diff) | |
download | cgit-pink-808c685ebb7cd2d24d3881b74e3be2439bd1393b.tar.gz cgit-pink-808c685ebb7cd2d24d3881b74e3be2439bd1393b.zip |
implement repo.logo and repo.logo-link
Allow for per repo logo and logo-link; Use global logo and logo-link per default. Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> Signed-off-by: Lars Hjemli <hjemli@gmail.com>
Diffstat (limited to '')
-rw-r--r-- | cgit.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/cgit.c b/cgit.c index 412fbf0..e8c1f94 100644 --- a/cgit.c +++ b/cgit.c @@ -71,9 +71,13 @@ void repo_config(struct cgit_repo *repo, const char *name, const char *value) repo->module_link= xstrdup(value); else if (!strcmp(name, "section")) repo->section = xstrdup(value); - else if (!strcmp(name, "readme") && value != NULL) { + else if (!strcmp(name, "readme") && value != NULL) repo->readme = xstrdup(value); - } else if (ctx.cfg.enable_filter_overrides) { + else if (!strcmp(name, "logo") && value != NULL) + repo->logo = xstrdup(value); + else if (!strcmp(name, "logo-link") && value != NULL) + repo->logo_link = xstrdup(value); + else if (ctx.cfg.enable_filter_overrides) { if (!strcmp(name, "about-filter")) repo->about_filter = new_filter(value, 0); else if (!strcmp(name, "commit-filter")) |