Unidiff1 files changed, 1 insertions, 0 deletions
|
diff --git a/cgit.h b/cgit.h index f5f68ac..ad94905 100644 --- a/ cgit.h+++ b/ cgit.h |
|
@@ -194,32 +194,33 @@ struct cgit_config { |
194 | int enable_subject_links; |
194 | int enable_subject_links; |
195 | int enable_tree_linenumbers; |
195 | int enable_tree_linenumbers; |
196 | int local_time; |
196 | int local_time; |
197 | int max_atom_items; |
197 | int max_atom_items; |
198 | int max_repo_count; |
198 | int max_repo_count; |
199 | int max_commit_count; |
199 | int max_commit_count; |
200 | int max_lock_attempts; |
200 | int max_lock_attempts; |
201 | int max_msg_len; |
201 | int max_msg_len; |
202 | int max_repodesc_len; |
202 | int max_repodesc_len; |
203 | int max_blob_size; |
203 | int max_blob_size; |
204 | int max_stats; |
204 | int max_stats; |
205 | int nocache; |
205 | int nocache; |
206 | int noplainemail; |
206 | int noplainemail; |
207 | int noheader; |
207 | int noheader; |
208 | int renamelimit; |
208 | int renamelimit; |
209 | int remove_suffix; |
209 | int remove_suffix; |
| |
210 | int scan_hidden_path; |
210 | int section_from_path; |
211 | int section_from_path; |
211 | int snapshots; |
212 | int snapshots; |
212 | int summary_branches; |
213 | int summary_branches; |
213 | int summary_log; |
214 | int summary_log; |
214 | int summary_tags; |
215 | int summary_tags; |
215 | int ssdiff; |
216 | int ssdiff; |
216 | struct string_list mimetypes; |
217 | struct string_list mimetypes; |
217 | struct cgit_filter *about_filter; |
218 | struct cgit_filter *about_filter; |
218 | struct cgit_filter *commit_filter; |
219 | struct cgit_filter *commit_filter; |
219 | struct cgit_filter *source_filter; |
220 | struct cgit_filter *source_filter; |
220 | }; |
221 | }; |
221 | |
222 | |
222 | struct cgit_page { |
223 | struct cgit_page { |
223 | time_t modified; |
224 | time_t modified; |
224 | time_t expires; |
225 | time_t expires; |
225 | size_t size; |
226 | size_t size; |
|