From 71273d9477b88cca86e6724491c1ea337ee96f05 Mon Sep 17 00:00:00 2001 From: Florian Pritz Date: Wed, 13 Jun 2012 21:27:14 +0200 Subject: switch to pygments - faster than geshi - easier to modify the css because there is only one - geshi upstream seems pretty dead Signed-off-by: Florian Pritz --- application/libraries/geshi/vb.php | 157 ------------------------------------- 1 file changed, 157 deletions(-) delete mode 100644 application/libraries/geshi/vb.php (limited to 'application/libraries/geshi/vb.php') diff --git a/application/libraries/geshi/vb.php b/application/libraries/geshi/vb.php deleted file mode 100644 index dd6545eb5..000000000 --- a/application/libraries/geshi/vb.php +++ /dev/null @@ -1,157 +0,0 @@ - 'Visual Basic', - 'COMMENT_SINGLE' => array(), - 'COMMENT_MULTI' => array(), - 'COMMENT_REGEXP' => array( - // Comments (either single or multiline with _ - 1 => '/\'.*(? GESHI_CAPS_NO_CHANGE, - 'QUOTEMARKS' => array('"'), - 'ESCAPE_CHAR' => '', - 'KEYWORDS' => array( - 1 => array( - 'Binary', 'Boolean', 'Byte', 'Currency', 'Date', 'Decimal', 'Double', - 'String', 'Enum', 'Integer', 'Long', 'Object', 'Single', 'Variant' - ), - 2 => array( - 'CreateObject', 'GetObject', 'New', 'Option', 'Function', - 'Call', 'Private', 'Public', 'Sub', 'Explicit', 'Compare', 'Exit' - ), - 3 => array( - 'And', 'Case', 'Do', 'Each', 'Else', 'ElseIf', 'For', - 'Goto', 'If', 'Is', 'Loop', 'Next', 'Not', 'Or', 'Select', 'Step', - 'Then', 'To', 'Until', 'While', 'With', 'Xor', 'WithEvents', - 'DoEvents', 'Close', 'Like', 'In', 'End' - ), - 4 => array( - 'As', 'Dim', 'Get', 'Set', 'ReDim', 'Error', - 'Resume', 'Declare', 'Let', 'ByRef', 'ByVal', - 'Optional', 'Property', 'Control', 'UBound', 'Mod', - 'GoSub', 'Implements', 'Input', 'LBound', 'Static', 'Stop', - 'Type', 'TypeOf', 'On', 'Open', 'Output', 'ParamArray', - 'Preserve', 'Print', 'RaiseEvent', 'Random', 'Line' - ), - 5 => array( - 'Nothing', 'False', 'True', 'Null', 'Empty' - ), - 6 => array( - 'ErrorHandler','ExitProc', 'PublishReport' - ), - ), - 'SYMBOLS' => array( - ), - 'CASE_SENSITIVE' => array( - GESHI_COMMENTS => false, - 1 => false, - 2 => false, - 3 => false, - 4 => false, - 5 => false, - 6 => false - ), - 'STYLES' => array( - 'KEYWORDS' => array( - 1 => 'color: #F660AB; font-weight: bold;', - 2 => 'color: #E56717; font-weight: bold;', - 3 => 'color: #8D38C9; font-weight: bold;', - 4 => 'color: #151B8D; font-weight: bold;', - 5 => 'color: #00C2FF; font-weight: bold;', - 6 => 'color: #3EA99F; font-weight: bold;' - ), - 'COMMENTS' => array( - 1 => 'color: #008000;' - ), - 'BRACKETS' => array( - ), - 'STRINGS' => array( - 0 => 'color: #800000;' - ), - 'NUMBERS' => array( - ), - 'METHODS' => array( - ), - 'SYMBOLS' => array( - ), - 'ESCAPE_CHAR' => array( - 0 => 'color: #800000; font-weight: bold;' - ), - 'SCRIPT' => array( - ), - 'REGEXPS' => array( - ) - ), - 'URLS' => array( - 1 => '', - 2 => '', - 3 => '', - 4 => '', - 5 => '', - 6 => '' - ), - 'OOLANG' => false, - 'OBJECT_SPLITTERS' => array( - ), - 'REGEXPS' => array( - ), - 'STRICT_MODE_APPLIES' => GESHI_NEVER, - 'SCRIPT_DELIMITERS' => array( - ), - 'HIGHLIGHT_STRICT_BLOCK' => array( - ), - 'PARSER_CONTROL' => array( - 'ENABLE_FLAGS' => array( - 'BRACKETS' => GESHI_NEVER, - 'SYMBOLS' => GESHI_NEVER, - 'NUMBERS' => GESHI_NEVER - ) - ) -); - -?> \ No newline at end of file -- cgit v1.2.3-24-g4f1b