diff options
| author | Christian Weiske <cweiske@cweiske.de> | 2012-04-03 07:46:11 +0200 |
|---|---|---|
| committer | Christian Weiske <cweiske@cweiske.de> | 2012-04-03 07:46:11 +0200 |
| commit | a39bd415faa45403247e6af89a32df4dd3560b3e (patch) | |
| tree | 342ac6c4669dba70d77296948da3d96471d101cb /data/config.default.php | |
| parent | b5cad4fdafacd1d1eced5784e449996db5dc8e84 (diff) | |
| download | phorkie-a39bd415faa45403247e6af89a32df4dd3560b3e.tar.gz phorkie-a39bd415faa45403247e6af89a32df4dd3560b3e.zip | |
file type and language definition happens in config.default.php now
Diffstat (limited to 'data/config.default.php')
| -rw-r--r-- | data/config.default.php | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/data/config.default.php b/data/config.default.php index ab5c474..24a133c 100644 --- a/data/config.default.php +++ b/data/config.default.php @@ -4,4 +4,66 @@ $GLOBALS['phorkie']['cfg'] = array( 'tpl' => __DIR__ . '/templates/', 'css' => 'http://twitter.github.com/bootstrap/assets/css/bootstrap.css', ); +/** + * Array of supported file types / languages. + * Key is the file extension + */ +$GLOBALS['phorkie']['languages'] = array( + 'css' => array( + 'title' => 'CSS', + 'mime' => 'text/css', + 'geshi' => 'css' + ), + 'diff' => array( + 'title' => 'Diff', + 'mime' => 'text/diff', + 'geshi' => 'diff' + ), + 'htm' => array( + 'title' => 'HTML', + 'mime' => 'text/html', + 'geshi' => 'xml' + ), + 'html' => array( + 'title' => 'HTML', + 'mime' => 'text/html', + 'geshi' => 'xml', + 'show' => false + ), + 'js' => array( + 'title' => 'Javascript', + 'mime' => 'application/javascript', + 'geshi' => 'javascript' + ), + 'ini' => array( + 'title' => 'Ini', + 'mime' => 'text/ini', + 'geshi' => 'ini' + ), + 'php' => array( + 'title' => 'PHP', + 'mime' => 'text/x-php', + 'geshi' => 'php' + ), + 'sh' => array( + 'title' => 'Shell script (Bash)', + 'mime' => 'text/x-shellscript', + 'geshi' => 'bash' + ), + 'ts' => array( + 'title' => 'TypoScript', + 'mime' => 'text/plain',/* TODO: correct type */ + 'geshi' => 'typoscript' + ), + 'txt' => array( + 'title' => 'Text (plain)', + 'mime' => 'text/plain', + 'geshi' => 'txt' + ), + 'xml' => array( + 'title' => 'XML', + 'mime' => 'text/xml', + 'geshi' => 'xml' + ), +); ?>
\ No newline at end of file |
