ILIAS  release_5-3 Revision v5.3.23-19-g915713cf615
vedit.php
Go to the documentation of this file.
1<?php
2/*************************************************************************************
3 * vedit.php
4 * --------
5 * Author: Pauli Lindgren (pauli0212@yahoo.com)
6 * Copyright: (c) 2009 Pauli Lindgren (http://koti.mbnet.fi/pkl/)
7 * Release Version: 1.0.9.0
8 * Date Started: 2009/12/16
9 *
10 * Vedit macro language language file for GeSHi.
11 *
12 * CHANGES
13 * -------
14 * 2009/12/16 (1.0.8.11)
15 * - First Release
16 *
17 * TODO (updated 2009/12/16)
18 * -------------------------
19 * - Add keyword groups 2, 3 and 4.
20 *
21 *
22 *************************************************************************************
23 *
24 * This file is part of GeSHi.
25 *
26 * GeSHi is free software; you can redistribute it and/or modify
27 * it under the terms of the GNU General Public License as published by
28 * the Free Software Foundation; either version 2 of the License, or
29 * (at your option) any later version.
30 *
31 * GeSHi is distributed in the hope that it will be useful,
32 * but WITHOUT ANY WARRANTY; without even the implied warranty of
33 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
34 * GNU General Public License for more details.
35 *
36 * You should have received a copy of the GNU General Public License
37 * along with GeSHi; if not, write to the Free Software
38 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
39 *
40 ************************************************************************************/
41
43 'LANG_NAME' => 'Vedit macro language',
44 'COMMENT_SINGLE' => array(1 => '//'),
45 'COMMENT_MULTI' => array(),
46 'CASE_KEYWORDS' => GESHI_CAPS_NO_CHANGE,
47 'QUOTEMARKS' => array('"', '\''),
48 'ESCAPE_CHAR' => '',
49 'KEYWORDS' => array(
50 1 => array(
51 'break', 'breakout', 'break_out', 'continue', 'do', 'else', 'for',
52 'goto', 'if', 'repeat', 'return', 'while'
53 )
54 ),
55 'SYMBOLS' => array(
56 1 => array(
57 '(', ')', '{', '}', '[', ']', '+', '-', '*', '/', '%',
58 '=', '<', '>', '!', '^', '&', '|', '?', ':', ';', ','
59 )
60 ),
61 'CASE_SENSITIVE' => array(
62 GESHI_COMMENTS => false,
63 1 => false
64 ),
65 'STYLES' => array(
66 'KEYWORDS' => array(
67 1 => 'color: #b1b100;'
68 ),
69 'COMMENTS' => array(
70 1 => 'color: #666666; font-style: italic;',
71 'MULTI' => 'color: #666666; font-style: italic;'
72 ),
73 'ESCAPE_CHAR' => array(
74 0 => 'color: #000099; font-weight: bold;'
75 ),
76 'BRACKETS' => array(
77 0 => 'color: #009900;'
78 ),
79 'STRINGS' => array(
80 0 => 'color: #0000ff;'
81 ),
82 'NUMBERS' => array(
83 0 => 'color: #cc66cc;',
84 ),
85 'METHODS' => array(
86 0 => 'color: #004000;'
87 ),
88 'SYMBOLS' => array(
89 1 => 'color: #339933;'
90 ),
91 'REGEXPS' => array(),
92 'SCRIPT' => array()
93 ),
94 'URLS' => array(1 => ''),
95 'OOLANG' => false,
96 'OBJECT_SPLITTERS' => array(),
97 'REGEXPS' => array(),
98 'STRICT_MODE_APPLIES' => GESHI_NEVER,
99 'SCRIPT_DELIMITERS' => array(),
100 'HIGHLIGHT_STRICT_BLOCK' => array()
101);
An exception for terminatinating execution or to throw for unit testing.
const GESHI_CAPS_NO_CHANGE
Lowercase keywords found.
Definition: geshi.php:94
const GESHI_COMMENTS
Used in language files to mark comments.
Definition: geshi.php:149
const GESHI_NEVER
#+ @access private
Definition: geshi.php:123
$language_data
Definition: vedit.php:42