X-Git-Url: https://git.cweiske.de/phorkie.git/blobdiff_plain/7bf061541b0424b427bbbd1300e81d12190c9c54..637ede8759615e1aac86af232f5c053389eb37b7:/data/config.default.php diff --git a/data/config.default.php b/data/config.default.php index d55721d..c1446cc 100644 --- a/data/config.default.php +++ b/data/config.default.php @@ -1,8 +1,18 @@ __DIR__ . '/../repos/', - 'tpl' => __DIR__ . '/templates/', - 'css' => 'http://twitter.github.com/bootstrap/assets/css/bootstrap.css', + 'debug' => false, + 'gitdir' => __DIR__ . '/../repos/git/', + 'workdir' => __DIR__ . '/../repos/work/', + 'tpl' => __DIR__ . '/templates/', + 'css' => 'http://twitter.github.com/bootstrap/assets/css/bootstrap.css', + 'title' => 'phorkie', + 'topbar' => '', + 'setupcheck' => true, + 'elasticsearch' => null, +); +$GLOBALS['phorkie']['tools'] = array( + '\\phorkie\\Tool_Xmllint' => true, + '\\phorkie\\Tool_PHPlint' => true, ); /** * Array of supported file types / languages. @@ -30,6 +40,11 @@ $GLOBALS['phorkie']['languages'] = array( 'geshi' => 'xml', 'show' => false ), + 'jpg' => array( + 'title' => 'JPEG image', + 'mime' => 'image/jpeg', + 'show' => false + ), 'js' => array( 'title' => 'Javascript', 'mime' => 'application/javascript', @@ -45,6 +60,11 @@ $GLOBALS['phorkie']['languages'] = array( 'mime' => 'text/x-php', 'geshi' => 'php' ), + 'png' => array( + 'title' => 'PNG image', + 'mime' => 'image/png', + 'show' => false + ), 'rst' => array( 'title' => 'reStructuredText', 'mime' => 'text/x-rst', @@ -56,6 +76,16 @@ $GLOBALS['phorkie']['languages'] = array( 'mime' => 'text/x-shellscript', 'geshi' => 'bash' ), + 'sql' => array( + 'title' => 'SQL', + 'mime' => 'text/x-sql', + 'geshi' => 'sql' + ), + 'svg' => array( + 'title' => 'SVG image', + 'mime' => 'image/svg+xml', + 'show' => false + ), 'ts' => array( 'title' => 'TypoScript', 'mime' => 'text/plain',/* TODO: correct type */