hide additional fields and add button to show them
[phorkie.git] / data / config.default.php
index 24a133c146e84021fa4289378015031a5d4d624d..b648614567d7379e33a92c403628f4aad41e7a47 100644 (file)
@@ -1,8 +1,18 @@
 <?php
 $GLOBALS['phorkie']['cfg'] = array(
-    'repos' => __DIR__ . '/../repos/',
-    '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' => true,
+    '\\phorkie\\Tool_PHPlint' => true,
 );
 /**
  * Array of supported file types / languages.
@@ -30,29 +40,55 @@ $GLOBALS['phorkie']['languages'] = array(
         'geshi' => 'xml',
         'show'  => false
     ),
-    'js' => array(
-        'title' => 'Javascript',
-        'mime'  => 'application/javascript',
-        'geshi' => 'javascript'
+    'jpg' => array(
+        'title' => 'JPEG image',
+        'mime'  => 'image/jpeg',
+        'show'  => false
     ),
     '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',
         'geshi' => 'php'
     ),
+    'png' => array(
+        'title' => 'PNG image',
+        'mime'  => 'image/png',
+        'show'  => false
+    ),
+    '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'
     ),
+    'sql' => array(
+        'title' => 'SQL',
+        '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 */
+        'mime'  => 'text/x-typoscript',/* TODO: correct type */
         'geshi' => 'typoscript'
     ),
     'txt' => array(