|
diff --git a/cgit.h b/cgit.h index dd83f70..b8af970 100644 --- a/ cgit.h+++ b/ cgit.h |
|
@@ -119,16 +119,17 @@ extern const char *cgit_version; |
119 | extern struct repolist cgit_repolist; |
119 | extern struct repolist cgit_repolist; |
120 | extern struct repoinfo *cgit_repo; |
120 | extern struct repoinfo *cgit_repo; |
121 | extern int cgit_cmd; |
121 | extern int cgit_cmd; |
122 | |
122 | |
123 | extern char *cgit_root_title; |
123 | extern char *cgit_root_title; |
124 | extern char *cgit_css; |
124 | extern char *cgit_css; |
125 | extern char *cgit_logo; |
125 | extern char *cgit_logo; |
126 | extern char *cgit_index_header; |
126 | extern char *cgit_index_header; |
| |
127 | extern char *cgit_index_info; |
127 | extern char *cgit_logo_link; |
128 | extern char *cgit_logo_link; |
128 | extern char *cgit_module_link; |
129 | extern char *cgit_module_link; |
129 | extern char *cgit_agefile; |
130 | extern char *cgit_agefile; |
130 | extern char *cgit_virtual_root; |
131 | extern char *cgit_virtual_root; |
131 | extern char *cgit_script_name; |
132 | extern char *cgit_script_name; |
132 | extern char *cgit_cache_root; |
133 | extern char *cgit_cache_root; |
133 | extern char *cgit_repo_group; |
134 | extern char *cgit_repo_group; |
134 | |
135 | |
|
|
diff --git a/shared.c b/shared.c index 4fab1c9..50fe8e1 100644 --- a/ shared.c+++ b/ shared.c |
|
@@ -13,16 +13,17 @@ struct repoinfo *cgit_repo; |
13 | int cgit_cmd; |
13 | int cgit_cmd; |
14 | |
14 | |
15 | const char *cgit_version = CGIT_VERSION; |
15 | const char *cgit_version = CGIT_VERSION; |
16 | |
16 | |
17 | char *cgit_root_title = "Git repository browser"; |
17 | char *cgit_root_title = "Git repository browser"; |
18 | char *cgit_css = "/cgit.css"; |
18 | char *cgit_css = "/cgit.css"; |
19 | char *cgit_logo = "/git-logo.png"; |
19 | char *cgit_logo = "/git-logo.png"; |
20 | char *cgit_index_header = NULL; |
20 | char *cgit_index_header = NULL; |
| |
21 | char *cgit_index_info = NULL; |
21 | char *cgit_logo_link = "http://www.kernel.org/pub/software/scm/git/docs/"; |
22 | char *cgit_logo_link = "http://www.kernel.org/pub/software/scm/git/docs/"; |
22 | char *cgit_module_link = "./?repo=%s&page=commit&id=%s"; |
23 | char *cgit_module_link = "./?repo=%s&page=commit&id=%s"; |
23 | char *cgit_agefile = "info/web/last-modified"; |
24 | char *cgit_agefile = "info/web/last-modified"; |
24 | char *cgit_virtual_root = NULL; |
25 | char *cgit_virtual_root = NULL; |
25 | char *cgit_script_name = CGIT_SCRIPT_NAME; |
26 | char *cgit_script_name = CGIT_SCRIPT_NAME; |
26 | char *cgit_cache_root = CGIT_CACHE_ROOT; |
27 | char *cgit_cache_root = CGIT_CACHE_ROOT; |
27 | char *cgit_repo_group = NULL; |
28 | char *cgit_repo_group = NULL; |
28 | |
29 | |
@@ -145,16 +146,18 @@ void cgit_global_config_cb(const char *name, const char *value) |
145 | if (!strcmp(name, "root-title")) |
146 | if (!strcmp(name, "root-title")) |
146 | cgit_root_title = xstrdup(value); |
147 | cgit_root_title = xstrdup(value); |
147 | else if (!strcmp(name, "css")) |
148 | else if (!strcmp(name, "css")) |
148 | cgit_css = xstrdup(value); |
149 | cgit_css = xstrdup(value); |
149 | else if (!strcmp(name, "logo")) |
150 | else if (!strcmp(name, "logo")) |
150 | cgit_logo = xstrdup(value); |
151 | cgit_logo = xstrdup(value); |
151 | else if (!strcmp(name, "index-header")) |
152 | else if (!strcmp(name, "index-header")) |
152 | cgit_index_header = xstrdup(value); |
153 | cgit_index_header = xstrdup(value); |
| |
154 | else if (!strcmp(name, "index-info")) |
| |
155 | cgit_index_info = xstrdup(value); |
153 | else if (!strcmp(name, "logo-link")) |
156 | else if (!strcmp(name, "logo-link")) |
154 | cgit_logo_link = xstrdup(value); |
157 | cgit_logo_link = xstrdup(value); |
155 | else if (!strcmp(name, "module-link")) |
158 | else if (!strcmp(name, "module-link")) |
156 | cgit_module_link = xstrdup(value); |
159 | cgit_module_link = xstrdup(value); |
157 | else if (!strcmp(name, "virtual-root")) |
160 | else if (!strcmp(name, "virtual-root")) |
158 | cgit_virtual_root = trim_end(value, '/'); |
161 | cgit_virtual_root = trim_end(value, '/'); |
159 | else if (!strcmp(name, "nocache")) |
162 | else if (!strcmp(name, "nocache")) |
160 | cgit_nocache = atoi(value); |
163 | cgit_nocache = atoi(value); |
|