X-Git-Url: https://gitweb.ps.run/ps-cgit/blobdiff_plain/af2e75616d1bfb7dc79d299d10ae0bd39bef47bc..502865a5ec40fed5f1f865cb34002aecaab8405e:/cgit.c diff --git a/cgit.c b/cgit.c index ac882c3..8795085 100644 --- a/cgit.c +++ b/cgit.c @@ -25,6 +25,10 @@ void config_cb(const char *name, const char *value) ctx.cfg.root_readme = xstrdup(value); else if (!strcmp(name, "css")) ctx.cfg.css = xstrdup(value); + else if (!strcmp(name, "favicon")) + ctx.cfg.favicon = 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")) @@ -144,6 +148,8 @@ static void querystring_cb(const char *name, const char *value) ctx.qry.path = trim_end(value, '/'); } else if (!strcmp(name, "name")) { ctx.qry.name = xstrdup(value); + } else if (!strcmp(name, "mimetype")) { + ctx.qry.mimetype = xstrdup(value); } }