161 lines
5.6 KiB
PHP
161 lines
5.6 KiB
PHP
<?php
|
|
/*************************************************************************************
|
|
* netrexx.php
|
|
* ---------------------------------
|
|
* Author: Jon Wolfers (sahananda@windhorse.biz)
|
|
* Contributors:
|
|
* - Walter Pachl (pachl@chello.at)
|
|
* Copyright: (c) 2008 Jon Wolfers, (c) 2012 Walter Pachl
|
|
* Release Version: 1.0.8.12
|
|
* Date Started: 2008/01/07
|
|
*
|
|
* NetRexx language file for GeSHi.
|
|
*
|
|
* CHANGES
|
|
* -------
|
|
* 2012/07/29 (1.0.0)
|
|
* - tried to get it syntactically right
|
|
*
|
|
* TODO (updated 2012/07/29)
|
|
* -------------------------
|
|
* - Get it working on rosettacode.org
|
|
*
|
|
*************************************************************************************
|
|
*
|
|
* 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' => 'NetRexx',
|
|
'COMMENT_SINGLE' => array(1 => '--'),
|
|
'COMMENT_MULTI' => array('/*' => '*/'),
|
|
'CASE_KEYWORDS' => GESHI_CAPS_NO_CHANGE,
|
|
'QUOTEMARKS' => array("'", '"'),
|
|
'ESCAPE_CHAR' => '',
|
|
'KEYWORDS' => array(
|
|
1 => array(
|
|
'class', 'do', 'exit', 'if', 'import', 'iterate', 'leave',
|
|
'loop', 'nop', 'numeric', 'package', 'parse', 'properties',
|
|
'return', 'say', 'select', 'signal', 'trace'
|
|
),
|
|
2 => array(
|
|
'abstract', 'adapter', 'all', 'ask', 'binary', 'case',
|
|
'constant', 'dependent', 'deprecated', 'extends', 'final',
|
|
'implements', 'inheritable', 'interface', 'label', 'methods',
|
|
'native', 'off', 'private', 'protect', 'public', 'results',
|
|
'returns', 'shared', 'signals', 'source', 'static',
|
|
'transient', 'unused', 'uses', 'version', 'volatile'
|
|
),
|
|
3 => array(
|
|
'catch', 'else', 'end', 'finally', 'otherwise', 'then', 'when'
|
|
),
|
|
4 => array(
|
|
'rc', 'result', 'self', 'sigl', 'super'
|
|
),
|
|
5 => array(
|
|
'placeholderforoorexxdirectives'
|
|
),
|
|
6 => array(
|
|
'abbrev', 'abs', 'b2x', 'c2d', 'c2x', 'center', 'centre',
|
|
'changestr', 'compare', 'copies', 'copyindexed', 'countstr',
|
|
'd2c', 'd2x', 'datatype', 'delstr', 'delword', 'exists',
|
|
'formword', 'hashcode', 'insert', 'lastpos', 'left', 'lower',
|
|
'max', 'min', 'noteq', 'noteqs', 'opadd', 'opand', 'opcc',
|
|
'opccblank', 'opdiv', 'opdivi', 'opeq', 'opeqs', 'opgt',
|
|
'opgteq', 'opgteqs', 'opgts', 'oplt', 'oplteq', 'oplteqs',
|
|
'oplts', 'opminus', 'opmult', 'opnot', 'opor', 'opplus',
|
|
'oppow', 'oprem', 'opsub', 'opxor', 'overlay', 'pos position',
|
|
'reverse', 'right', 'sequence', 'setdigits', 'setform',
|
|
'sign', 'space', 'strip', 'substr', 'subword', 'toboolean',
|
|
'tobyte', 'tochar', 'todouble', 'tofloat', 'toint', 'tolong',
|
|
'toshort', 'tostring', 'translate', 'trunc', 'upper',
|
|
'verify', 'word', 'wordindex', 'wordlength', 'wordpos',
|
|
'words', 'x2b', 'x2c', 'x2d'
|
|
)
|
|
),
|
|
'SYMBOLS' => array(
|
|
'(', ')', '<', '>', '[', ']', '=', '+', '-', '*', '/', '!', '%', '^', '&', ':',
|
|
'<', '>'
|
|
),
|
|
'CASE_SENSITIVE' => array(
|
|
GESHI_COMMENTS => true,
|
|
1 => false,
|
|
2 => false,
|
|
3 => false,
|
|
4 => false,
|
|
5 => false,
|
|
6 => false
|
|
),
|
|
'STYLES' => array(
|
|
'KEYWORDS' => array(
|
|
1 => 'color: #b1b100;',
|
|
2 => 'color: #ff0000; font-weight: bold;',
|
|
3 => 'color: #00ff00; font-weight: bold;',
|
|
4 => 'color: #0000ff; font-weight: bold;',
|
|
5 => 'color: #880088; font-weight: bold;',
|
|
6 => 'color: #888800; font-weight: bold;'
|
|
),
|
|
'COMMENTS' => array(
|
|
1 => 'color: #666666;',
|
|
'MULTI' => 'color: #808080;'
|
|
),
|
|
'ESCAPE_CHAR' => array(
|
|
0 => 'color: #000099; font-weight: bold;'
|
|
),
|
|
'BRACKETS' => array(
|
|
0 => 'color: #66cc66;'
|
|
),
|
|
'STRINGS' => array(
|
|
0 => 'color: #ff0000;'
|
|
),
|
|
'NUMBERS' => array(
|
|
0 => 'color: #cc66cc;'
|
|
),
|
|
'METHODS' => array(
|
|
1 => 'color: #202020;',
|
|
2 => 'color: #202020;'
|
|
),
|
|
'SYMBOLS' => array(
|
|
0 => 'color: #66cc66;'
|
|
),
|
|
'REGEXPS' => array(
|
|
),
|
|
'SCRIPT' => array(
|
|
)
|
|
),
|
|
'URLS' => array(
|
|
1 => '',
|
|
2 => '',
|
|
3 => '',
|
|
4 => '',
|
|
5 => '',
|
|
6 => ''
|
|
),
|
|
'OOLANG' => true,
|
|
'OBJECT_SPLITTERS' => array(
|
|
1 => '.'
|
|
),
|
|
'REGEXPS' => array(
|
|
),
|
|
'STRICT_MODE_APPLIES' => GESHI_NEVER,
|
|
'SCRIPT_DELIMITERS' => array(
|
|
),
|
|
'HIGHLIGHT_STRICT_BLOCK' => array(
|
|
),
|
|
'TAB_WIDTH' => 4
|
|
);
|