KXStudio Website https://kx.studio/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

125 lines
3.9KB

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