1 <?php 2 /************************************************************************************* 3 * xorg_conf.php 4 * ---------- 5 * Author: Milian Wolff (mail (at) milianw.de) 6 * Copyright: (c) 2008 Milian Wolff (http://milianw.de) 7 * Release Version: 1.0.8.3 8 * Date Started: 2008/06/18 9 * 10 * xorg.conf language file for GeSHi. 11 * 12 * CHANGES 13 * ------- 14 * 2008/06/18 (1.0.8) 15 * - Initial import 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' => 'Xorg configuration', 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 // sections 46 1 => array( 47 'Section', 'EndSection', 'SubSection', 'EndSubSection' 48 ), 49 2 => array( 50 // see http://www.x.org/archive/X11R6.9.0/doc/html/xorg.conf.5.html 51 'BiosBase', 'Black', 'Boardname', 'BusID', 'ChipID', 'ChipRev', 52 'Chipset', 'ClockChip', 'Clocks', 'DacSpeed', 53 'DefaultDepth', 'DefaultFbBpp', 'Depth', 'Device', 54 'DisplaySize', 'Driver', 'FbBpp', 'Gamma', 55 'HorizSync', 'IOBase', 'Identifier', 'InputDevice', 56 'Load', 'MemBase', 'Mode', 'Modeline', 'Modelname', 57 'Modes', 'Monitor', 'Option', 'Ramdac', 'RgbPath', 58 'Screen', 'TextClockFreq', 'UseModes', 'VendorName', 59 'VertRefresh', 'VideoAdaptor', 'VideoRam', 60 'ViewPort', 'Virtual', 'Visual', 'Weight', 'White' 61 ), 62 3 => array( 63 // some sub-keywords 64 // screen position 65 'Above', 'Absolute', 'Below', 'LeftOf', 'Relative', 'RightOf', 66 // modes 67 'DotClock', 'Flags', 'HSkew', 'HTimings', 'VScan', 'VTimings' 68 ), 69 ), 70 'REGEXPS' => array( 71 ), 72 'SYMBOLS' => array( 73 ), 74 'CASE_SENSITIVE' => array( 75 GESHI_COMMENTS => false, 76 1 => false, 77 2 => false, 78 3 => false 79 ), 80 'STYLES' => array( 81 'KEYWORDS' => array( 82 1 => 'color: #b1b100;', 83 2 => 'color: #990000;', 84 3 => 'color: #550000;' 85 ), 86 'COMMENTS' => array( 87 1 => 'color: #adadad; font-style: italic;', 88 ), 89 'ESCAPE_CHAR' => array( 90 ), 91 'BRACKETS' => array( 92 ), 93 'STRINGS' => array( 94 0 => 'color: #0000ff;', 95 ), 96 'NUMBERS' => array( 97 0 => 'color: #cc66cc;' 98 ), 99 'METHODS' => array( 100 ), 101 'SYMBOLS' => array( 102 ), 103 'REGEXPS' => array( 104 ), 105 'SCRIPT' => array( 106 ) 107 ), 108 'URLS' => array( 109 1 => '', 110 2 => '', 111 3 => '' 112 ), 113 'OOLANG' => false, 114 'OBJECT_SPLITTERS' => array( 115 ), 116 'STRICT_MODE_APPLIES' => GESHI_NEVER, 117 'SCRIPT_DELIMITERS' => array( 118 ), 119 'HIGHLIGHT_STRICT_BLOCK' => array( 120 ), 121 'TAB_WIDTH' => 4 122 ); 123 124 ?> 125