ctx.cfg.snapshots = cgit_parse_snapshots_mask(value);
else if (!strcmp(name, "enable-filter-overrides"))
ctx.cfg.enable_filter_overrides = atoi(value);
+ else if (!strcmp(name, "enable-gitweb-desc"))
+ ctx.cfg.enable_gitweb_desc = atoi(value);
else if (!strcmp(name, "enable-gitweb-owner"))
ctx.cfg.enable_gitweb_owner = atoi(value);
else if (!strcmp(name, "enable-http-clone"))
ctx->cfg.css = "/cgit.css";
ctx->cfg.logo = "/cgit.png";
ctx->cfg.local_time = 0;
+ ctx->cfg.enable_gitweb_desc = 1;
ctx->cfg.enable_gitweb_owner = 1;
ctx->cfg.enable_http_clone = 1;
ctx->cfg.enable_tree_linenumbers = 1;
Flag which, when set to "1", allows all filter settings to be
overridden in repository-specific cgitrc files. Default value: none.
+enable-gitweb-desc::
+ If set to "1" and scan-path is enabled, we first check each repository
+ for the git config value "gitweb.description" to determine the owner.
+ Otherwise, the description is read from a file titled "description"
+ inside of the repository directory.
+ Default value: "1". See also: scan-path.
+
enable-gitweb-owner::
If set to "1" and scan-path is enabled, we first check each repository
for the git config value "gitweb.owner" to determine the owner.
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)
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
}
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);