correct type for typoscript
[phorkie.git] / data / config.default.php
index c08d4014fb3da06961fccaf48a64edb32ebb34c5..b648614567d7379e33a92c403628f4aad41e7a47 100644 (file)
@@ -1,14 +1,18 @@
 <?php
 $GLOBALS['phorkie']['cfg'] = array(
-    'debug'   => false,
-    'gitdir'  => __DIR__ . '/../repos/git/',
-    'workdir' => __DIR__ . '/../repos/work/',
-    'tpl'     => __DIR__ . '/templates/',
-    'css'     => 'http://twitter.github.com/bootstrap/assets/css/bootstrap.css',
+    'debug'         => false,
+    'gitdir'        => __DIR__ . '/../repos/git/',
+    'workdir'       => __DIR__ . '/../repos/work/',
+    'tpl'           => __DIR__ . '/templates/',
+    'css'           => 'http://twitter.github.com/bootstrap/assets/css/bootstrap.css',
+    'title'         => 'phorkie',
+    'topbar'        => '',
+    'setupcheck'    => true,
+    'elasticsearch' => null,
 );
 $GLOBALS['phorkie']['tools'] = array(
-    '\\phorkie\\Tool_Xmllint',
-    '\\phorkie\\Tool_PHPlint',
+    '\\phorkie\\Tool_Xmllint' => true,
+    '\\phorkie\\Tool_PHPlint' => true,
 );
 /**
  * Array of supported file types / languages.
@@ -41,16 +45,16 @@ $GLOBALS['phorkie']['languages'] = array(
         'mime'  => 'image/jpeg',
         'show'  => false
     ),
-    'js' => array(
-        'title' => 'Javascript',
-        'mime'  => 'application/javascript',
-        'geshi' => 'javascript'
-    ),
     'ini' => array(
         'title' => 'Ini',
         'mime'  => 'text/ini',
         'geshi' => 'ini'
     ),
+    'js' => array(
+        'title' => 'Javascript',
+        'mime'  => 'application/javascript',
+        'geshi' => 'javascript'
+    ),
     'php' => array(
         'title' => 'PHP',
         'mime'  => 'text/x-php',
@@ -84,7 +88,7 @@ $GLOBALS['phorkie']['languages'] = array(
     ),
     'ts' => array(
         'title' => 'TypoScript',
-        'mime'  => 'text/plain',/* TODO: correct type */
+        'mime'  => 'text/x-typoscript',/* TODO: correct type */
         'geshi' => 'typoscript'
     ),
     'txt' => array(