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
@@ -162,96 +162,97 @@ struct cgit_config { | |||
162 | char *footer; | 162 | char *footer; |
163 | char *head_include; | 163 | char *head_include; |
164 | char *header; | 164 | char *header; |
165 | char *index_header; | 165 | char *index_header; |
166 | char *index_info; | 166 | char *index_info; |
167 | char *logo; | 167 | char *logo; |
168 | char *logo_link; | 168 | char *logo_link; |
169 | char *module_link; | 169 | char *module_link; |
170 | char *project_list; | 170 | char *project_list; |
171 | char *readme; | 171 | char *readme; |
172 | char *robots; | 172 | char *robots; |
173 | char *root_title; | 173 | char *root_title; |
174 | char *root_desc; | 174 | char *root_desc; |
175 | char *root_readme; | 175 | char *root_readme; |
176 | char *script_name; | 176 | char *script_name; |
177 | char *section; | 177 | char *section; |
178 | char *virtual_root; | 178 | char *virtual_root; |
179 | char *strict_export; | 179 | char *strict_export; |
180 | int cache_size; | 180 | int cache_size; |
181 | int cache_dynamic_ttl; | 181 | int cache_dynamic_ttl; |
182 | int cache_max_create_time; | 182 | int cache_max_create_time; |
183 | int cache_repo_ttl; | 183 | int cache_repo_ttl; |
184 | int cache_root_ttl; | 184 | int cache_root_ttl; |
185 | int cache_scanrc_ttl; | 185 | int cache_scanrc_ttl; |
186 | int cache_static_ttl; | 186 | int cache_static_ttl; |
187 | int embedded; | 187 | int embedded; |
188 | int enable_filter_overrides; | 188 | int enable_filter_overrides; |
189 | int enable_gitweb_owner; | 189 | int enable_gitweb_owner; |
190 | int enable_index_links; | 190 | int enable_index_links; |
191 | int enable_log_filecount; | 191 | int enable_log_filecount; |
192 | int enable_log_linecount; | 192 | int enable_log_linecount; |
193 | int enable_remote_branches; | 193 | int enable_remote_branches; |
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; |
226 | char *mimetype; | 227 | char *mimetype; |
227 | char *charset; | 228 | char *charset; |
228 | char *filename; | 229 | char *filename; |
229 | char *etag; | 230 | char *etag; |
230 | char *title; | 231 | char *title; |
231 | int status; | 232 | int status; |
232 | char *statusmsg; | 233 | char *statusmsg; |
233 | }; | 234 | }; |
234 | 235 | ||
235 | struct cgit_environment { | 236 | struct cgit_environment { |
236 | char *cgit_config; | 237 | char *cgit_config; |
237 | char *http_host; | 238 | char *http_host; |
238 | char *https; | 239 | char *https; |
239 | char *no_http; | 240 | char *no_http; |
240 | char *path_info; | 241 | char *path_info; |
241 | char *query_string; | 242 | char *query_string; |
242 | char *request_method; | 243 | char *request_method; |
243 | char *script_name; | 244 | char *script_name; |
244 | char *server_name; | 245 | char *server_name; |
245 | char *server_port; | 246 | char *server_port; |
246 | }; | 247 | }; |
247 | 248 | ||
248 | struct cgit_context { | 249 | struct cgit_context { |
249 | struct cgit_environment env; | 250 | struct cgit_environment env; |
250 | struct cgit_query qry; | 251 | struct cgit_query qry; |
251 | struct cgit_config cfg; | 252 | struct cgit_config cfg; |
252 | struct cgit_repo *repo; | 253 | struct cgit_repo *repo; |
253 | struct cgit_page page; | 254 | struct cgit_page page; |
254 | }; | 255 | }; |
255 | 256 | ||
256 | struct cgit_snapshot_format { | 257 | struct cgit_snapshot_format { |
257 | const char *suffix; | 258 | const char *suffix; |