summaryrefslogtreecommitdiffabout
path: root/cgit.h
Unidiff
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 bed770b..74aa340 100644
--- a/cgit.h
+++ b/cgit.h
@@ -189,48 +189,49 @@ struct cgit_config {
189 int embedded; 189 int embedded;
190 int enable_filter_overrides; 190 int enable_filter_overrides;
191 int enable_gitweb_owner; 191 int enable_gitweb_owner;
192 int enable_index_links; 192 int enable_index_links;
193 int enable_commit_graph; 193 int enable_commit_graph;
194 int enable_log_filecount; 194 int enable_log_filecount;
195 int enable_log_linecount; 195 int enable_log_linecount;
196 int enable_remote_branches; 196 int enable_remote_branches;
197 int enable_subject_links; 197 int enable_subject_links;
198 int enable_tree_linenumbers; 198 int enable_tree_linenumbers;
199 int local_time; 199 int local_time;
200 int max_atom_items; 200 int max_atom_items;
201 int max_repo_count; 201 int max_repo_count;
202 int max_commit_count; 202 int max_commit_count;
203 int max_lock_attempts; 203 int max_lock_attempts;
204 int max_msg_len; 204 int max_msg_len;
205 int max_repodesc_len; 205 int max_repodesc_len;
206 int max_blob_size; 206 int max_blob_size;
207 int max_stats; 207 int max_stats;
208 int nocache; 208 int nocache;
209 int noplainemail; 209 int noplainemail;
210 int noheader; 210 int noheader;
211 int renamelimit; 211 int renamelimit;
212 int remove_suffix; 212 int remove_suffix;
213 int scan_hidden_path;
213 int section_from_path; 214 int section_from_path;
214 int snapshots; 215 int snapshots;
215 int summary_branches; 216 int summary_branches;
216 int summary_log; 217 int summary_log;
217 int summary_tags; 218 int summary_tags;
218 int ssdiff; 219 int ssdiff;
219 struct string_list mimetypes; 220 struct string_list mimetypes;
220 struct cgit_filter *about_filter; 221 struct cgit_filter *about_filter;
221 struct cgit_filter *commit_filter; 222 struct cgit_filter *commit_filter;
222 struct cgit_filter *source_filter; 223 struct cgit_filter *source_filter;
223}; 224};
224 225
225struct cgit_page { 226struct cgit_page {
226 time_t modified; 227 time_t modified;
227 time_t expires; 228 time_t expires;
228 size_t size; 229 size_t size;
229 char *mimetype; 230 char *mimetype;
230 char *charset; 231 char *charset;
231 char *filename; 232 char *filename;
232 char *etag; 233 char *etag;
233 char *title; 234 char *title;
234 int status; 235 int status;
235 char *statusmsg; 236 char *statusmsg;
236}; 237};