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