Merging updated GeSHi code for 1.0.7.9 updates
[viewsvn.git] / includes / geshi / geshi / cfdg.php
1 <?php
2 /*************************************************************************************
3 * cfdg.php
4 * --------
5 * Author: John Horigan <john@glyphic.com>
6 * Copyright: (c) 2006 John Horigan http://www.ozonehouse.com/john/
7 * Release Version: 1.0.7.9
8 * CVS Revision Version: $Revision: 1.2 $
9 * Date Started: 2006/03/11
10 * Last Modified: $Date: 2006/04/23 01:14:41 $
11 *
12 * CFDG language file for GeSHi.
13 *
14 * CHANGES
15 * -------
16 * 2006/03/11 (1.0.0)
17 * - First Release
18 *
19 * TODO (updated 2006/03/11)
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
42 $language_data = array (
43 'LANG_NAME' => 'CFDG',
44 'COMMENT_SINGLE' => array(1 => '//', 2 => '#'),
45 'COMMENT_MULTI' => array('/*' => '*/'),
46 'CASE_KEYWORDS' => GESHI_CAPS_NO_CHANGE,
47 'QUOTEMARKS' => array("'", '"'),
48 'ESCAPE_CHAR' => '',
49 'KEYWORDS' => array(
50 1 => array(
51 'include', 'startshape', 'rule', 'background'
52 ),
53 2 => array(
54 'SQUARE', 'CIRCLE', 'TRIANGLE',
55 ),
56 3 => array(
57 'b','brightness','h','hue','sat','saturation',
58 'a','alpha','x','y','z','s','size',
59 'r','rotate','f','flip','skew','xml_set_object'
60 )
61 ),
62 'SYMBOLS' => array(
63 '[', ']', '{', '}', '*', '|'
64 ),
65 'CASE_SENSITIVE' => array(
66 GESHI_COMMENTS => false,
67 1 => false,
68 2 => false,
69 3 => false,
70 ),
71 'STYLES' => array(
72 'KEYWORDS' => array(
73 1 => 'color: #717100;',
74 2 => 'color: #000000; font-weight: bold;',
75 3 => 'color: #006666;'
76 ),
77 'COMMENTS' => array(
78 1 => 'color: #808080; font-style: italic;',
79 2 => 'color: #808080; font-style: italic;',
80 'MULTI' => 'color: #808080; font-style: italic;'
81 ),
82 'ESCAPE_CHAR' => array(
83 0 => 'color: #000099; font-weight: bold;'
84 ),
85 'BRACKETS' => array(
86 0 => 'color: #66cc66;'
87 ),
88 'STRINGS' => array(
89 0 => 'color: #ff0000;'
90 ),
91 'NUMBERS' => array(
92 0 => 'color: #cc66cc;'
93 ),
94 'METHODS' => array(
95 1 => 'color: #006600;',
96 2 => 'color: #006600;'
97 ),
98 'SYMBOLS' => array(
99 0 => 'color: #66cc66;'
100 ),
101 'REGEXPS' => array(
102 ),
103 'SCRIPT' => array(
104 0 => '',
105 1 => '',
106 2 => '',
107 3 => ''
108 )
109 ),
110 'URLS' => array(
111 1 => '',
112 2 => '',
113 3 => '',
114 4 => ''
115 ),
116 'OOLANG' => false,
117 'OBJECT_SPLITTERS' => '',
118 'REGEXPS' => array(
119 ),
120 'STRICT_MODE_APPLIES' => GESHI_NEVER,
121 'SCRIPT_DELIMITERS' => array(
122 ),
123 'HIGHLIGHT_STRICT_BLOCK' => array(
124 )
125 );
126
127 ?>
128