Add settings for max tree depth and exclusion path.

Fixes T8
This commit is contained in:
Tim Schumacher 2014-01-27 13:29:49 +01:00
parent 05ded3b757
commit 53b593400c
4 changed files with 21 additions and 2 deletions

3
conf/default.php Normal file
View file

@ -0,0 +1,3 @@
<?php
$conf['treedepth'] = 3;
$conf['exclusion_mask'] = '/sidebar|wiki(.*)/';

8
conf/metadata.php Normal file
View file

@ -0,0 +1,8 @@
<?php
$meta['treedepth'] = array(
'numeric'
);
$meta['exclusion_mask'] = array(
'string'
);