aboutsummaryrefslogtreecommitdiffstats
path: root/cgit.h
diff options
context:
space:
mode:
authorGravatar Lars Hjemli <hjemli@gmail.com>2007-02-08 22:47:56 (JST)
committerGravatar Lars Hjemli <hjemli@gmail.com>2007-02-08 22:47:56 (JST)
commitac70cb4795c90db02917db63d169b0fadfe9fb99 (patch)
treebf7a5c4c8c2789cda2dd511f0a180df279a0b389 /cgit.h
parentab2ab95f09994560f62fd631f07d3b6e3577aa6e (diff)
downloadcgit-ac70cb4795c90db02917db63d169b0fadfe9fb99.zip
cgit-ac70cb4795c90db02917db63d169b0fadfe9fb99.tar.gz
Make snapshot feature configurable
Snapshots can now be enabled/disabled by default for all repositories in cgitrc with param "snapshots". Additionally, any repo can override the default setting with param "repo.snapshots". By default, no snapshotting is enabled. Signed-off-by: Lars Hjemli <hjemli@gmail.com>
Diffstat (limited to 'cgit.h')
-rw-r--r--cgit.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/cgit.h b/cgit.h
index 03c2fdb..6e95673 100644
--- a/cgit.h
+++ b/cgit.h
@@ -21,6 +21,7 @@ struct repoinfo {
21 char *path; 21 char *path;
22 char *desc; 22 char *desc;
23 char *owner; 23 char *owner;
24 int snapshots;
24}; 25};
25 26
26struct repolist { 27struct repolist {
@@ -61,6 +62,7 @@ extern char *cgit_virtual_root;
61extern char *cgit_cache_root; 62extern char *cgit_cache_root;
62 63
63extern int cgit_nocache; 64extern int cgit_nocache;
65extern int cgit_snapshots;
64extern int cgit_max_lock_attempts; 66extern int cgit_max_lock_attempts;
65extern int cgit_cache_root_ttl; 67extern int cgit_cache_root_ttl;
66extern int cgit_cache_repo_ttl; 68extern int cgit_cache_repo_ttl;