A tumblelog CMS built on AJAX, PHP and MySQL.

robots.php 2.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. <?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.7.21
  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. $language_data = array (
  35. 'LANG_NAME' => 'robots.txt',
  36. 'COMMENT_SINGLE' => array(1 => '#'),
  37. 'COMMENT_MULTI' => array(),
  38. 'CASE_KEYWORDS' => GESHI_CAPS_NO_CHANGE,
  39. 'QUOTEMARKS' => array(),
  40. 'ESCAPE_CHAR' => '',
  41. 'KEYWORDS' => array(
  42. 1 => array(
  43. 'User-agent', 'Disallow'
  44. )
  45. ),
  46. 'SYMBOLS' => array(
  47. ':'
  48. ),
  49. 'CASE_SENSITIVE' => array(
  50. GESHI_COMMENTS => false,
  51. 1 => true
  52. ),
  53. 'STYLES' => array(
  54. 'KEYWORDS' => array(
  55. 1 => 'color: #b1b100;'
  56. ),
  57. 'COMMENTS' => array(
  58. 1 => 'color: #808080; font-style: italic;',
  59. ),
  60. 'ESCAPE_CHAR' => array(
  61. 0 => 'color: #000099; font-weight: bold;'
  62. ),
  63. 'BRACKETS' => array(
  64. 0 => 'color: #66cc66;'
  65. ),
  66. 'STRINGS' => array(
  67. 0 => 'color: #ff0000;'
  68. ),
  69. 'NUMBERS' => array(
  70. 0 => 'color: #cc66cc;'
  71. ),
  72. 'METHODS' => array(
  73. ),
  74. 'SYMBOLS' => array(
  75. 0 => 'color: #66cc66;'
  76. ),
  77. 'REGEXPS' => array(
  78. ),
  79. 'SCRIPT' => array(
  80. )
  81. ),
  82. 'URLS' => array(
  83. 1 => 'http://www.robotstxt.org/wc/norobots.html'
  84. ),
  85. 'OOLANG' => false,
  86. 'OBJECT_SPLITTERS' => array(
  87. ),
  88. 'REGEXPS' => array(
  89. ),
  90. 'STRICT_MODE_APPLIES' => GESHI_NEVER,
  91. 'SCRIPT_DELIMITERS' => array(
  92. ),
  93. 'HIGHLIGHT_STRICT_BLOCK' => array(
  94. )
  95. );
  96. ?>