summaryrefslogtreecommitdiffabout
path: root/cgit.h
authorLars Hjemli <hjemli@gmail.com>2009-08-24 06:53:21 (UTC)
committer Lars Hjemli <hjemli@gmail.com>2009-08-24 08:22:59 (UTC)
commit2273c2c821bfc77d492d7e97ae38f162d7fc91aa (patch) (unidiff)
tree688acf38d828122c86af88585cd89dbf23efc239 /cgit.h
parent007df98d2114fac4e9134cd7bc7e2960d0d730b4 (diff)
downloadcgit-2273c2c821bfc77d492d7e97ae38f162d7fc91aa.zip
cgit-2273c2c821bfc77d492d7e97ae38f162d7fc91aa.tar.gz
cgit-2273c2c821bfc77d492d7e97ae38f162d7fc91aa.tar.bz2
Add config option 'enable-filter-overrides'
This option must be enabled if repo-specific cgitrc files should be allowed to override any of the 'filter' options. Signed-off-by: Lars Hjemli <hjemli@gmail.com>
Diffstat (limited to 'cgit.h') (more/less context) (ignore whitespace changes)
-rw-r--r--cgit.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/cgit.h b/cgit.h
index 3359be9..ef109aa 100644
--- a/cgit.h
+++ b/cgit.h
@@ -129,96 +129,97 @@ struct cgit_query {
129 char *raw; 129 char *raw;
130 char *repo; 130 char *repo;
131 char *page; 131 char *page;
132 char *search; 132 char *search;
133 char *grep; 133 char *grep;
134 char *head; 134 char *head;
135 char *sha1; 135 char *sha1;
136 char *sha2; 136 char *sha2;
137 char *path; 137 char *path;
138 char *name; 138 char *name;
139 char *mimetype; 139 char *mimetype;
140 char *url; 140 char *url;
141 char *period; 141 char *period;
142 int ofs; 142 int ofs;
143 int nohead; 143 int nohead;
144 char *sort; 144 char *sort;
145 int showmsg; 145 int showmsg;
146}; 146};
147 147
148struct cgit_config { 148struct cgit_config {
149 char *agefile; 149 char *agefile;
150 char *cache_root; 150 char *cache_root;
151 char *clone_prefix; 151 char *clone_prefix;
152 char *css; 152 char *css;
153 char *favicon; 153 char *favicon;
154 char *footer; 154 char *footer;
155 char *head_include; 155 char *head_include;
156 char *header; 156 char *header;
157 char *index_header; 157 char *index_header;
158 char *index_info; 158 char *index_info;
159 char *logo; 159 char *logo;
160 char *logo_link; 160 char *logo_link;
161 char *module_link; 161 char *module_link;
162 char *robots; 162 char *robots;
163 char *root_title; 163 char *root_title;
164 char *root_desc; 164 char *root_desc;
165 char *root_readme; 165 char *root_readme;
166 char *script_name; 166 char *script_name;
167 char *section; 167 char *section;
168 char *virtual_root; 168 char *virtual_root;
169 int cache_size; 169 int cache_size;
170 int cache_dynamic_ttl; 170 int cache_dynamic_ttl;
171 int cache_max_create_time; 171 int cache_max_create_time;
172 int cache_repo_ttl; 172 int cache_repo_ttl;
173 int cache_root_ttl; 173 int cache_root_ttl;
174 int cache_scanrc_ttl; 174 int cache_scanrc_ttl;
175 int cache_static_ttl; 175 int cache_static_ttl;
176 int embedded; 176 int embedded;
177 int enable_filter_overrides;
177 int enable_index_links; 178 int enable_index_links;
178 int enable_log_filecount; 179 int enable_log_filecount;
179 int enable_log_linecount; 180 int enable_log_linecount;
180 int local_time; 181 int local_time;
181 int max_repo_count; 182 int max_repo_count;
182 int max_commit_count; 183 int max_commit_count;
183 int max_lock_attempts; 184 int max_lock_attempts;
184 int max_msg_len; 185 int max_msg_len;
185 int max_repodesc_len; 186 int max_repodesc_len;
186 int max_stats; 187 int max_stats;
187 int nocache; 188 int nocache;
188 int noplainemail; 189 int noplainemail;
189 int noheader; 190 int noheader;
190 int renamelimit; 191 int renamelimit;
191 int snapshots; 192 int snapshots;
192 int summary_branches; 193 int summary_branches;
193 int summary_log; 194 int summary_log;
194 int summary_tags; 195 int summary_tags;
195 struct string_list mimetypes; 196 struct string_list mimetypes;
196 struct cgit_filter *about_filter; 197 struct cgit_filter *about_filter;
197 struct cgit_filter *commit_filter; 198 struct cgit_filter *commit_filter;
198 struct cgit_filter *source_filter; 199 struct cgit_filter *source_filter;
199}; 200};
200 201
201struct cgit_page { 202struct cgit_page {
202 time_t modified; 203 time_t modified;
203 time_t expires; 204 time_t expires;
204 size_t size; 205 size_t size;
205 char *mimetype; 206 char *mimetype;
206 char *charset; 207 char *charset;
207 char *filename; 208 char *filename;
208 char *etag; 209 char *etag;
209 char *title; 210 char *title;
210 int status; 211 int status;
211 char *statusmsg; 212 char *statusmsg;
212}; 213};
213 214
214struct cgit_environment { 215struct cgit_environment {
215 char *cgit_config; 216 char *cgit_config;
216 char *http_host; 217 char *http_host;
217 char *https; 218 char *https;
218 char *no_http; 219 char *no_http;
219 char *path_info; 220 char *path_info;
220 char *query_string; 221 char *query_string;
221 char *request_method; 222 char *request_method;
222 char *script_name; 223 char *script_name;
223 char *server_name; 224 char *server_name;
224 char *server_port; 225 char *server_port;