From aa69de50d3c0ef30a2f97e95f0582445890d027b Mon Sep 17 00:00:00 2001 From: Richard Maw Date: Thu, 30 Jun 2016 21:06:46 +0100 Subject: Allow agefile to be set per-repository This adds "repo.agefile", since namespaced repositories share the same files, and we'd like to be able to see the ages of the refs for each namespace. Whatever the git server uses for updating the age file must be namespace aware and must write the age file to a path consistent with "repo.agefile". Signed-off-by: Richard Maw --- cgit.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'cgit.c') diff --git a/cgit.c b/cgit.c index d428019..a87f245 100644 --- a/cgit.c +++ b/cgit.c @@ -88,6 +88,8 @@ static void repo_config(struct cgit_repo *repo, const char *name, const char *va repo->logo = xstrdup(value); else if (!strcmp(name, "logo-link") && value != NULL) repo->logo_link = xstrdup(value); + else if (!strcmp(name, "agefile") && value != NULL) + repo->agefile = xstrdup(value); else if (!strcmp(name, "hide")) repo->hide = atoi(value); else if (!strcmp(name, "ignore")) -- cgit v1.2.3