[ Index ]
 

Code source de DokuWiki 2006-11-06

Accédez au Source d'autres logiciels libresSoutenez Angelica Josefina !

title

Body

[fermer]

/inc/geshi/ -> text.php (source)

   1  <?php
   2  /*************************************************************************************
   3   * text.php
   4   * --------
   5   * Author: Sean Hanna (smokingrope@gmail.com)
   6   * Copyright: (c) 2006 Sean Hanna 
   7   * Release Version: 1.0.7.15
   8   * CVS Revision Version: $Revision: 1.2.2.7 $
   9   * Date Started: 04/23/2006
  10   * Last Modified: $Date: 2006/10/23 01:49:59 $
  11   *
  12   * Standard Text File (No Syntax Highlighting).
  13   *
  14   * CHANGES
  15   * -------
  16   * 04/23/2006 (0.5.0)
  17   *  -  Syntax File Created
  18   *
  19   * 04/27/2006 (1.0.0)
  20   * - Documentation Cleaned Up
  21   * - First Release
  22   *
  23   * TODO (updated 04/27/2006)
  24   * -------------------------
  25   * 
  26   * 
  27   *************************************************************************************
  28   *
  29   *     This file is part of GeSHi.
  30   *
  31   *   GeSHi is free software; you can redistribute it and/or modify
  32   *   it under the terms of the GNU General Public License as published by
  33   *   the Free Software Foundation; either version 2 of the License, or
  34   *   (at your option) any later version.
  35   *
  36   *   GeSHi is distributed in the hope that it will be useful,
  37   *   but WITHOUT ANY WARRANTY; without even the implied warranty of
  38   *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  39   *   GNU General Public License for more details.
  40   *
  41   *   You should have received a copy of the GNU General Public License
  42   *   along with GeSHi; if not, write to the Free Software
  43   *   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  44   *
  45  
  46   ************************************************************************************/
  47  $language_data = array (
  48      'LANG_NAME' => 'Text',
  49      'COMMENT_SINGLE' => array( ),
  50      'COMMENT_MULTI' => array( ),
  51      'CASE_KEYWORDS' => GESHI_CAPS_NO_CHANGE,
  52      'QUOTEMARKS' => array(),
  53      'ESCAPE_CHAR' => '',
  54      'KEYWORDS' => array( ),
  55      'SYMBOLS' => array( ),
  56      'CASE_SENSITIVE' => array(
  57          GESHI_COMMENTS => false
  58          ),
  59      'STYLES' => array(
  60          'KEYWORDS' => array(),
  61          'COMMENTS' => array(),
  62          'ESCAPE_CHAR' => array(),
  63          'BRACKETS' => array(),
  64          'STRINGS' => array(),
  65          'NUMBERS' => array(),
  66          'METHODS' => array(),
  67          'SYMBOLS' => array(),
  68          'SCRIPT' => array(),
  69          'REGEXPS' => array()
  70          ),
  71      'OOLANG' => false,
  72      'OBJECT_SPLITTERS' => array(),
  73      'REGEXPS' => array(    ),
  74      'STRICT_MODE_APPLIES' => GESHI_NEVER,
  75      'SCRIPT_DELIMITERS' => array( ),
  76      'HIGHLIGHT_STRICT_BLOCK' => array( )
  77  );
  78  if (isset($this) && is_a($this, 'GeSHi')) {
  79      $this->set_numbers_highlighting(false);
  80      $this->set_brackets_highlighting(false);
  81      $this->disable_highlighting();
  82  }
  83  ?>


Généré le : Tue Apr 3 20:47:31 2007 par Balluche grâce à PHPXref 0.7