-rw-r--r-- | cgit.h | 9 |
1 files changed, 7 insertions, 2 deletions
@@ -66,7 +66,7 @@ struct cgit_repo { char *owner; char *defbranch; - char *group; char *module_link; char *readme; + char *section; char *clone_url; int snapshots; @@ -80,4 +80,7 @@ struct cgit_repo { }; +typedef void (*repo_config_fn)(struct cgit_repo *repo, const char *name, + const char *value); + struct cgit_repolist { int length; @@ -157,5 +160,4 @@ struct cgit_config { char *logo_link; char *module_link; - char *repo_group; char *robots; char *root_title; @@ -163,4 +165,5 @@ struct cgit_config { char *root_readme; char *script_name; + char *section; char *virtual_root; int cache_size; @@ -169,6 +172,8 @@ struct cgit_config { int cache_repo_ttl; int cache_root_ttl; + int cache_scanrc_ttl; int cache_static_ttl; int embedded; + int enable_filter_overrides; int enable_index_links; int enable_log_filecount; |