X-Git-Url: https://git.cweiske.de/phorkie.git/blobdiff_plain/d9f6b83ed6d8a4546e4119c64b639adda057d25e..0290cb4779bf410da5561151c50b96e5e48ea7bb:/data/config.default.php diff --git a/data/config.default.php b/data/config.default.php index 443328d..b648614 100644 --- a/data/config.default.php +++ b/data/config.default.php @@ -1,13 +1,18 @@ false, - 'gitdir' => __DIR__ . '/../repos/git/', - 'workdir' => __DIR__ . '/../repos/work/', - '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' + '\\phorkie\\Tool_Xmllint' => true, + '\\phorkie\\Tool_PHPlint' => true, ); /** * Array of supported file types / languages. @@ -35,21 +40,31 @@ $GLOBALS['phorkie']['languages'] = array( 'geshi' => 'xml', 'show' => false ), - 'js' => array( - 'title' => 'Javascript', - 'mime' => 'application/javascript', - 'geshi' => 'javascript' + 'jpg' => array( + 'title' => 'JPEG image', + 'mime' => 'image/jpeg', + 'show' => false ), 'ini' => array( 'title' => 'Ini', 'mime' => 'text/ini', 'geshi' => 'ini' ), + 'js' => array( + 'title' => 'Javascript', + 'mime' => 'application/javascript', + 'geshi' => 'javascript' + ), 'php' => array( 'title' => 'PHP', 'mime' => 'text/x-php', 'geshi' => 'php' ), + 'png' => array( + 'title' => 'PNG image', + 'mime' => 'image/png', + 'show' => false + ), 'rst' => array( 'title' => 'reStructuredText', 'mime' => 'text/x-rst', @@ -66,9 +81,14 @@ $GLOBALS['phorkie']['languages'] = array( '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 */ + 'mime' => 'text/x-typoscript',/* TODO: correct type */ 'geshi' => 'typoscript' ), 'txt' => array(