space between buttons
[phorkie.git] / data / config.default.php
1 <?php
2 $GLOBALS['phorkie']['cfg'] = array(
3     'debug'   => false,
4     'gitdir'  => __DIR__ . '/../repos/git/',
5     'workdir' => __DIR__ . '/../repos/work/',
6     'tpl'     => __DIR__ . '/templates/',
7     'css'     => 'http://twitter.github.com/bootstrap/assets/css/bootstrap.css',
8 );
9 $GLOBALS['phorkie']['tools'] = array(
10     '\\phorkie\\Tool_Xmllint'
11 );
12 /**
13  * Array of supported file types / languages.
14  * Key is the file extension
15  */
16 $GLOBALS['phorkie']['languages'] = array(
17     'css' => array(
18         'title' => 'CSS',
19         'mime'  => 'text/css',
20         'geshi' => 'css'
21     ),
22     'diff' => array(
23         'title' => 'Diff',
24         'mime'  => 'text/diff',
25         'geshi' => 'diff'
26     ),
27     'htm' => array(
28         'title' => 'HTML',
29         'mime'  => 'text/html',
30         'geshi' => 'xml'
31     ),
32     'html' => array(
33         'title' => 'HTML',
34         'mime'  => 'text/html',
35         'geshi' => 'xml',
36         'show'  => false
37     ),
38     'js' => array(
39         'title' => 'Javascript',
40         'mime'  => 'application/javascript',
41         'geshi' => 'javascript'
42     ),
43     'ini' => array(
44         'title' => 'Ini',
45         'mime'  => 'text/ini',
46         'geshi' => 'ini'
47     ),
48     'php' => array(
49         'title' => 'PHP',
50         'mime'  => 'text/x-php',
51         'geshi' => 'php'
52     ),
53     'rst' => array(
54         'title' => 'reStructuredText',
55         'mime'  => 'text/x-rst',
56         'geshi' => 'rst',
57         'renderer' => '\\phorkie\\Renderer_ReStructuredText',
58     ),
59     'sh' => array(
60         'title' => 'Shell script (Bash)',
61         'mime'  => 'text/x-shellscript',
62         'geshi' => 'bash'
63     ),
64     'sql' => array(
65         'title' => 'SQL',
66         'mime'  => 'text/x-sql',
67         'geshi' => 'sql'
68     ),
69     'ts' => array(
70         'title' => 'TypoScript',
71         'mime'  => 'text/plain',/* TODO: correct type */
72         'geshi' => 'typoscript'
73     ),
74     'txt' => array(
75         'title' => 'Text (plain)',
76         'mime'  => 'text/plain',
77         'geshi' => 'txt'
78     ),
79     'xml' => array(
80         'title' => 'XML',
81         'mime'  => 'text/xml',
82         'geshi' => 'xml'
83     ),
84 );
85 ?>