summaryrefslogtreecommitdiffabout
path: root/shared.c
Unidiff
Diffstat (limited to 'shared.c') (more/less context) (ignore whitespace changes)
-rw-r--r--shared.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/shared.c b/shared.c
index dd711a8..8e6df31 100644
--- a/shared.c
+++ b/shared.c
@@ -16,24 +16,26 @@ char *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_nocache = 0;
21int cgit_max_lock_attempts = 5; 21int cgit_max_lock_attempts = 5;
22int cgit_cache_root_ttl = 5; 22int cgit_cache_root_ttl = 5;
23int cgit_cache_repo_ttl = 5; 23int cgit_cache_repo_ttl = 5;
24int cgit_cache_dynamic_ttl = 5; 24int cgit_cache_dynamic_ttl = 5;
25int cgit_cache_static_ttl = -1; 25int cgit_cache_static_ttl = -1;
26int cgit_cache_max_create_time = 5; 26int cgit_cache_max_create_time = 5;
27 27
28int cgit_max_msg_len = 60;
29
28char *cgit_repo_name = NULL; 30char *cgit_repo_name = NULL;
29char *cgit_repo_desc = NULL; 31char *cgit_repo_desc = NULL;
30char *cgit_repo_owner = NULL; 32char *cgit_repo_owner = NULL;
31 33
32int cgit_query_has_symref = 0; 34int cgit_query_has_symref = 0;
33int cgit_query_has_sha1 = 0; 35int cgit_query_has_sha1 = 0;
34 36
35char *cgit_querystring = NULL; 37char *cgit_querystring = NULL;
36char *cgit_query_repo = NULL; 38char *cgit_query_repo = NULL;
37char *cgit_query_page = NULL; 39char *cgit_query_page = NULL;
38char *cgit_query_head = NULL; 40char *cgit_query_head = NULL;
39char *cgit_query_search = NULL; 41char *cgit_query_search = NULL;
@@ -61,24 +63,26 @@ void cgit_global_config_cb(const char *name, const char *value)
61 else if (!strcmp(name, "nocache")) 63 else if (!strcmp(name, "nocache"))
62 cgit_nocache = atoi(value); 64 cgit_nocache = atoi(value);
63 else if (!strcmp(name, "cache-root")) 65 else if (!strcmp(name, "cache-root"))
64 cgit_cache_root = xstrdup(value); 66 cgit_cache_root = xstrdup(value);
65 else if (!strcmp(name, "cache-root-ttl")) 67 else if (!strcmp(name, "cache-root-ttl"))
66 cgit_cache_root_ttl = atoi(value); 68 cgit_cache_root_ttl = atoi(value);
67 else if (!strcmp(name, "cache-repo-ttl")) 69 else if (!strcmp(name, "cache-repo-ttl"))
68 cgit_cache_repo_ttl = atoi(value); 70 cgit_cache_repo_ttl = atoi(value);
69 else if (!strcmp(name, "cache-static-ttl")) 71 else if (!strcmp(name, "cache-static-ttl"))
70 cgit_cache_static_ttl = atoi(value); 72 cgit_cache_static_ttl = atoi(value);
71 else if (!strcmp(name, "cache-dynamic-ttl")) 73 else if (!strcmp(name, "cache-dynamic-ttl"))
72 cgit_cache_dynamic_ttl = atoi(value); 74 cgit_cache_dynamic_ttl = atoi(value);
75 else if (!strcmp(name, "max-message-length"))
76 cgit_max_msg_len = atoi(value);
73} 77}
74 78
75void cgit_repo_config_cb(const char *name, const char *value) 79void cgit_repo_config_cb(const char *name, const char *value)
76{ 80{
77 if (!strcmp(name, "name")) 81 if (!strcmp(name, "name"))
78 cgit_repo_name = xstrdup(value); 82 cgit_repo_name = xstrdup(value);
79 else if (!strcmp(name, "desc")) 83 else if (!strcmp(name, "desc"))
80 cgit_repo_desc = xstrdup(value); 84 cgit_repo_desc = xstrdup(value);
81 else if (!strcmp(name, "owner")) 85 else if (!strcmp(name, "owner"))
82 cgit_repo_owner = xstrdup(value); 86 cgit_repo_owner = xstrdup(value);
83} 87}
84 88