author | Lars Hjemli <hjemli@gmail.com> | 2007-10-30 09:39:59 (UTC) |
---|---|---|
committer | Lars Hjemli <hjemli@gmail.com> | 2007-10-30 09:39:59 (UTC) |
commit | 10ac7ad1f30f914dc5ff36ba3651ef6dca11aaf7 (patch) (unidiff) | |
tree | 8d185e972d4b235fc46156b9173a3406af2aacf6 /shared.c | |
parent | fc5880fab8b9afc589aaadd1299c34a6ef2a3c2d (diff) | |
download | cgit-10ac7ad1f30f914dc5ff36ba3651ef6dca11aaf7.zip cgit-10ac7ad1f30f914dc5ff36ba3651ef6dca11aaf7.tar.gz cgit-10ac7ad1f30f914dc5ff36ba3651ef6dca11aaf7.tar.bz2 |
Add config param 'index-info'
This parameter will be used to include a html file in the upcoming sidebar
on the index page.
Signed-off-by: Lars Hjemli <hjemli@gmail.com>
-rw-r--r-- | shared.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -1,52 +1,53 @@ | |||
1 | /* shared.c: global vars + some callback functions | 1 | /* shared.c: global vars + some callback functions |
2 | * | 2 | * |
3 | * Copyright (C) 2006 Lars Hjemli | 3 | * Copyright (C) 2006 Lars Hjemli |
4 | * | 4 | * |
5 | * Licensed under GNU General Public License v2 | 5 | * Licensed under GNU General Public License v2 |
6 | * (see COPYING for full license text) | 6 | * (see COPYING for full license text) |
7 | */ | 7 | */ |
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 | 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 | ||
29 | int cgit_nocache = 0; | 30 | int cgit_nocache = 0; |
30 | int cgit_snapshots = 0; | 31 | int cgit_snapshots = 0; |
31 | int cgit_enable_index_links = 0; | 32 | int cgit_enable_index_links = 0; |
32 | int cgit_enable_log_filecount = 0; | 33 | int cgit_enable_log_filecount = 0; |
33 | int cgit_enable_log_linecount = 0; | 34 | int cgit_enable_log_linecount = 0; |
34 | int cgit_max_lock_attempts = 5; | 35 | int cgit_max_lock_attempts = 5; |
35 | int cgit_cache_root_ttl = 5; | 36 | int cgit_cache_root_ttl = 5; |
36 | int cgit_cache_repo_ttl = 5; | 37 | int cgit_cache_repo_ttl = 5; |
37 | int cgit_cache_dynamic_ttl = 5; | 38 | int cgit_cache_dynamic_ttl = 5; |
38 | int cgit_cache_static_ttl = -1; | 39 | int cgit_cache_static_ttl = -1; |
39 | int cgit_cache_max_create_time = 5; | 40 | int cgit_cache_max_create_time = 5; |
40 | int cgit_summary_log = 0; | 41 | int cgit_summary_log = 0; |
41 | int cgit_summary_tags = 0; | 42 | int cgit_summary_tags = 0; |
42 | int cgit_summary_branches = 0; | 43 | int cgit_summary_branches = 0; |
43 | int cgit_renamelimit = -1; | 44 | int cgit_renamelimit = -1; |
44 | 45 | ||
45 | int cgit_max_msg_len = 60; | 46 | int cgit_max_msg_len = 60; |
46 | int cgit_max_repodesc_len = 60; | 47 | int cgit_max_repodesc_len = 60; |
47 | int cgit_max_commit_count = 50; | 48 | int cgit_max_commit_count = 50; |
48 | 49 | ||
49 | int cgit_query_has_symref = 0; | 50 | int cgit_query_has_symref = 0; |
50 | int cgit_query_has_sha1 = 0; | 51 | int cgit_query_has_sha1 = 0; |
51 | 52 | ||
52 | char *cgit_querystring = NULL; | 53 | char *cgit_querystring = NULL; |
@@ -121,64 +122,66 @@ struct repoinfo *add_repo(const char *url) | |||
121 | ret->defbranch = "master"; | 122 | ret->defbranch = "master"; |
122 | ret->snapshots = cgit_snapshots; | 123 | ret->snapshots = cgit_snapshots; |
123 | ret->enable_log_filecount = cgit_enable_log_filecount; | 124 | ret->enable_log_filecount = cgit_enable_log_filecount; |
124 | ret->enable_log_linecount = cgit_enable_log_linecount; | 125 | ret->enable_log_linecount = cgit_enable_log_linecount; |
125 | ret->module_link = cgit_module_link; | 126 | ret->module_link = cgit_module_link; |
126 | ret->readme = NULL; | 127 | ret->readme = NULL; |
127 | return ret; | 128 | return ret; |
128 | } | 129 | } |
129 | 130 | ||
130 | struct repoinfo *cgit_get_repoinfo(const char *url) | 131 | struct repoinfo *cgit_get_repoinfo(const char *url) |
131 | { | 132 | { |
132 | int i; | 133 | int i; |
133 | struct repoinfo *repo; | 134 | struct repoinfo *repo; |
134 | 135 | ||
135 | for (i=0; i<cgit_repolist.count; i++) { | 136 | for (i=0; i<cgit_repolist.count; i++) { |
136 | repo = &cgit_repolist.repos[i]; | 137 | repo = &cgit_repolist.repos[i]; |
137 | if (!strcmp(repo->url, url)) | 138 | if (!strcmp(repo->url, url)) |
138 | return repo; | 139 | return repo; |
139 | } | 140 | } |
140 | return NULL; | 141 | return NULL; |
141 | } | 142 | } |
142 | 143 | ||
143 | void cgit_global_config_cb(const char *name, const char *value) | 144 | void cgit_global_config_cb(const char *name, const char *value) |
144 | { | 145 | { |
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); |
161 | else if (!strcmp(name, "snapshots")) | 164 | else if (!strcmp(name, "snapshots")) |
162 | cgit_snapshots = cgit_parse_snapshots_mask(value); | 165 | cgit_snapshots = cgit_parse_snapshots_mask(value); |
163 | else if (!strcmp(name, "enable-index-links")) | 166 | else if (!strcmp(name, "enable-index-links")) |
164 | cgit_enable_index_links = atoi(value); | 167 | cgit_enable_index_links = atoi(value); |
165 | else if (!strcmp(name, "enable-log-filecount")) | 168 | else if (!strcmp(name, "enable-log-filecount")) |
166 | cgit_enable_log_filecount = atoi(value); | 169 | cgit_enable_log_filecount = atoi(value); |
167 | else if (!strcmp(name, "enable-log-linecount")) | 170 | else if (!strcmp(name, "enable-log-linecount")) |
168 | cgit_enable_log_linecount = atoi(value); | 171 | cgit_enable_log_linecount = atoi(value); |
169 | else if (!strcmp(name, "cache-root")) | 172 | else if (!strcmp(name, "cache-root")) |
170 | cgit_cache_root = xstrdup(value); | 173 | cgit_cache_root = xstrdup(value); |
171 | else if (!strcmp(name, "cache-root-ttl")) | 174 | else if (!strcmp(name, "cache-root-ttl")) |
172 | cgit_cache_root_ttl = atoi(value); | 175 | cgit_cache_root_ttl = atoi(value); |
173 | else if (!strcmp(name, "cache-repo-ttl")) | 176 | else if (!strcmp(name, "cache-repo-ttl")) |
174 | cgit_cache_repo_ttl = atoi(value); | 177 | cgit_cache_repo_ttl = atoi(value); |
175 | else if (!strcmp(name, "cache-static-ttl")) | 178 | else if (!strcmp(name, "cache-static-ttl")) |
176 | cgit_cache_static_ttl = atoi(value); | 179 | cgit_cache_static_ttl = atoi(value); |
177 | else if (!strcmp(name, "cache-dynamic-ttl")) | 180 | else if (!strcmp(name, "cache-dynamic-ttl")) |
178 | cgit_cache_dynamic_ttl = atoi(value); | 181 | cgit_cache_dynamic_ttl = atoi(value); |
179 | else if (!strcmp(name, "max-message-length")) | 182 | else if (!strcmp(name, "max-message-length")) |
180 | cgit_max_msg_len = atoi(value); | 183 | cgit_max_msg_len = atoi(value); |
181 | else if (!strcmp(name, "max-repodesc-length")) | 184 | else if (!strcmp(name, "max-repodesc-length")) |
182 | cgit_max_repodesc_len = atoi(value); | 185 | cgit_max_repodesc_len = atoi(value); |
183 | else if (!strcmp(name, "max-commit-count")) | 186 | else if (!strcmp(name, "max-commit-count")) |
184 | cgit_max_commit_count = atoi(value); | 187 | cgit_max_commit_count = atoi(value); |