Added perl to the list of geshi types
authorJustin J. Novack <jnovack@gmail.com>
Thu, 13 Sep 2012 20:49:02 +0000 (22:49 +0200)
committerChristian Weiske <cweiske@cweiske.de>
Thu, 13 Sep 2012 20:49:02 +0000 (22:49 +0200)
data/config.default.php

index 783412ee20736a17496ccb2e68ea824abd2ac322..bd41d0d88244e9fa34add198650e1b7b9f03cfca 100644 (file)
@@ -55,6 +55,11 @@ $GLOBALS['phorkie']['languages'] = array(
         'mime'  => 'application/javascript',
         'geshi' => 'javascript'
     ),
         'mime'  => 'application/javascript',
         'geshi' => 'javascript'
     ),
+    'pl' => array(
+        'title' => 'Perl',
+        'mime'  => 'application/x-perl',
+        'geshi' => 'pl'
+    ),
     'php' => array(
         'title' => 'PHP',
         'mime'  => 'text/x-php',
     'php' => array(
         'title' => 'PHP',
         'mime'  => 'text/x-php',
@@ -91,20 +96,20 @@ $GLOBALS['phorkie']['languages'] = array(
         'mime'  => 'image/svg+xml',
         'show'  => false
     ),
         'mime'  => 'image/svg+xml',
         'show'  => false
     ),
-    'ts' => array(
-        'title' => 'TypoScript',
-        'mime'  => 'text/x-typoscript',/* TODO: correct type */
-        'geshi' => 'typoscript'
-    ),
     'txt' => array(
         'title' => 'Text (plain)',
         'mime'  => 'text/plain',
         'geshi' => 'txt'
     ),
     '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'
     ),
 );
     'xml' => array(
         'title' => 'XML',
         'mime'  => 'text/xml',
         'geshi' => 'xml'
     ),
 );
-?>
\ No newline at end of file
+?>