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.

108 lines
3.8KB

  1. <?php
  2. /*************************************************************************************
  3. * hicest.php
  4. * --------
  5. * Author: Georg Petrich (spt@hicest.com)
  6. * Copyright: (c) 2010 Georg Petrich (http://www.HicEst.com)
  7. * Release Version: 1.0.8.11
  8. * Date Started: 2010/03/15
  9. *
  10. * HicEst language file for GeSHi.
  11. *
  12. * CHANGES
  13. * -------
  14. * yyyy/mm/dd (v.v.v.v)
  15. * - First Release
  16. *
  17. * TODO (updated yyyy/mm/dd)
  18. * -------------------------
  19. *
  20. *************************************************************************************
  21. *
  22. * This file is part of GeSHi.
  23. *
  24. * GeSHi is free software; you can redistribute it and/or modify
  25. * it under the terms of the GNU General Public License as published by
  26. * the Free Software Foundation; either version 2 of the License, or
  27. * (at your option) any later version.
  28. *
  29. * GeSHi is distributed in the hope that it will be useful,
  30. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  31. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  32. * GNU General Public License for more details.
  33. *
  34. * You should have received a copy of the GNU General Public License
  35. * along with GeSHi; if not, write to the Free Software
  36. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  37. *
  38. ************************************************************************************/
  39. $language_data = array(
  40. 'LANG_NAME' => 'HicEst',
  41. 'COMMENT_SINGLE' => array(1 => '!'),
  42. 'COMMENT_MULTI' => array(),
  43. 'CASE_KEYWORDS' => GESHI_CAPS_NO_CHANGE,
  44. 'QUOTEMARKS' => array('"', '\''),
  45. 'ESCAPE_CHAR' => '',
  46. 'KEYWORDS' => array(
  47. 1 => array(
  48. '$cmd_line', 'abs', 'acos', 'alarm', 'alias', 'allocate', 'appendix', 'asin', 'atan', 'axis', 'beep',
  49. 'call', 'ceiling', 'char', 'character', 'com', 'continue', 'cos', 'cosh', 'data', 'diffeq', 'dimension', 'dlg', 'dll',
  50. 'do', 'edit', 'else', 'elseif', 'end', 'enddo', 'endif', 'exp', 'floor', 'function', 'fuz', 'goto', 'iand', 'ichar',
  51. 'ieor', 'if', 'index', 'init', 'int', 'intpol', 'ior', 'key', 'len', 'len_trim', 'line', 'lock', 'log', 'max', 'maxloc',
  52. 'min', 'minloc', 'mod', 'nint', 'not', 'open', 'pop', 'ran', 'read', 'real', 'return', 'rgb', 'roots', 'sign', 'sin',
  53. 'sinh', 'solve', 'sort', 'subroutine', 'sum', 'system', 'tan', 'tanh', 'then', 'time', 'use', 'window', 'write', 'xeq'
  54. )
  55. ),
  56. 'SYMBOLS' => array(
  57. 1 => array(
  58. '(', ')', '+', '-', '*', '/', '=', '<', '>', '!', '^', ':', ','
  59. ),
  60. 2 => array(
  61. '$', '$$'
  62. )
  63. ),
  64. 'CASE_SENSITIVE' => array(
  65. GESHI_COMMENTS => false,
  66. 1 => false
  67. ),
  68. 'STYLES' => array(
  69. 'KEYWORDS' => array(
  70. 1 => 'color: #ff0000;'
  71. ),
  72. 'COMMENTS' => array(
  73. 1 => 'color: #666666; font-style: italic;',
  74. 'MULTI' => 'color: #666666; font-style: italic;'
  75. ),
  76. 'ESCAPE_CHAR' => array(
  77. 0 => 'color: #000099; font-weight: bold;'
  78. ),
  79. 'BRACKETS' => array(
  80. 0 => 'color: #009900;'
  81. ),
  82. 'STRINGS' => array(
  83. 0 => 'color: #0000ff;'
  84. ),
  85. 'NUMBERS' => array(
  86. 0 => 'color: #cc66cc;',
  87. ),
  88. 'METHODS' => array(
  89. 0 => 'color: #004000;'
  90. ),
  91. 'SYMBOLS' => array(
  92. 1 => 'color: #339933;',
  93. 2 => 'color: #ff0000;'
  94. ),
  95. 'REGEXPS' => array(),
  96. 'SCRIPT' => array()
  97. ),
  98. 'URLS' => array(1 => ''),
  99. 'OOLANG' => false,
  100. 'OBJECT_SPLITTERS' => array(),
  101. 'REGEXPS' => array(),
  102. 'STRICT_MODE_APPLIES' => GESHI_NEVER,
  103. 'SCRIPT_DELIMITERS' => array(),
  104. 'HIGHLIGHT_STRICT_BLOCK' => array()
  105. );
  106. ?>