summaryrefslogtreecommitdiffabout
path: root/shared.c
Unidiff
Diffstat (limited to 'shared.c') (more/less context) (show whitespace changes)
-rw-r--r--shared.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/shared.c b/shared.c
index 5f2a5ce..7149597 100644
--- a/shared.c
+++ b/shared.c
@@ -8,24 +8,25 @@
8 8
9#include "cgit.h" 9#include "cgit.h"
10 10
11char *cgit_root = "/usr/src/git"; 11char *cgit_root = "/usr/src/git";
12char *cgit_root_title = "Git repository browser"; 12char *cgit_root_title = "Git repository browser";
13char *cgit_css = "/cgit.css"; 13char *cgit_css = "/cgit.css";
14char *cgit_logo = "/git-logo.png"; 14char *cgit_logo = "/git-logo.png";
15char *cgit_logo_link = "http://www.kernel.org/pub/software/scm/git/docs/"; 15char *cgit_logo_link = "http://www.kernel.org/pub/software/scm/git/docs/";
16char *cgit_virtual_root = NULL; 16char *cgit_virtual_root = NULL;
17 17
18char *cgit_cache_root = "/var/cache/cgit"; 18char *cgit_cache_root = "/var/cache/cgit";
19 19
20int cgit_nocache = 0;
20int cgit_max_lock_attempts = 5; 21int cgit_max_lock_attempts = 5;
21int cgit_cache_root_ttl = 5; 22int cgit_cache_root_ttl = 5;
22int cgit_cache_repo_ttl = 5; 23int cgit_cache_repo_ttl = 5;
23int cgit_cache_dynamic_ttl = 5; 24int cgit_cache_dynamic_ttl = 5;
24int cgit_cache_static_ttl = -1; 25int cgit_cache_static_ttl = -1;
25int cgit_cache_max_create_time = 5; 26int cgit_cache_max_create_time = 5;
26 27
27char *cgit_repo_name = NULL; 28char *cgit_repo_name = NULL;
28char *cgit_repo_desc = NULL; 29char *cgit_repo_desc = NULL;
29char *cgit_repo_owner = NULL; 30char *cgit_repo_owner = NULL;
30 31
31int cgit_query_has_symref = 0; 32int cgit_query_has_symref = 0;
@@ -45,24 +46,26 @@ void cgit_global_config_cb(const char *name, const char *value)
45 if (!strcmp(name, "root")) 46 if (!strcmp(name, "root"))
46 cgit_root = xstrdup(value); 47 cgit_root = xstrdup(value);
47 else if (!strcmp(name, "root-title")) 48 else if (!strcmp(name, "root-title"))
48 cgit_root_title = xstrdup(value); 49 cgit_root_title = xstrdup(value);
49 else if (!strcmp(name, "css")) 50 else if (!strcmp(name, "css"))
50 cgit_css = xstrdup(value); 51 cgit_css = xstrdup(value);
51 else if (!strcmp(name, "logo")) 52 else if (!strcmp(name, "logo"))
52 cgit_logo = xstrdup(value); 53 cgit_logo = xstrdup(value);
53 else if (!strcmp(name, "logo-link")) 54 else if (!strcmp(name, "logo-link"))
54 cgit_logo_link = xstrdup(value); 55 cgit_logo_link = xstrdup(value);
55 else if (!strcmp(name, "virtual-root")) 56 else if (!strcmp(name, "virtual-root"))
56 cgit_virtual_root = xstrdup(value); 57 cgit_virtual_root = xstrdup(value);
58 else if (!strcmp(name, "nocache"))
59 cgit_nocache = atoi(value);
57} 60}
58 61
59void cgit_repo_config_cb(const char *name, const char *value) 62void cgit_repo_config_cb(const char *name, const char *value)
60{ 63{
61 if (!strcmp(name, "name")) 64 if (!strcmp(name, "name"))
62 cgit_repo_name = xstrdup(value); 65 cgit_repo_name = xstrdup(value);
63 else if (!strcmp(name, "desc")) 66 else if (!strcmp(name, "desc"))
64 cgit_repo_desc = xstrdup(value); 67 cgit_repo_desc = xstrdup(value);
65 else if (!strcmp(name, "owner")) 68 else if (!strcmp(name, "owner"))
66 cgit_repo_owner = xstrdup(value); 69 cgit_repo_owner = xstrdup(value);
67} 70}
68 71