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, 2 insertions, 1 deletions
diff --git a/shared.c b/shared.c
index b6d2fa1..c7cd8a5 100644
--- a/shared.c
+++ b/shared.c
@@ -14,97 +14,98 @@ int cgit_cmd;
14 14
15char *cgit_root_title = "Git repository browser"; 15char *cgit_root_title = "Git repository browser";
16char *cgit_css = "/cgit.css"; 16char *cgit_css = "/cgit.css";
17char *cgit_logo = "/git-logo.png"; 17char *cgit_logo = "/git-logo.png";
18char *cgit_index_header = NULL; 18char *cgit_index_header = NULL;
19char *cgit_logo_link = "http://www.kernel.org/pub/software/scm/git/docs/"; 19char *cgit_logo_link = "http://www.kernel.org/pub/software/scm/git/docs/";
20char *cgit_module_link = "./?repo=%s&page=commit&id=%s"; 20char *cgit_module_link = "./?repo=%s&page=commit&id=%s";
21char *cgit_agefile = "info/web/last-modified"; 21char *cgit_agefile = "info/web/last-modified";
22char *cgit_virtual_root = NULL; 22char *cgit_virtual_root = NULL;
23char *cgit_script_name = CGIT_SCRIPT_NAME; 23char *cgit_script_name = CGIT_SCRIPT_NAME;
24char *cgit_cache_root = "/var/cache/cgit"; 24char *cgit_cache_root = "/var/cache/cgit";
25char *cgit_repo_group = NULL; 25char *cgit_repo_group = NULL;
26 26
27int cgit_nocache = 0; 27int cgit_nocache = 0;
28int cgit_snapshots = 0; 28int cgit_snapshots = 0;
29int cgit_enable_log_filecount = 0; 29int cgit_enable_log_filecount = 0;
30int cgit_enable_log_linecount = 0; 30int cgit_enable_log_linecount = 0;
31int cgit_max_lock_attempts = 5; 31int cgit_max_lock_attempts = 5;
32int cgit_cache_root_ttl = 5; 32int cgit_cache_root_ttl = 5;
33int cgit_cache_repo_ttl = 5; 33int cgit_cache_repo_ttl = 5;
34int cgit_cache_dynamic_ttl = 5; 34int cgit_cache_dynamic_ttl = 5;
35int cgit_cache_static_ttl = -1; 35int cgit_cache_static_ttl = -1;
36int cgit_cache_max_create_time = 5; 36int cgit_cache_max_create_time = 5;
37int cgit_summary_log = 0; 37int cgit_summary_log = 0;
38 38
39int cgit_max_msg_len = 60; 39int cgit_max_msg_len = 60;
40int cgit_max_repodesc_len = 60; 40int cgit_max_repodesc_len = 60;
41int cgit_max_commit_count = 50; 41int cgit_max_commit_count = 50;
42 42
43int cgit_query_has_symref = 0; 43int cgit_query_has_symref = 0;
44int cgit_query_has_sha1 = 0; 44int cgit_query_has_sha1 = 0;
45 45
46char *cgit_querystring = NULL; 46char *cgit_querystring = NULL;
47char *cgit_query_repo = NULL; 47char *cgit_query_repo = NULL;
48char *cgit_query_page = NULL; 48char *cgit_query_page = NULL;
49char *cgit_query_head = NULL; 49char *cgit_query_head = NULL;
50char *cgit_query_search = NULL; 50char *cgit_query_search = NULL;
51char *cgit_query_sha1 = NULL; 51char *cgit_query_sha1 = NULL;
52char *cgit_query_sha2 = NULL; 52char *cgit_query_sha2 = NULL;
53char *cgit_query_path = NULL; 53char *cgit_query_path = NULL;
54char *cgit_query_name = NULL; 54char *cgit_query_name = NULL;
55int cgit_query_ofs = 0; 55int cgit_query_ofs = 0;
56 56
57int htmlfd = 0; 57int htmlfd = 0;
58 58
59 59
60int cgit_get_cmd_index(const char *cmd) 60int cgit_get_cmd_index(const char *cmd)
61{ 61{
62 static char *cmds[] = {"log", "commit", "diff", "tree", "view", "blob", "snapshot", NULL}; 62 static char *cmds[] = {"log", "commit", "diff", "tree", "blob",
63 "snapshot", NULL};
63 int i; 64 int i;
64 65
65 for(i = 0; cmds[i]; i++) 66 for(i = 0; cmds[i]; i++)
66 if (!strcmp(cmd, cmds[i])) 67 if (!strcmp(cmd, cmds[i]))
67 return i + 1; 68 return i + 1;
68 return 0; 69 return 0;
69} 70}
70 71
71int chk_zero(int result, char *msg) 72int chk_zero(int result, char *msg)
72{ 73{
73 if (result != 0) 74 if (result != 0)
74 die("%s: %s", msg, strerror(errno)); 75 die("%s: %s", msg, strerror(errno));
75 return result; 76 return result;
76} 77}
77 78
78int chk_positive(int result, char *msg) 79int chk_positive(int result, char *msg)
79{ 80{
80 if (result <= 0) 81 if (result <= 0)
81 die("%s: %s", msg, strerror(errno)); 82 die("%s: %s", msg, strerror(errno));
82 return result; 83 return result;
83} 84}
84 85
85struct repoinfo *add_repo(const char *url) 86struct repoinfo *add_repo(const char *url)
86{ 87{
87 struct repoinfo *ret; 88 struct repoinfo *ret;
88 89
89 if (++cgit_repolist.count > cgit_repolist.length) { 90 if (++cgit_repolist.count > cgit_repolist.length) {
90 if (cgit_repolist.length == 0) 91 if (cgit_repolist.length == 0)
91 cgit_repolist.length = 8; 92 cgit_repolist.length = 8;
92 else 93 else
93 cgit_repolist.length *= 2; 94 cgit_repolist.length *= 2;
94 cgit_repolist.repos = xrealloc(cgit_repolist.repos, 95 cgit_repolist.repos = xrealloc(cgit_repolist.repos,
95 cgit_repolist.length * 96 cgit_repolist.length *
96 sizeof(struct repoinfo)); 97 sizeof(struct repoinfo));
97 } 98 }
98 99
99 ret = &cgit_repolist.repos[cgit_repolist.count-1]; 100 ret = &cgit_repolist.repos[cgit_repolist.count-1];
100 ret->url = xstrdup(url); 101 ret->url = xstrdup(url);
101 ret->name = ret->url; 102 ret->name = ret->url;
102 ret->path = NULL; 103 ret->path = NULL;
103 ret->desc = NULL; 104 ret->desc = NULL;
104 ret->owner = NULL; 105 ret->owner = NULL;
105 ret->group = cgit_repo_group; 106 ret->group = cgit_repo_group;
106 ret->defbranch = "master"; 107 ret->defbranch = "master";
107 ret->snapshots = cgit_snapshots; 108 ret->snapshots = cgit_snapshots;
108 ret->enable_log_filecount = cgit_enable_log_filecount; 109 ret->enable_log_filecount = cgit_enable_log_filecount;
109 ret->enable_log_linecount = cgit_enable_log_linecount; 110 ret->enable_log_linecount = cgit_enable_log_linecount;
110 ret->module_link = cgit_module_link; 111 ret->module_link = cgit_module_link;