make title configurable
[phorkie.git] / data / config.default.php
index cec379989f11cf1395a11570259e03be1e43467c..1b8e39b71218f04dd6de18e7d2f81c1decdb9a93 100644 (file)
@@ -1,9 +1,15 @@
 <?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',
+    'title'   => 'phorkie',
+);
+$GLOBALS['phorkie']['tools'] = array(
+    '\\phorkie\\Tool_Xmllint' => true,
+    '\\phorkie\\Tool_PHPlint' => true,
 );
 /**
  * Array of supported file types / languages.
@@ -31,6 +37,11 @@ $GLOBALS['phorkie']['languages'] = array(
         'geshi' => 'xml',
         'show'  => false
     ),
+    'jpg' => array(
+        'title' => 'JPEG image',
+        'mime'  => 'image/jpeg',
+        'show'  => false
+    ),
     'js' => array(
         'title' => 'Javascript',
         'mime'  => 'application/javascript',
@@ -46,6 +57,11 @@ $GLOBALS['phorkie']['languages'] = array(
         'mime'  => 'text/x-php',
         'geshi' => 'php'
     ),
+    'png' => array(
+        'title' => 'PNG image',
+        'mime'  => 'image/png',
+        'show'  => false
+    ),
     'rst' => array(
         'title' => 'reStructuredText',
         'mime'  => 'text/x-rst',
@@ -62,6 +78,11 @@ $GLOBALS['phorkie']['languages'] = array(
         'mime'  => 'text/x-sql',
         'geshi' => 'sql'
     ),
+    'svg' => array(
+        'title' => 'SVG image',
+        'mime'  => 'image/svg+xml',
+        'show'  => false
+    ),
     'ts' => array(
         'title' => 'TypoScript',
         'mime'  => 'text/plain',/* TODO: correct type */