author | Lars Hjemli <hjemli@gmail.com> | 2011-02-19 13:25:55 (UTC) |
---|---|---|
committer | Lars Hjemli <hjemli@gmail.com> | 2011-02-19 13:25:55 (UTC) |
commit | fb9e6d1594a24fe4e551fd57a9c91fd18b14806e (patch) (unidiff) | |
tree | bc0b99adcce3a19f127e6eb2509585ed9486831e /cgit.h | |
parent | 31e1f9af1d46bd7dfdb3b2ac580c0d0cc8dbaa63 (diff) | |
parent | df522794c38934be3229a11e0e2432a1f2a3bc8d (diff) | |
download | cgit-fb9e6d1594a24fe4e551fd57a9c91fd18b14806e.zip cgit-fb9e6d1594a24fe4e551fd57a9c91fd18b14806e.tar.gz cgit-fb9e6d1594a24fe4e551fd57a9c91fd18b14806e.tar.bz2 |
Merge branch 'jh/scan-path'
* jh/scan-path:
scan_path(): Do not recurse into hidden directories by default
scan_path(): Improve handling of inaccessible directories
-rw-r--r-- | cgit.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -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; |