Merging the updates from the GeSHi vendor to the trunk
[viewsvn.git] / includes / geshi / geshi / text.php
1 <?php
2 /*************************************************************************************
3 * text.php
4 * --------
5 * Author: Sean Hanna (smokingrope@gmail.com)
6 * Copyright: (c) 2006 Sean Hanna
7 * Release Version: 1.0.7.19
8 * Date Started: 04/23/2006
9 *
10 * Standard Text File (No Syntax Highlighting).
11 *
12 * CHANGES
13 * -------
14 * 04/23/2006 (0.5.0)
15 * - Syntax File Created
16 *
17 * 04/27/2006 (1.0.0)
18 * - Documentation Cleaned Up
19 * - First Release
20 *
21 * TODO (updated 04/27/2006)
22 * -------------------------
23 *
24 *
25 *************************************************************************************
26 *
27 * This file is part of GeSHi.
28 *
29 * GeSHi is free software; you can redistribute it and/or modify
30 * it under the terms of the GNU General Public License as published by
31 * the Free Software Foundation; either version 2 of the License, or
32 * (at your option) any later version.
33 *
34 * GeSHi is distributed in the hope that it will be useful,
35 * but WITHOUT ANY WARRANTY; without even the implied warranty of
36 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
37 * GNU General Public License for more details.
38 *
39 * You should have received a copy of the GNU General Public License
40 * along with GeSHi; if not, write to the Free Software
41 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
42 *
43
44 ************************************************************************************/
45 $language_data = array (
46 'LANG_NAME' => 'Text',
47 'COMMENT_SINGLE' => array( ),
48 'COMMENT_MULTI' => array( ),
49 'CASE_KEYWORDS' => GESHI_CAPS_NO_CHANGE,
50 'QUOTEMARKS' => array(),
51 'ESCAPE_CHAR' => '',
52 'KEYWORDS' => array( ),
53 'SYMBOLS' => array( ),
54 'CASE_SENSITIVE' => array(
55 GESHI_COMMENTS => false
56 ),
57 'STYLES' => array(
58 'KEYWORDS' => array(),
59 'COMMENTS' => array(),
60 'ESCAPE_CHAR' => array(),
61 'BRACKETS' => array(),
62 'STRINGS' => array(),
63 'NUMBERS' => array(),
64 'METHODS' => array(),
65 'SYMBOLS' => array(),
66 'SCRIPT' => array(),
67 'REGEXPS' => array()
68 ),
69 'OOLANG' => false,
70 'OBJECT_SPLITTERS' => array(),
71 'REGEXPS' => array( ),
72 'STRICT_MODE_APPLIES' => GESHI_NEVER,
73 'SCRIPT_DELIMITERS' => array( ),
74 'HIGHLIGHT_STRICT_BLOCK' => array( )
75 );
76 if (isset($this) && is_a($this, 'GeSHi')) {
77 $this->set_numbers_highlighting(false);
78 $this->set_brackets_highlighting(false);
79 $this->disable_highlighting();
80 }
81 ?>