|
diff --git a/shared.c b/shared.c index 45fde7f..65af11a 100644 --- a/ shared.c+++ b/ shared.c |
|
@@ -8,32 +8,33 @@ |
8 | |
8 | |
9 | #include "cgit.h" |
9 | #include "cgit.h" |
10 | |
10 | |
11 | struct repolist cgit_repolist; |
11 | struct repolist cgit_repolist; |
12 | struct repoinfo *cgit_repo; |
12 | struct repoinfo *cgit_repo; |
13 | int cgit_cmd; |
13 | int cgit_cmd; |
14 | |
14 | |
15 | char *cgit_root_title = "Git repository browser"; |
15 | char *cgit_root_title = "Git repository browser"; |
16 | char *cgit_css = "/cgit.css"; |
16 | char *cgit_css = "/cgit.css"; |
17 | char *cgit_logo = "/git-logo.png"; |
17 | char *cgit_logo = "/git-logo.png"; |
18 | char *cgit_index_header = NULL; |
18 | char *cgit_index_header = NULL; |
19 | char *cgit_logo_link = "http://www.kernel.org/pub/software/scm/git/docs/"; |
19 | char *cgit_logo_link = "http://www.kernel.org/pub/software/scm/git/docs/"; |
20 | char *cgit_module_link = "./?repo=%s&page=commit&id=%s"; |
20 | char *cgit_module_link = "./?repo=%s&page=commit&id=%s"; |
21 | char *cgit_virtual_root = NULL; |
21 | char *cgit_virtual_root = NULL; |
22 | char *cgit_script_name = CGIT_SCRIPT_NAME; |
22 | char *cgit_script_name = CGIT_SCRIPT_NAME; |
23 | char *cgit_cache_root = "/var/cache/cgit"; |
23 | char *cgit_cache_root = "/var/cache/cgit"; |
| |
24 | char *cgit_repo_group = NULL; |
24 | |
25 | |
25 | int cgit_nocache = 0; |
26 | int cgit_nocache = 0; |
26 | int cgit_snapshots = 0; |
27 | int cgit_snapshots = 0; |
27 | int cgit_enable_log_filecount = 0; |
28 | int cgit_enable_log_filecount = 0; |
28 | int cgit_enable_log_linecount = 0; |
29 | int cgit_enable_log_linecount = 0; |
29 | int cgit_max_lock_attempts = 5; |
30 | int cgit_max_lock_attempts = 5; |
30 | int cgit_cache_root_ttl = 5; |
31 | int cgit_cache_root_ttl = 5; |
31 | int cgit_cache_repo_ttl = 5; |
32 | int cgit_cache_repo_ttl = 5; |
32 | int cgit_cache_dynamic_ttl = 5; |
33 | int cgit_cache_dynamic_ttl = 5; |
33 | int cgit_cache_static_ttl = -1; |
34 | int cgit_cache_static_ttl = -1; |
34 | int cgit_cache_max_create_time = 5; |
35 | int cgit_cache_max_create_time = 5; |
35 | |
36 | |
36 | int cgit_max_msg_len = 60; |
37 | int cgit_max_msg_len = 60; |
37 | int cgit_max_repodesc_len = 60; |
38 | int cgit_max_repodesc_len = 60; |
38 | int cgit_max_commit_count = 50; |
39 | int cgit_max_commit_count = 50; |
39 | |
40 | |
@@ -86,32 +87,33 @@ struct repoinfo *add_repo(const char *url) |
86 | if (++cgit_repolist.count > cgit_repolist.length) { |
87 | if (++cgit_repolist.count > cgit_repolist.length) { |
87 | if (cgit_repolist.length == 0) |
88 | if (cgit_repolist.length == 0) |
88 | cgit_repolist.length = 8; |
89 | cgit_repolist.length = 8; |
89 | else |
90 | else |
90 | cgit_repolist.length *= 2; |
91 | cgit_repolist.length *= 2; |
91 | cgit_repolist.repos = xrealloc(cgit_repolist.repos, |
92 | cgit_repolist.repos = xrealloc(cgit_repolist.repos, |
92 | cgit_repolist.length * |
93 | cgit_repolist.length * |
93 | sizeof(struct repoinfo)); |
94 | sizeof(struct repoinfo)); |
94 | } |
95 | } |
95 | |
96 | |
96 | ret = &cgit_repolist.repos[cgit_repolist.count-1]; |
97 | ret = &cgit_repolist.repos[cgit_repolist.count-1]; |
97 | ret->url = xstrdup(url); |
98 | ret->url = xstrdup(url); |
98 | ret->name = ret->url; |
99 | ret->name = ret->url; |
99 | ret->path = NULL; |
100 | ret->path = NULL; |
100 | ret->desc = NULL; |
101 | ret->desc = NULL; |
101 | ret->owner = NULL; |
102 | ret->owner = NULL; |
| |
103 | ret->group = cgit_repo_group; |
102 | ret->defbranch = "master"; |
104 | ret->defbranch = "master"; |
103 | ret->snapshots = cgit_snapshots; |
105 | ret->snapshots = cgit_snapshots; |
104 | ret->enable_log_filecount = cgit_enable_log_filecount; |
106 | ret->enable_log_filecount = cgit_enable_log_filecount; |
105 | ret->enable_log_linecount = cgit_enable_log_linecount; |
107 | ret->enable_log_linecount = cgit_enable_log_linecount; |
106 | ret->module_link = cgit_module_link; |
108 | ret->module_link = cgit_module_link; |
107 | return ret; |
109 | return ret; |
108 | } |
110 | } |
109 | |
111 | |
110 | struct repoinfo *cgit_get_repoinfo(const char *url) |
112 | struct repoinfo *cgit_get_repoinfo(const char *url) |
111 | { |
113 | { |
112 | int i; |
114 | int i; |
113 | struct repoinfo *repo; |
115 | struct repoinfo *repo; |
114 | |
116 | |
115 | for (i=0; i<cgit_repolist.count; i++) { |
117 | for (i=0; i<cgit_repolist.count; i++) { |
116 | repo = &cgit_repolist.repos[i]; |
118 | repo = &cgit_repolist.repos[i]; |
117 | if (!strcmp(repo->url, url)) |
119 | if (!strcmp(repo->url, url)) |
@@ -147,32 +149,34 @@ void cgit_global_config_cb(const char *name, const char *value) |
147 | else if (!strcmp(name, "cache-root")) |
149 | else if (!strcmp(name, "cache-root")) |
148 | cgit_cache_root = xstrdup(value); |
150 | cgit_cache_root = xstrdup(value); |
149 | else if (!strcmp(name, "cache-root-ttl")) |
151 | else if (!strcmp(name, "cache-root-ttl")) |
150 | cgit_cache_root_ttl = atoi(value); |
152 | cgit_cache_root_ttl = atoi(value); |
151 | else if (!strcmp(name, "cache-repo-ttl")) |
153 | else if (!strcmp(name, "cache-repo-ttl")) |
152 | cgit_cache_repo_ttl = atoi(value); |
154 | cgit_cache_repo_ttl = atoi(value); |
153 | else if (!strcmp(name, "cache-static-ttl")) |
155 | else if (!strcmp(name, "cache-static-ttl")) |
154 | cgit_cache_static_ttl = atoi(value); |
156 | cgit_cache_static_ttl = atoi(value); |
155 | else if (!strcmp(name, "cache-dynamic-ttl")) |
157 | else if (!strcmp(name, "cache-dynamic-ttl")) |
156 | cgit_cache_dynamic_ttl = atoi(value); |
158 | cgit_cache_dynamic_ttl = atoi(value); |
157 | else if (!strcmp(name, "max-message-length")) |
159 | else if (!strcmp(name, "max-message-length")) |
158 | cgit_max_msg_len = atoi(value); |
160 | cgit_max_msg_len = atoi(value); |
159 | else if (!strcmp(name, "max-repodesc-length")) |
161 | else if (!strcmp(name, "max-repodesc-length")) |
160 | cgit_max_repodesc_len = atoi(value); |
162 | cgit_max_repodesc_len = atoi(value); |
161 | else if (!strcmp(name, "max-commit-count")) |
163 | else if (!strcmp(name, "max-commit-count")) |
162 | cgit_max_commit_count = atoi(value); |
164 | cgit_max_commit_count = atoi(value); |
| |
165 | else if (!strcmp(name, "repo.group")) |
| |
166 | cgit_repo_group = xstrdup(value); |
163 | else if (!strcmp(name, "repo.url")) |
167 | else if (!strcmp(name, "repo.url")) |
164 | cgit_repo = add_repo(value); |
168 | cgit_repo = add_repo(value); |
165 | else if (!strcmp(name, "repo.name")) |
169 | else if (!strcmp(name, "repo.name")) |
166 | cgit_repo->name = xstrdup(value); |
170 | cgit_repo->name = xstrdup(value); |
167 | else if (cgit_repo && !strcmp(name, "repo.path")) |
171 | else if (cgit_repo && !strcmp(name, "repo.path")) |
168 | cgit_repo->path = xstrdup(value); |
172 | cgit_repo->path = xstrdup(value); |
169 | else if (cgit_repo && !strcmp(name, "repo.desc")) |
173 | else if (cgit_repo && !strcmp(name, "repo.desc")) |
170 | cgit_repo->desc = xstrdup(value); |
174 | cgit_repo->desc = xstrdup(value); |
171 | else if (cgit_repo && !strcmp(name, "repo.owner")) |
175 | else if (cgit_repo && !strcmp(name, "repo.owner")) |
172 | cgit_repo->owner = xstrdup(value); |
176 | cgit_repo->owner = xstrdup(value); |
173 | else if (cgit_repo && !strcmp(name, "repo.defbranch")) |
177 | else if (cgit_repo && !strcmp(name, "repo.defbranch")) |
174 | cgit_repo->defbranch = xstrdup(value); |
178 | cgit_repo->defbranch = xstrdup(value); |
175 | else if (cgit_repo && !strcmp(name, "repo.snapshots")) |
179 | else if (cgit_repo && !strcmp(name, "repo.snapshots")) |
176 | cgit_repo->snapshots = cgit_snapshots * atoi(value); |
180 | cgit_repo->snapshots = cgit_snapshots * atoi(value); |
177 | else if (cgit_repo && !strcmp(name, "repo.enable-log-filecount")) |
181 | else if (cgit_repo && !strcmp(name, "repo.enable-log-filecount")) |
178 | cgit_repo->enable_log_filecount = cgit_enable_log_filecount * atoi(value); |
182 | cgit_repo->enable_log_filecount = cgit_enable_log_filecount * atoi(value); |
|