source: documentation/trunk/packages/dokuwiki-2011-05-25a/inc/geshi/hicest.php@ 25027

Last change on this file since 25027 was 25027, checked in by jmt12, 12 years ago

Adding the packages directory, and within it a configured version of dokuwiki all ready to run

File size: 3.8 KB
Line 
1<?php
2/*************************************************************************************
3 * hicest.php
4 * --------
5 * Author: Georg Petrich ([email protected])
6 * Copyright: (c) 2010 Georg Petrich (http://www.HicEst.com)
7 * Release Version: 1.0.8.8
8 * Date Started: 2010/03/15
9 *
10 * HicEst language file for GeSHi.
11 *
12 * CHANGES
13 * -------
14 * yyyy/mm/dd (v.v.v.v)
15 * - First Release
16 *
17 * TODO (updated yyyy/mm/dd)
18 * -------------------------
19 *
20 *************************************************************************************
21 *
22 * This file is part of GeSHi.
23 *
24 * GeSHi is free software; you can redistribute it and/or modify
25 * it under the terms of the GNU General Public License as published by
26 * the Free Software Foundation; either version 2 of the License, or
27 * (at your option) any later version.
28 *
29 * GeSHi is distributed in the hope that it will be useful,
30 * but WITHOUT ANY WARRANTY; without even the implied warranty of
31 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
32 * GNU General Public License for more details.
33 *
34 * You should have received a copy of the GNU General Public License
35 * along with GeSHi; if not, write to the Free Software
36 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
37 *
38 ************************************************************************************/
39
40$language_data = array(
41 'LANG_NAME' => 'HicEst',
42 'COMMENT_SINGLE' => array(1 => '!'),
43 'COMMENT_MULTI' => array(),
44 'CASE_KEYWORDS' => GESHI_CAPS_NO_CHANGE,
45 'QUOTEMARKS' => array('"', '\''),
46 'ESCAPE_CHAR' => '',
47 'KEYWORDS' => array(
48 1 => array(
49 '$cmd_line', 'abs', 'acos', 'alarm', 'alias', 'allocate', 'appendix', 'asin', 'atan', 'axis', 'beep',
50 'call', 'ceiling', 'char', 'character', 'com', 'continue', 'cos', 'cosh', 'data', 'diffeq', 'dimension', 'dlg', 'dll',
51 'do', 'edit', 'else', 'elseif', 'end', 'enddo', 'endif', 'exp', 'floor', 'function', 'fuz', 'goto', 'iand', 'ichar',
52 'ieor', 'if', 'index', 'init', 'int', 'intpol', 'ior', 'key', 'len', 'len_trim', 'line', 'lock', 'log', 'max', 'maxloc',
53 'min', 'minloc', 'mod', 'nint', 'not', 'open', 'pop', 'ran', 'read', 'real', 'return', 'rgb', 'roots', 'sign', 'sin',
54 'sinh', 'solve', 'sort', 'subroutine', 'sum', 'system', 'tan', 'tanh', 'then', 'time', 'use', 'window', 'write', 'xeq'
55 )
56 ),
57 'SYMBOLS' => array(
58 1 => array(
59 '(', ')', '+', '-', '*', '/', '=', '<', '>', '!', '^', ':', ','
60 ),
61 2 => array(
62 '$', '$$'
63 )
64 ),
65 'CASE_SENSITIVE' => array(
66 GESHI_COMMENTS => false,
67 1 => false
68 ),
69 'STYLES' => array(
70 'KEYWORDS' => array(
71 1 => 'color: #ff0000;'
72 ),
73 'COMMENTS' => array(
74 1 => 'color: #666666; font-style: italic;',
75 'MULTI' => 'color: #666666; font-style: italic;'
76 ),
77 'ESCAPE_CHAR' => array(
78 0 => 'color: #000099; font-weight: bold;'
79 ),
80 'BRACKETS' => array(
81 0 => 'color: #009900;'
82 ),
83 'STRINGS' => array(
84 0 => 'color: #0000ff;'
85 ),
86 'NUMBERS' => array(
87 0 => 'color: #cc66cc;',
88 ),
89 'METHODS' => array(
90 0 => 'color: #004000;'
91 ),
92 'SYMBOLS' => array(
93 1 => 'color: #339933;',
94 2 => 'color: #ff0000;'
95 ),
96 'REGEXPS' => array(),
97 'SCRIPT' => array()
98 ),
99 'URLS' => array(1 => ''),
100 'OOLANG' => false,
101 'OBJECT_SPLITTERS' => array(),
102 'REGEXPS' => array(),
103 'STRICT_MODE_APPLIES' => GESHI_NEVER,
104 'SCRIPT_DELIMITERS' => array(),
105 'HIGHLIGHT_STRICT_BLOCK' => array()
106);
107
108?>
Note: See TracBrowser for help on using the repository browser.