X-Git-Url: https://git.cweiske.de/phorkie.git/blobdiff_plain/1a8bb56c72ad34cf159e03b97a467e5e35a614c5..53e6e11d2b3ffd73abdd166c3a3d983479fc3040:/data/config.default.php diff --git a/data/config.default.php b/data/config.default.php index c1446cc..bd41d0d 100644 --- a/data/config.default.php +++ b/data/config.default.php @@ -45,15 +45,20 @@ $GLOBALS['phorkie']['languages'] = array( 'mime' => 'image/jpeg', 'show' => false ), + 'ini' => array( + 'title' => 'Ini', + 'mime' => 'text/ini', + 'geshi' => 'ini' + ), 'js' => array( 'title' => 'Javascript', 'mime' => 'application/javascript', 'geshi' => 'javascript' ), - 'ini' => array( - 'title' => 'Ini', - 'mime' => 'text/ini', - 'geshi' => 'ini' + 'pl' => array( + 'title' => 'Perl', + 'mime' => 'application/x-perl', + 'geshi' => 'pl' ), 'php' => array( 'title' => 'PHP', @@ -65,6 +70,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 +96,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 +?>