aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin J. Novack <jnovack@gmail.com>2012-09-13 22:49:02 +0200
committerChristian Weiske <cweiske@cweiske.de>2012-09-13 22:49:02 +0200
commit53e6e11d2b3ffd73abdd166c3a3d983479fc3040 (patch)
tree3ace5414bc24e90641c9d7aa96fb71e6b2d1489f
parent7a64304979782b3963ed3361570fc7b1e9756471 (diff)
downloadphorkie-53e6e11d2b3ffd73abdd166c3a3d983479fc3040.tar.gz
phorkie-53e6e11d2b3ffd73abdd166c3a3d983479fc3040.zip
Added perl to the list of geshi types
-rw-r--r--data/config.default.php17
1 files changed, 11 insertions, 6 deletions
diff --git a/data/config.default.php b/data/config.default.php
index 783412e..bd41d0d 100644
--- a/data/config.default.php
+++ b/data/config.default.php
@@ -55,6 +55,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',
@@ -91,20 +96,20 @@ $GLOBALS['phorkie']['languages'] = array(
'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'
),
+ '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
+?>