Merging updated GeSHi code for 1.0.7.9 updates
[viewsvn.git] / includes / geshi / geshi / robots.php
1 <?php
2 /*************************************************************************************
3 * robots.php
4 * --------
5 * Author: Christian Lescuyer (cl@goelette.net)
6 * Copyright: (c) 2006 Christian Lescuyer http://xtian.goelette.info
7 * Release Version: 1.0.7.9
8 * CVS Revision Version: $Revision: 1.4 $
9 * Date Started: 2006/02/17
10 * Last Modified: $Date: 2006/04/23 01:14:41 $
11 *
12 * robots.txt language file for GeSHi.
13 *
14 * 2006/02/17 (1.0.0)
15 * - First Release
16 *
17 *************************************************************************************
18 *
19 * This file is part of GeSHi.
20 *
21 * GeSHi is free software; you can redistribute it and/or modify
22 * it under the terms of the GNU General Public License as published by
23 * the Free Software Foundation; either version 2 of the License, or
24 * (at your option) any later version.
25 *
26 * GeSHi is distributed in the hope that it will be useful,
27 * but WITHOUT ANY WARRANTY; without even the implied warranty of
28 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
29 * GNU General Public License for more details.
30 *
31 * You should have received a copy of the GNU General Public License
32 * along with GeSHi; if not, write to the Free Software
33 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
34 *
35 ************************************************************************************/
36
37 $language_data = array (
38 'LANG_NAME' => 'Robots',
39 'COMMENT_SINGLE' => array(1 => '#'),
40 'COMMENT_MULTI' => array(),
41 'CASE_KEYWORDS' => GESHI_CAPS_NO_CHANGE,
42 'QUOTEMARKS' => array(),
43 'ESCAPE_CHAR' => '',
44 'KEYWORDS' => array(
45 1 => array(
46 'User-agent', 'Disallow'
47 )
48 ),
49 'SYMBOLS' => array(
50 ':'
51 ),
52 'CASE_SENSITIVE' => array(
53 GESHI_COMMENTS => false,
54 1 => true
55 ),
56 'STYLES' => array(
57 'KEYWORDS' => array(
58 1 => 'color: #b1b100;'
59 ),
60 'COMMENTS' => array(
61 1 => 'color: #808080; font-style: italic;',
62 ),
63 'ESCAPE_CHAR' => array(
64 0 => 'color: #000099; font-weight: bold;'
65 ),
66 'BRACKETS' => array(
67 0 => 'color: #66cc66;'
68 ),
69 'STRINGS' => array(
70 0 => 'color: #ff0000;'
71 ),
72 'NUMBERS' => array(
73 0 => 'color: #cc66cc;'
74 ),
75 'METHODS' => array(
76 ),
77 'SYMBOLS' => array(
78 0 => 'color: #66cc66;'
79 ),
80 'REGEXPS' => array(
81 ),
82 'SCRIPT' => array(
83 )
84 ),
85 'URLS' => array(
86 1 => 'http://www.robotstxt.org/wc/norobots.html'
87 ),
88 'OOLANG' => false,
89 'OBJECT_SPLITTERS' => array(
90 ),
91 'REGEXPS' => array(
92 ),
93 'STRICT_MODE_APPLIES' => GESHI_NEVER,
94 'SCRIPT_DELIMITERS' => array(
95 ),
96 'HIGHLIGHT_STRICT_BLOCK' => array(
97 )
98 );
99
100 ?>