A tumblelog CMS built on AJAX, PHP and MySQL.

cfdg.php 3.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. <?php
  2. /*************************************************************************************
  3. * cfdg.php
  4. * --------
  5. * Author: John Horigan <john@glyphic.com>
  6. * Copyright: (c) 2006 John Horigan http://www.ozonehouse.com/john/
  7. * Release Version: 1.0.7.21
  8. * Date Started: 2006/03/11
  9. *
  10. * CFDG language file for GeSHi.
  11. *
  12. * CHANGES
  13. * -------
  14. * 2006/03/11 (1.0.0)
  15. * - First Release
  16. *
  17. * TODO (updated 2006/03/11)
  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' => 'CFDG',
  41. 'COMMENT_SINGLE' => array(1 => '//', 2 => '#'),
  42. 'COMMENT_MULTI' => array('/*' => '*/'),
  43. 'CASE_KEYWORDS' => GESHI_CAPS_NO_CHANGE,
  44. 'QUOTEMARKS' => array("'", '"'),
  45. 'ESCAPE_CHAR' => '',
  46. 'KEYWORDS' => array(
  47. 1 => array(
  48. 'include', 'startshape', 'rule', 'background'
  49. ),
  50. 2 => array(
  51. 'SQUARE', 'CIRCLE', 'TRIANGLE',
  52. ),
  53. 3 => array(
  54. 'b','brightness','h','hue','sat','saturation',
  55. 'a','alpha','x','y','z','s','size',
  56. 'r','rotate','f','flip','skew','xml_set_object'
  57. )
  58. ),
  59. 'SYMBOLS' => array(
  60. '[', ']', '{', '}', '*', '|'
  61. ),
  62. 'CASE_SENSITIVE' => array(
  63. GESHI_COMMENTS => false,
  64. 1 => false,
  65. 2 => false,
  66. 3 => false,
  67. ),
  68. 'STYLES' => array(
  69. 'KEYWORDS' => array(
  70. 1 => 'color: #717100;',
  71. 2 => 'color: #000000; font-weight: bold;',
  72. 3 => 'color: #006666;'
  73. ),
  74. 'COMMENTS' => array(
  75. 1 => 'color: #808080; font-style: italic;',
  76. 2 => 'color: #808080; font-style: italic;',
  77. 'MULTI' => 'color: #808080; font-style: italic;'
  78. ),
  79. 'ESCAPE_CHAR' => array(
  80. 0 => 'color: #000099; font-weight: bold;'
  81. ),
  82. 'BRACKETS' => array(
  83. 0 => 'color: #66cc66;'
  84. ),
  85. 'STRINGS' => array(
  86. 0 => 'color: #ff0000;'
  87. ),
  88. 'NUMBERS' => array(
  89. 0 => 'color: #cc66cc;'
  90. ),
  91. 'METHODS' => array(
  92. 1 => 'color: #006600;',
  93. 2 => 'color: #006600;'
  94. ),
  95. 'SYMBOLS' => array(
  96. 0 => 'color: #66cc66;'
  97. ),
  98. 'REGEXPS' => array(
  99. ),
  100. 'SCRIPT' => array(
  101. 0 => '',
  102. 1 => '',
  103. 2 => '',
  104. 3 => ''
  105. )
  106. ),
  107. 'URLS' => array(
  108. 1 => '',
  109. 2 => '',
  110. 3 => '',
  111. 4 => ''
  112. ),
  113. 'OOLANG' => false,
  114. 'OBJECT_SPLITTERS' => '',
  115. 'REGEXPS' => array(
  116. ),
  117. 'STRICT_MODE_APPLIES' => GESHI_NEVER,
  118. 'SCRIPT_DELIMITERS' => array(
  119. ),
  120. 'HIGHLIGHT_STRICT_BLOCK' => array(
  121. )
  122. );
  123. ?>