author | Johan Herland <johan@herland.net> | 2010-11-15 19:41:00 (UTC) |
---|---|---|
committer | Lars Hjemli <hjemli@gmail.com> | 2011-02-19 13:25:14 (UTC) |
commit | df522794c38934be3229a11e0e2432a1f2a3bc8d (patch) (unidiff) | |
tree | f11aef6d303a5327303a4471d47444764bea53d8 /cgit.h | |
parent | 682adbc0cad2baa1a6119013b166f52de3ee3352 (diff) | |
download | cgit-df522794c38934be3229a11e0e2432a1f2a3bc8d.zip cgit-df522794c38934be3229a11e0e2432a1f2a3bc8d.tar.gz cgit-df522794c38934be3229a11e0e2432a1f2a3bc8d.tar.bz2 |
scan_path(): Do not recurse into hidden directories by default
Paths that start with a period ('.') are considered hidden in the Unix world.
scan_path() should arguably not recurse into these directories by default.
This patch makes it so, and introduces the "scan-hidden-path" config variable
for overriding the new default and revert to the old behaviour (scanning _all_
directories, including hidden .directories).
Signed-off-by: Johan Herland <johan@herland.net>
Signed-off-by: Lars Hjemli <larsh@prediktor.no>
-rw-r--r-- | cgit.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -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; |