mirror of
https://git.zx2c4.com/cgit
synced 2025-08-18 00:08:18 +02:00
Merge branch 'br/misc'
* br/misc: Use transparent background for the cgit logo ssdiff: anchors for ssdiff implement repo.logo and repo.logo-link
This commit is contained in:
commit
979c460e7f
9 changed files with 74 additions and 17 deletions
8
cgit.c
8
cgit.c
|
@ -73,9 +73,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"))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue