rST rendering is possible now
[phorkie.git] / data / config.default.php
index ec686222284ed491b02fbe6135db18fda3ff2a26..d55721d1262c7143e230397bf4de88487bf24ba9 100644 (file)
@@ -2,5 +2,74 @@
 $GLOBALS['phorkie']['cfg'] = array(
     'repos' => __DIR__ . '/../repos/',
     'tpl'   => __DIR__ . '/templates/',
+    'css'   => 'http://twitter.github.com/bootstrap/assets/css/bootstrap.css',
+);
+/**
+ * Array of supported file types / languages.
+ * Key is the file extension
+ */
+$GLOBALS['phorkie']['languages'] = array(
+    'css' => array(
+        'title' => 'CSS',
+        'mime'  => 'text/css',
+        'geshi' => 'css'
+    ),
+    'diff' => array(
+        'title' => 'Diff',
+        'mime'  => 'text/diff',
+        'geshi' => 'diff'
+    ),
+    'htm' => array(
+        'title' => 'HTML',
+        'mime'  => 'text/html',
+        'geshi' => 'xml'
+    ),
+    'html' => array(
+        'title' => 'HTML',
+        'mime'  => 'text/html',
+        'geshi' => 'xml',
+        'show'  => false
+    ),
+    'js' => array(
+        'title' => 'Javascript',
+        'mime'  => 'application/javascript',
+        'geshi' => 'javascript'
+    ),
+    'ini' => array(
+        'title' => 'Ini',
+        'mime'  => 'text/ini',
+        'geshi' => 'ini'
+    ),
+    'php' => array(
+        'title' => 'PHP',
+        'mime'  => 'text/x-php',
+        'geshi' => 'php'
+    ),
+    'rst' => array(
+        'title' => 'reStructuredText',
+        'mime'  => 'text/x-rst',
+        'geshi' => 'rst',
+        'renderer' => '\\phorkie\\Renderer_ReStructuredText',
+    ),
+    'sh' => array(
+        'title' => 'Shell script (Bash)',
+        'mime'  => 'text/x-shellscript',
+        'geshi' => 'bash'
+    ),
+    'ts' => array(
+        'title' => 'TypoScript',
+        'mime'  => 'text/plain',/* TODO: correct type */
+        'geshi' => 'typoscript'
+    ),
+    'txt' => array(
+        'title' => 'Text (plain)',
+        'mime'  => 'text/plain',
+        'geshi' => 'txt'
+    ),
+    'xml' => array(
+        'title' => 'XML',
+        'mime'  => 'text/xml',
+        'geshi' => 'xml'
+    ),
 );
 ?>
\ No newline at end of file