aboutsummaryrefslogtreecommitdiff
path: root/scan-tree.c
diff options
context:
space:
mode:
authorJason A. Donenfeld <Jason@zx2c4.com>2012-07-11 04:24:01 +0200
committerJason A. Donenfeld <Jason@zx2c4.com>2012-07-12 20:01:46 +0200
commitb56be4ba3a942dd1978fe4bfecd9afc35aab0027 (patch)
tree1f193f16b3b54e92d1a23a42ed3a9eced13acc0f /scan-tree.c
parent45555512ba63b823c6340875254563ea05737668 (diff)
downloadcgit-b56be4ba3a942dd1978fe4bfecd9afc35aab0027.tar.gz
cgit-b56be4ba3a942dd1978fe4bfecd9afc35aab0027.tar.bz2
scan-tree: Support gitweb.description.
Use gitweb.description instead of description file to determine description, if option is enabled.
Diffstat (limited to 'scan-tree.c')
-rw-r--r--scan-tree.c24
1 files changed, 17 insertions, 7 deletions
diff --git a/scan-tree.c b/scan-tree.c
index 378d795..3d4e417 100644
--- a/scan-tree.c
+++ b/scan-tree.c
@@ -48,19 +48,24 @@ static int is_git_dir(const char *path)
struct cgit_repo *repo;
repo_config_fn config_fn;
char *owner;
+char *desc;
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);
return 0;
}
+
+
static char *xstrrchr(char *s, char *from, int c)
{
while (from >= s && *from != c)
@@ -89,8 +94,9 @@ static void add_repo(const char *base, const char *path, repo_config_fn fn)
return;
owner = NULL;
- if (ctx.cfg.enable_gitweb_owner)
- git_config_from_file(git_owner_config, fmt("%s/config", path), NULL);
+ desc = NULL;
+ git_config_from_file(gitweb_config, fmt("%s/config", path), NULL);
+
if (base == path)
rel = xstrdup(fmt("%s", path));
else
@@ -118,9 +124,13 @@ static void add_repo(const char *base, const char *path, repo_config_fn fn)
}
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);