|
|
@ -48,19 +48,24 @@ static int is_git_dir(const char *path) |
|
|
|
struct cgit_repo *repo; |
|
|
|
struct cgit_repo *repo; |
|
|
|
repo_config_fn config_fn; |
|
|
|
repo_config_fn config_fn; |
|
|
|
char *owner; |
|
|
|
char *owner; |
|
|
|
|
|
|
|
char *desc; |
|
|
|
|
|
|
|
|
|
|
|
static void repo_config(const char *name, const char *value) |
|
|
|
static void repo_config(const char *name, const char *value) |
|
|
|
{ |
|
|
|
{ |
|
|
|
config_fn(repo, name, 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); |
|
|
|
owner = xstrdup(value); |
|
|
|
|
|
|
|
else if (ctx.cfg.enable_gitweb_desc && !strcmp(key, "gitweb.description")) |
|
|
|
|
|
|
|
desc = xstrdup(value); |
|
|
|
return 0; |
|
|
|
return 0; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static char *xstrrchr(char *s, char *from, int c) |
|
|
|
static char *xstrrchr(char *s, char *from, int c) |
|
|
|
{ |
|
|
|
{ |
|
|
|
while (from >= s && *from != 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; |
|
|
|
return; |
|
|
|
|
|
|
|
|
|
|
|
owner = NULL; |
|
|
|
owner = NULL; |
|
|
|
if (ctx.cfg.enable_gitweb_owner) |
|
|
|
desc = NULL; |
|
|
|
git_config_from_file(git_owner_config, fmt("%s/config", path), NULL); |
|
|
|
git_config_from_file(gitweb_config, fmt("%s/config", path), NULL); |
|
|
|
|
|
|
|
|
|
|
|
if (base == path) |
|
|
|
if (base == path) |
|
|
|
rel = xstrdup(fmt("%s", path)); |
|
|
|
rel = xstrdup(fmt("%s", path)); |
|
|
|
else |
|
|
|
else |
|
|
@ -118,9 +124,13 @@ static void add_repo(const char *base, const char *path, repo_config_fn fn) |
|
|
|
} |
|
|
|
} |
|
|
|
repo->owner = owner; |
|
|
|
repo->owner = owner; |
|
|
|
|
|
|
|
|
|
|
|
p = fmt("%s/description", path); |
|
|
|
if (desc) |
|
|
|
if (!stat(p, &st)) |
|
|
|
repo->desc = desc; |
|
|
|
readfile(p, &repo->desc, &size); |
|
|
|
else { |
|
|
|
|
|
|
|
p = fmt("%s/description", path); |
|
|
|
|
|
|
|
if (!stat(p, &st)) |
|
|
|
|
|
|
|
readfile(p, &repo->desc, &size); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
if (!repo->readme) { |
|
|
|
if (!repo->readme) { |
|
|
|
p = fmt("%s/README.html", path); |
|
|
|
p = fmt("%s/README.html", path); |
|
|
|