mirror of
https://git.zx2c4.com/cgit
synced 2025-07-24 04:35:46 +02:00
Add support for repo-local cgitrc file
When recursively scanning a directory tree looking for git repositories, cgit will now parse cgitrc files found within such repositories. The repo-specific config files can include any repo-specific options except 'repo.url' and 'repo.path'. Also, in such config files the 'repo.' prefix can not be used, i.e. the valid options then becomes: * name * clone-url * desc * ower * defbranch * snapshots * enable-log-filecount * enable-log-linecount * max-stats * module-link * section * about-filter * commit-filter * source-filter * readme Signed-off-by: Lars Hjemli <hjemli@gmail.com>
This commit is contained in:
parent
a1b3938f71
commit
74061ed5f0
5 changed files with 39 additions and 13 deletions
8
cgit.c
8
cgit.c
|
@ -168,7 +168,7 @@ void config_cb(const char *name, const char *value)
|
|||
if (!ctx.cfg.nocache && ctx.cfg.cache_size)
|
||||
process_cached_repolist(value);
|
||||
else
|
||||
scan_tree(value);
|
||||
scan_tree(value, repo_config);
|
||||
else if (!strcmp(name, "source-filter"))
|
||||
ctx.cfg.source_filter = new_filter(value, 1);
|
||||
else if (!strcmp(name, "summary-log"))
|
||||
|
@ -476,7 +476,7 @@ static int generate_cached_repolist(const char *path, const char *cached_rc)
|
|||
return errno;
|
||||
}
|
||||
idx = cgit_repolist.count;
|
||||
scan_tree(path);
|
||||
scan_tree(path, repo_config);
|
||||
print_repolist(f, &cgit_repolist, idx);
|
||||
if (rename(locked_rc, cached_rc))
|
||||
fprintf(stderr, "[cgit] Error renaming %s to %s: %s (%d)\n",
|
||||
|
@ -500,7 +500,7 @@ static void process_cached_repolist(const char *path)
|
|||
* invoke scan_tree manually.
|
||||
*/
|
||||
if (generate_cached_repolist(path, cached_rc))
|
||||
scan_tree(path);
|
||||
scan_tree(path, repo_config);
|
||||
return;
|
||||
}
|
||||
|
||||
|
@ -559,7 +559,7 @@ static void cgit_parse_args(int argc, const char **argv)
|
|||
if (!strncmp(argv[i], "--scan-tree=", 12) ||
|
||||
!strncmp(argv[i], "--scan-path=", 12)) {
|
||||
scan++;
|
||||
scan_tree(argv[i] + 12);
|
||||
scan_tree(argv[i] + 12, repo_config);
|
||||
}
|
||||
}
|
||||
if (scan) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue