X-Git-Url: https://git.cweiske.de/phorkie.git/blobdiff_plain/a39bd415faa45403247e6af89a32df4dd3560b3e..1c14a6bfb93c914374a6b2f96aec971f8c5b3053:/data/config.default.php diff --git a/data/config.default.php b/data/config.default.php index 24a133c..cec3799 100644 --- a/data/config.default.php +++ b/data/config.default.php @@ -1,8 +1,9 @@ __DIR__ . '/../repos/', - 'tpl' => __DIR__ . '/templates/', - 'css' => 'http://twitter.github.com/bootstrap/assets/css/bootstrap.css', + 'gitdir' => __DIR__ . '/../repos/git/', + 'workdir' => __DIR__ . '/../repos/work/', + 'tpl' => __DIR__ . '/templates/', + 'css' => 'http://twitter.github.com/bootstrap/assets/css/bootstrap.css', ); /** * Array of supported file types / languages. @@ -45,11 +46,22 @@ $GLOBALS['phorkie']['languages'] = array( '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' ), + 'sql' => array( + 'title' => 'SQL', + 'mime' => 'text/x-sql', + 'geshi' => 'sql' + ), 'ts' => array( 'title' => 'TypoScript', 'mime' => 'text/plain',/* TODO: correct type */