X-Git-Url: https://git.cweiske.de/phorkie.git/blobdiff_plain/1c14a6bfb93c914374a6b2f96aec971f8c5b3053..a4a47e2f9bd26259f0f6256a9652a39836c56a4d:/data/config.default.php diff --git a/data/config.default.php b/data/config.default.php index cec3799..e8c3d80 100644 --- a/data/config.default.php +++ b/data/config.default.php @@ -1,10 +1,15 @@ false, 'gitdir' => __DIR__ . '/../repos/git/', 'workdir' => __DIR__ . '/../repos/work/', 'tpl' => __DIR__ . '/templates/', 'css' => 'http://twitter.github.com/bootstrap/assets/css/bootstrap.css', ); +$GLOBALS['phorkie']['tools'] = array( + '\\phorkie\\Tool_Xmllint' => true, + '\\phorkie\\Tool_PHPlint' => true, +); /** * Array of supported file types / languages. * Key is the file extension @@ -31,6 +36,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', @@ -46,6 +56,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', @@ -62,6 +77,11 @@ $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 */