summaryrefslogtreecommitdiffabout
Unidiff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--cgit.h1
-rw-r--r--shared.c3
2 files changed, 4 insertions, 0 deletions
diff --git a/cgit.h b/cgit.h
index dd83f70..b8af970 100644
--- a/cgit.h
+++ b/cgit.h
@@ -115,24 +115,25 @@ struct reflist {
115}; 115};
116 116
117extern const char *cgit_version; 117extern const char *cgit_version;
118 118
119extern struct repolist cgit_repolist; 119extern struct repolist cgit_repolist;
120extern struct repoinfo *cgit_repo; 120extern struct repoinfo *cgit_repo;
121extern int cgit_cmd; 121extern int cgit_cmd;
122 122
123extern char *cgit_root_title; 123extern char *cgit_root_title;
124extern char *cgit_css; 124extern char *cgit_css;
125extern char *cgit_logo; 125extern char *cgit_logo;
126extern char *cgit_index_header; 126extern char *cgit_index_header;
127extern char *cgit_index_info;
127extern char *cgit_logo_link; 128extern char *cgit_logo_link;
128extern char *cgit_module_link; 129extern char *cgit_module_link;
129extern char *cgit_agefile; 130extern char *cgit_agefile;
130extern char *cgit_virtual_root; 131extern char *cgit_virtual_root;
131extern char *cgit_script_name; 132extern char *cgit_script_name;
132extern char *cgit_cache_root; 133extern char *cgit_cache_root;
133extern char *cgit_repo_group; 134extern char *cgit_repo_group;
134 135
135extern int cgit_nocache; 136extern int cgit_nocache;
136extern int cgit_snapshots; 137extern int cgit_snapshots;
137extern int cgit_enable_index_links; 138extern int cgit_enable_index_links;
138extern int cgit_enable_log_filecount; 139extern int cgit_enable_log_filecount;
diff --git a/shared.c b/shared.c
index 4fab1c9..50fe8e1 100644
--- a/shared.c
+++ b/shared.c
@@ -9,24 +9,25 @@
9#include "cgit.h" 9#include "cgit.h"
10 10
11struct repolist cgit_repolist; 11struct repolist cgit_repolist;
12struct repoinfo *cgit_repo; 12struct repoinfo *cgit_repo;
13int cgit_cmd; 13int cgit_cmd;
14 14
15const char *cgit_version = CGIT_VERSION; 15const char *cgit_version = CGIT_VERSION;
16 16
17char *cgit_root_title = "Git repository browser"; 17char *cgit_root_title = "Git repository browser";
18char *cgit_css = "/cgit.css"; 18char *cgit_css = "/cgit.css";
19char *cgit_logo = "/git-logo.png"; 19char *cgit_logo = "/git-logo.png";
20char *cgit_index_header = NULL; 20char *cgit_index_header = NULL;
21char *cgit_index_info = NULL;
21char *cgit_logo_link = "http://www.kernel.org/pub/software/scm/git/docs/"; 22char *cgit_logo_link = "http://www.kernel.org/pub/software/scm/git/docs/";
22char *cgit_module_link = "./?repo=%s&page=commit&id=%s"; 23char *cgit_module_link = "./?repo=%s&page=commit&id=%s";
23char *cgit_agefile = "info/web/last-modified"; 24char *cgit_agefile = "info/web/last-modified";
24char *cgit_virtual_root = NULL; 25char *cgit_virtual_root = NULL;
25char *cgit_script_name = CGIT_SCRIPT_NAME; 26char *cgit_script_name = CGIT_SCRIPT_NAME;
26char *cgit_cache_root = CGIT_CACHE_ROOT; 27char *cgit_cache_root = CGIT_CACHE_ROOT;
27char *cgit_repo_group = NULL; 28char *cgit_repo_group = NULL;
28 29
29int cgit_nocache = 0; 30int cgit_nocache = 0;
30int cgit_snapshots = 0; 31int cgit_snapshots = 0;
31int cgit_enable_index_links = 0; 32int cgit_enable_index_links = 0;
32int cgit_enable_log_filecount = 0; 33int cgit_enable_log_filecount = 0;
@@ -141,24 +142,26 @@ struct repoinfo *cgit_get_repoinfo(const char *url)
141} 142}
142 143
143void cgit_global_config_cb(const char *name, const char *value) 144void 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);