diff options
Diffstat (limited to 'vendors/dokuwiki/inc/geshi/scala.php')
| -rw-r--r-- | vendors/dokuwiki/inc/geshi/scala.php | 122 | 
1 files changed, 122 insertions, 0 deletions
diff --git a/vendors/dokuwiki/inc/geshi/scala.php b/vendors/dokuwiki/inc/geshi/scala.php new file mode 100644 index 000000000..0eae52d92 --- /dev/null +++ b/vendors/dokuwiki/inc/geshi/scala.php @@ -0,0 +1,122 @@ +<?php +/************************************************************************************* + * scala.php + * ---------- + * Author: Franco Lombardo (franco@francolombardo.net) + * Copyright: (c) 2008 Franco Lombardo, Benny Baumann + * Release Version: 1.0.8.4 + * Date Started: 2008/02/08 + * + * Scala language file for GeSHi. + * + * CHANGES + * ------- + * 2008/02/08 (1.0.7.22) + *   -  First Release + * + * TODO (updated 2007/04/27) + * ------------------------- + * + ************************************************************************************* + * + *     This file is part of GeSHi. + * + *   GeSHi is free software; you can redistribute it and/or modify + *   it under the terms of the GNU General Public License as published by + *   the Free Software Foundation; either version 2 of the License, or + *   (at your option) any later version. + * + *   GeSHi is distributed in the hope that it will be useful, + *   but WITHOUT ANY WARRANTY; without even the implied warranty of + *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the + *   GNU General Public License for more details. + * + *   You should have received a copy of the GNU General Public License + *   along with GeSHi; if not, write to the Free Software + *   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA + * + ************************************************************************************/ + +$language_data = array ( +    'LANG_NAME' => 'Scala', +    'COMMENT_SINGLE' => array(1 => '//'), +    'COMMENT_MULTI' => array('/*' => '*/'), +    'CASE_KEYWORDS' => GESHI_CAPS_NO_CHANGE, +    'QUOTEMARKS' => array("'", '"'), +    'ESCAPE_CHAR' => '\\', +    'KEYWORDS' => array( +        1 => array( +            'abstract', 'case', 'catch', 'class', 'def', +            'do', 'else', 'extends', 'false', 'final', +            'finally', 'for', 'forSome', 'if', 'implicit', +            'import', 'match', 'new', 'null', 'object', +            'override', 'package', 'private', 'protected', 'requires', +            'return', 'sealed', 'super', 'this', 'throw', +            'trait', 'try', 'true', 'type', 'val', +            'var', 'while', 'with', 'yield' +            ), +        2 => array( +            'void', 'double', 'int', 'boolean', 'byte', 'short', 'long', 'char', 'float' +            ) +        ), +    'SYMBOLS' => array( +        '(', ')', '[', ']', '{', '}', '*', '&', '%', '!', ';', '<', '>', '?', +        '_', ':', '=', '=>', '<<:', +        '<%', '>:', '#', '@' +        ), +    'CASE_SENSITIVE' => array( +        GESHI_COMMENTS => false, +        1 => true, +        2 => true +        ), +    'STYLES' => array( +        'KEYWORDS' => array( +            1 => 'color: #0000ff; font-weight: bold;', +            2 => 'color: #9999cc; font-weight: bold;', +            ), +        'COMMENTS' => array( +            1=> 'color: #008000; font-style: italic;', +            'MULTI' => 'color: #00ff00; font-style: italic;' +            ), +        'ESCAPE_CHAR' => array( +            0 => 'color: #0000ff; font-weight: bold;' +            ), +        'BRACKETS' => array( +            0 => 'color: #F78811;' +            ), +        'STRINGS' => array( +            0 => 'color: #6666FF;' +            ), +        'NUMBERS' => array( +            0 => 'color: #F78811;' +            ), +        'METHODS' => array( +            1 => 'color: #000000;', +            2 => 'color: #000000;' +            ), +        'SYMBOLS' => array( +            0 => 'color: #000080;' +            ), +        'SCRIPT' => array( +            ), +        'REGEXPS' => array( +            ) +        ), +    'URLS' => array( +        1 => 'http://scala-lang.org', +        2 => '' +        ), +    'OOLANG' => true, +    'OBJECT_SPLITTERS' => array( +        1 => '.' +        ), +    'REGEXPS' => array( +        ), +    'STRICT_MODE_APPLIES' => GESHI_NEVER, +    'SCRIPT_DELIMITERS' => array( +        ), +    'HIGHLIGHT_STRICT_BLOCK' => array( +        ) +); + +?>  | 
