/* scan-tree.c
*
* Copyright (C) 2008-2009 Lars Hjemli
- * Copyright (C) 2010 Jason A. Donenfeld <Jason@zx2c4.com>
+ * Copyright (C) 2010, 2012 Jason A. Donenfeld <Jason@zx2c4.com>
*
* Licensed under GNU General Public License v2
* (see COPYING for full license text)
struct cgit_repo *repo;
repo_config_fn config_fn;
char *owner;
+char *desc;
+char *section;
static void repo_config(const char *name, const char *value)
{
config_fn(repo, name, value);
}
-static int git_owner_config(const char *key, const char *value, void *cb)
+static int gitweb_config(const char *key, const char *value, void *cb)
{
- if (!strcmp(key, "gitweb.owner"))
+ if (ctx.cfg.enable_gitweb_owner && !strcmp(key, "gitweb.owner"))
owner = xstrdup(value);
+ else if (ctx.cfg.enable_gitweb_desc && !strcmp(key, "gitweb.description"))
+ desc = xstrdup(value);
+ else if (ctx.cfg.enable_gitweb_section && !strcmp(key, "gitweb.category"))
+ section = xstrdup(value);
return 0;
}
+
+
static char *xstrrchr(char *s, char *from, int c)
{
while (from >= s && *from != c)
return;
owner = NULL;
- if (ctx.cfg.enable_gitweb_owner)
- git_config_from_file(git_owner_config, fmt("%s/config", path), NULL);
+ desc = NULL;
+ section = NULL;
+ git_config_from_file(gitweb_config, fmt("%s/config", path), NULL);
+
if (base == path)
rel = xstrdup(fmt("%s", path));
else
}
repo->owner = owner;
- p = fmt("%s/description", path);
- if (!stat(p, &st))
- readfile(p, &repo->desc, &size);
+ if (desc)
+ repo->desc = desc;
+ else {
+ p = fmt("%s/description", path);
+ if (!stat(p, &st))
+ readfile(p, &repo->desc, &size);
+ }
if (!repo->readme) {
p = fmt("%s/README.html", path);
if (!stat(p, &st))
repo->readme = "README.html";
}
+ if (section)
+ repo->section = section;
if (ctx.cfg.section_from_path) {
n = ctx.cfg.section_from_path;
if (n > 0) {