www/local.php.sample

99 lines
3.8 KiB
Plaintext

<?php
/*
* Dokuwiki's Main Configuration File - Local Settings
* Auto-generated by config plugin
* Run for user: beber
* Date: Sat, 11 Apr 2015 14:51:26 -0700
*/
$conf['title'] = '';
$conf['template'] = 'e';
$conf['license'] = '0';
$conf['recent'] = 0;
$conf['recent_days'] = 0;
$conf['breadcrumbs'] = 0;
$conf['dformat'] = '';
$conf['tocminheads'] = '20';
$conf['maxtoclevel'] = '0';
$conf['maxseclevel'] = '0';
$conf['useheading'] = '1';
$conf['useacl'] = 1;
$conf['passcrypt'] = 'sha512';
$conf['superuser'] = '@admin';
$conf['disableactions'] = 'recent,revisions';
$conf['jpg_quality'] = 90;
$conf['fetchsize'] = 5000000;
$conf['subscribers'] = 1;
$conf['mailfrom'] = 'no-reply@enlightenment.org';
$conf['mailprefix'] = 'Enlightenment';
$conf['sitemap'] = 1;
$conf['updatecheck'] = 0;
$conf['userewrite'] = '1';
$conf['useslash'] = 1;
$conf['compress'] = 0;
$conf['send404'] = 1;
$conf['compression'] = '0';
$conf['plugin']['include']['showfooter'] = 0;
$conf['plugin']['include']['showdate'] = 0;
$conf['plugin']['include']['showuser'] = 0;
$conf['plugin']['include']['showcomments'] = 0;
$conf['plugin']['include']['showlinkbacks'] = 0;
$conf['plugin']['include']['showtags'] = 0;
$conf['plugin']['include']['showeditbtn'] = 1;
$conf['plugin']['include']['doredirect'] = 0;
$conf['plugin']['include']['doindent'] = 0;
$conf['plugin']['include']['parlink'] = 0;
$conf['plugin']['include']['safeindex'] = 0;
$conf['plugin']['include']['readmore'] = 0;
$conf['plugin']['captcha']['mode'] = 'audio';
$conf['plugin']['captcha']['width'] = 300;
$conf['plugin']['captcha']['height'] = 100;
$conf['plugin']['discussion']['allowguests'] = 0;
$conf['plugin']['discussion']['urlfield'] = 1;
$conf['plugin']['discussion']['moderatorgroups'] = 'admin,edit';
$conf['plugin']['gitbacked']['pushAfterCommit'] = 0;
$conf['plugin']['gitbacked']['periodicPull'] = 0;
$conf['plugin']['gitbacked']['periodicMinutes'] = 0;
$conf['plugin']['gitbacked']['repoPath'] = 'data/www-content';
$conf['plugin']['gitbacked']['repoWorkDir'] = 'data/www-content/tmp';
$conf['plugin']['gitbacked']['ignorePaths'] = 'pages/playground/';
$conf['tpl']['dokui']['hide-entry-title'] = '1';
$conf['datadir'] = 'data/www-content/pages';
$conf['mediadir'] = 'data/www-content/media';
/* new config - patches to dokuwiki enabled this. this is a directory
* realtive to 'datadir' config above where we store metadata right in the
* wiki itself to holid linking and documentation for keywords in specific
* languages like c, lua, cpp, js, python etc. you need the below directory
* and then like
* $dir/$language/keyword-link.txt
* #dir/$language/keyword-list.txt
*
* where $dir is the below base dir and $language is the lang in a code
* block like c, cpp, js etc. so for example you may have:
*
* docs/generated/c/keyword-link.txt
* docs/generated/c/keyword-list.txt
*
* inside your "pages" dir for the wiki. the link file is simply a base url
* pattern that allows you to direct where a detected keyword link is pointed
* to such as:
*
* /docs/generated/c/keywords/{FNAMEL}
*
* this replaces {FNAMEL} with the keyword. so if ou have in the wiki there
* a keywords directory and keyword.txt - this cam be the documentation for
* that keyword. this is done to alllow auto-linking of code examples as
* well as anything else code-related to appropriate documentation for a
* project without people having to hand link in everything all the time,
* much like what doxygen does, but in dokuwiki. right now it only works
* inside code blocks syntax hilighted by geshi
*/
$conf['code_extn'] = 'develop/api/ref';
/* max cache time for a wiki pagee - this is so that code keyword
* hilighting works even if a page doesn't have a
* ~~NOCACHE~~ directive in it. if it has this in it, then code keyword
* extension hilighting is updated immediately
*/
$conf['cachetime'] = 10;
// end auto-generated content