fix another validation error
[phorkie.git] / data / config.default.php
index c08d4014fb3da06961fccaf48a64edb32ebb34c5..da1624156fe5a92540eee913f74588a475e5c277 100644 (file)
@@ -1,14 +1,26 @@
 <?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,
+    'geshi'         => 'MediaWiki/geshi/geshi/geshi.php',
+    'index'         => 'new'//"new" or "list"
+);
+$GLOBALS['phorkie']['auth'] = array(
+    'secure'         => 0,                   // 0 = public, no authentication, 1 = protect adds/edits/deletes, 2 = use authentication
+    'userlist'       => false,               // true = user must be explicitly defined, false = anyone allowed, but they must authenticate
+    'anonymousName'  => 'Anonymous',         // Email for non-authenticated commits
+    'anonymousEmail' => 'anonymous@phorkie'  // Email for non-authenticated commits
 );
 $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,15 +53,20 @@ $GLOBALS['phorkie']['languages'] = array(
         'mime'  => 'image/jpeg',
         'show'  => false
     ),
+    'ini' => array(
+        'title' => 'Ini',
+        'mime'  => 'text/ini',
+        'geshi' => 'ini'
+    ),
     'js' => array(
         'title' => 'Javascript',
         'mime'  => 'application/javascript',
         'geshi' => 'javascript'
     ),
-    'ini' => array(
-        'title' => 'Ini',
-        'mime'  => 'text/ini',
-        'geshi' => 'ini'
+    'pl' => array(
+        'title' => 'Perl',
+        'mime'  => 'application/x-perl',
+        'geshi' => 'pl'
     ),
     'php' => array(
         'title' => 'PHP',
@@ -61,6 +78,11 @@ $GLOBALS['phorkie']['languages'] = array(
         'mime'  => 'image/png',
         'show'  => false
     ),
+    'rb' => array(
+        'title' => 'Ruby/Rails',
+        'mime'  => 'text/x-ruby', /* Is this an acceptable mime type? */
+        'geshi' => 'rails'
+    ),
     'rst' => array(
         'title' => 'reStructuredText',
         'mime'  => 'text/x-rst',
@@ -82,20 +104,20 @@ $GLOBALS['phorkie']['languages'] = array(
         'mime'  => 'image/svg+xml',
         'show'  => false
     ),
-    'ts' => array(
-        'title' => 'TypoScript',
-        'mime'  => 'text/plain',/* 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
+?>