Add bash syntax brush (Fixes #45)

This commit is contained in:
Will Rossiter 2014-09-06 09:20:05 +12:00
parent afe229d343
commit fab0cba8a8

View File

@ -14,6 +14,9 @@
class DocumentationViewer extends Controller { class DocumentationViewer extends Controller {
/**
* @var array
*/
private static $allowed_actions = array( private static $allowed_actions = array(
'home', 'home',
'LanguageForm', 'LanguageForm',
@ -106,6 +109,7 @@ class DocumentationViewer extends Controller {
DOCSVIEWER_DIR . '/thirdparty/syntaxhighlighter/scripts/shBrushXml.js', DOCSVIEWER_DIR . '/thirdparty/syntaxhighlighter/scripts/shBrushXml.js',
DOCSVIEWER_DIR . '/thirdparty/syntaxhighlighter/scripts/shBrushCss.js', DOCSVIEWER_DIR . '/thirdparty/syntaxhighlighter/scripts/shBrushCss.js',
DOCSVIEWER_DIR . '/thirdparty/syntaxhighlighter/scripts/shBrushYaml.js', DOCSVIEWER_DIR . '/thirdparty/syntaxhighlighter/scripts/shBrushYaml.js',
DOCSVIEWER_DIR . '/thirdparty/syntaxhighlighter/scripts/shBrushBash.js',
DOCSVIEWER_DIR . '/javascript/shBrushSS.js' DOCSVIEWER_DIR . '/javascript/shBrushSS.js'
) )
); );