summaryrefslogtreecommitdiffabout
path: root/cgit.h
Side-by-side diff
Diffstat (limited to 'cgit.h') (more/less context) (ignore whitespace changes)
-rw-r--r--cgit.h9
1 files changed, 7 insertions, 2 deletions
diff --git a/cgit.h b/cgit.h
index a20679a..6c6c460 100644
--- a/cgit.h
+++ b/cgit.h
@@ -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;