1<?php 2/** 3 * Default configuration for the dokukit template 4 * 5 * @license: GPL 2 (http://www.gnu.org/licenses/gpl.html) 6 * @author: Michael Klier <chi@chimeric.de> 7 * @author Klaus Vormweg <klaus.vormweg@gmx.de> 8 * @author Robin Roth <robin.roth@kit.edu> 9 * @author Martin Gabelmann <martin@gabelmann.biz> 10 */ 11 12$conf['sidebar'] = 'index'; // 'file' or 'index' 13$conf['cleanindex'] = 0; // 1 or 0 14$conf['cleanindexlist'] = 'wiki,playground'; // empty or comma-separated list of namespaces 15$conf['showsearch'] = 1; // 1 or 0 16$conf['sidebaredit'] = 1; // 1 or 0 17$conf['showextlinks'] = 1; // 1 or 0 18$conf['extlinks'] = 'extlinks'; //filename 19$conf['institute_de'] = "Test Institut"; //german institute name 20$conf['institute_en'] = "Test Institute"; //english institute name 21$conf['shortinstitute'] = 'TI'; //instituts short name 22$conf['title_prefix'] = 'TI - '; //prefix string 23$conf['showlogin'] = 1; //show loginbutton 24$conf['boxfiles'] = ''; //comma separated list of files 25$conf['showboxes'] = 0; //1 or 0 26?> 27