X-Git-Url: https://git.cweiske.de/phorkie.git/blobdiff_plain/b9ffa6b92277d3dc8a4eca77119ea098e20f36f0..39bd200baed00b5b63cc62ce947ef708710ac81c:/data/config.default.php?ds=sidebyside diff --git a/data/config.default.php b/data/config.default.php index b07f042..e8c3d80 100644 --- a/data/config.default.php +++ b/data/config.default.php @@ -7,8 +7,8 @@ $GLOBALS['phorkie']['cfg'] = array( 'css' => 'http://twitter.github.com/bootstrap/assets/css/bootstrap.css', ); $GLOBALS['phorkie']['tools'] = array( - '\\phorkie\\Tool_Xmllint', - '\\phorkie\\Tool_PHPlint', + '\\phorkie\\Tool_Xmllint' => true, + '\\phorkie\\Tool_PHPlint' => true, ); /** * Array of supported file types / languages. @@ -36,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', @@ -51,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', @@ -67,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 */