Unidiff1 files changed, 1 insertions, 0 deletions
|
diff --git a/cgit.h b/cgit.h index bed770b..74aa340 100644 --- a/ cgit.h+++ b/ cgit.h |
|
@@ -197,32 +197,33 @@ struct cgit_config { |
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 | |
225 | struct cgit_page { |
226 | struct 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; |
|