X-Git-Url: https://git.cweiske.de/phorkie.git/blobdiff_plain/df60b8725627fc7b15bd2e6ead836d865bd221ef..0c2d838a9b2f0c81d460b49ccd74775440ced828:/data/config.default.php diff --git a/data/config.default.php b/data/config.default.php index 17e4a49..c40c690 100644 --- a/data/config.default.php +++ b/data/config.default.php @@ -9,6 +9,8 @@ $GLOBALS['phorkie']['cfg'] = array( 'topbar' => '', 'setupcheck' => true, 'elasticsearch' => null, + 'geshi' => 'MediaWiki/geshi/geshi/geshi.php', + 'index' => 'new' ); $GLOBALS['phorkie']['tools'] = array( '\\phorkie\\Tool_Xmllint' => true, @@ -55,6 +57,11 @@ $GLOBALS['phorkie']['languages'] = array( 'mime' => 'application/javascript', 'geshi' => 'javascript' ), + 'pl' => array( + 'title' => 'Perl', + 'mime' => 'application/x-perl', + 'geshi' => 'pl' + ), 'php' => array( 'title' => 'PHP', 'mime' => 'text/x-php', @@ -65,6 +72,11 @@ $GLOBALS['phorkie']['languages'] = array( 'mime' => 'image/png', 'show' => false ), + 'rb' => array( + 'title' => 'Ruby/Rails', + 'mime' => 'text/x-ruby', /* Is this an acceptable mime type? */ + 'geshi' => 'rails' + ), 'rst' => array( 'title' => 'reStructuredText', 'mime' => 'text/x-rst', @@ -86,20 +98,20 @@ $GLOBALS['phorkie']['languages'] = array( 'mime' => 'image/svg+xml', 'show' => false ), - 'ts' => array( - 'title' => 'TypoScript', - 'mime' => 'text/plain',/* TODO: correct type */ - 'geshi' => 'typoscript' - ), 'txt' => array( 'title' => 'Text (plain)', 'mime' => 'text/plain', 'geshi' => 'txt' ), + 'ts' => array( + 'title' => 'TypoScript', + 'mime' => 'text/x-typoscript',/* TODO: correct type */ + 'geshi' => 'typoscript' + ), 'xml' => array( 'title' => 'XML', 'mime' => 'text/xml', 'geshi' => 'xml' ), ); -?> \ No newline at end of file +?>