bnf.php

gehe zur Dokumentation dieser Datei
00001 <?php
00002 /*************************************************************************************
00003  * bnf.php
00004  * --------
00005  * Author: Rowan Rodrik van der Molen (rowan@bigsmoke.us)
00006  * Copyright: (c) 2006 Rowan Rodrik van der Molen (http://www.bigsmoke.us/)
00007  * Release Version: 1.0.7.20
00008  * Date Started: 2006/09/28
00009  *
00010  * BNF (Backus-Naur form) language file for GeSHi.
00011  *
00012  * See http://en.wikipedia.org/wiki/Backus-Naur_form for more info on BNF.
00013  *
00014  * CHANGES
00015  * -------
00016  * 2006/09/18 (1.0.0)
00017  *  -  First Release
00018  *
00019  * TODO (updated 2006/09/18)
00020  * -------------------------
00021  * * Nothing I can think of
00022  *
00023  *************************************************************************************
00024  *
00025  *     This file is part of GeSHi.
00026  *
00027  *   GeSHi is free software; you can redistribute it and/or modify
00028  *   it under the terms of the GNU General Public License as published by
00029  *   the Free Software Foundation; either version 2 of the License, or
00030  *   (at your option) any later version.
00031  *
00032  *   GeSHi is distributed in the hope that it will be useful,
00033  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
00034  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00035  *   GNU General Public License for more details.
00036  *
00037  *   You should have received a copy of the GNU General Public License
00038  *   along with GeSHi; if not, write to the Free Software
00039  *   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
00040  *
00041  ************************************************************************************/
00042 
00043 $language_data = array (
00044     'LANG_NAME' => 'bnf',
00045     'COMMENT_SINGLE' => array(),
00046     'COMMENT_MULTI' => array(),
00047     'CASE_KEYWORDS' => GESHI_CAPS_NO_CHANGE,
00048     'QUOTEMARKS' => array('"', "'"),
00049     'ESCAPE_CHAR' => '',
00050     'KEYWORDS' => array(),
00051     'SYMBOLS' => array(
00052         '<', '>', '::=', '|'
00053     ),
00054     'CASE_SENSITIVE' => array(
00055         //GESHI_COMMENTS => false
00056     ),
00057     'STYLES' => array(
00058         'KEYWORDS' => array(),
00059         'COMMENTS' => array(
00060         ),
00061         'ESCAPE_CHAR' => array(
00062             0 => ''
00063         ),
00064         'BRACKETS' => array(
00065             0 => ''
00066         ),
00067         'STRINGS' => array(
00068             0 => 'color: #a00;',
00069             1 => 'color: #a00;'
00070         ),
00071         'NUMBERS' => array(
00072             0 => ''
00073         ),
00074         'METHODS' => array(
00075             0 => ''
00076         ),
00077         'SYMBOLS' => array(
00078             0 => 'color: #000066; font-weight: bold;', // Unused
00079         ),
00080         'REGEXPS' => array(
00081             0 => 'color: #007;',
00082             1 => 'color: #099;',
00083             2 => 'color: #060;',
00084             3 => 'color: #909;'
00085         ),
00086         'SCRIPT' => array(
00087           0 => ''
00088         )
00089     ),
00090     'URLS' => array(),
00091     'OOLANG' => false,
00092     'OBJECT_SPLITTERS' => array(),
00093     'REGEXPS' => array(
00094         0 => array(
00095             GESHI_SEARCH => '(&lt;)([^&]+?)(&gt;)',
00096             GESHI_REPLACE => '\\2',
00097             GESHI_MODIFIERS => '',
00098             GESHI_BEFORE => '\\1',
00099             GESHI_AFTER => '\\3'
00100         ),
00101         1 => array(
00102             GESHI_SEARCH => '(&lt;|&gt;)',
00103             GESHI_REPLACE => '\\1',
00104             GESHI_MODIFIERS => '',
00105             GESHI_BEFORE => '',
00106             GESHI_AFTER => ''
00107         ),
00108         2 => array(
00109             GESHI_SEARCH => '(::=)',
00110             GESHI_REPLACE => '\\1',
00111             GESHI_MODIFIERS => '',
00112             GESHI_BEFORE => '',
00113             GESHI_AFTER => ''
00114         ),
00115         3 => array(
00116             GESHI_SEARCH => '([()])',
00117             GESHI_REPLACE => '\\1',
00118             GESHI_MODIFIERS => '',
00119             GESHI_BEFORE => '',
00120             GESHI_AFTER => ''
00121         ),
00122     ),
00123     'STRICT_MODE_APPLIES' => GESHI_NEVER,
00124     'SCRIPT_DELIMITERS' => array(
00125     ),
00126     'HIGHLIGHT_STRICT_BLOCK' => array(
00127     )
00128 );
00129 
00130 ?>

Erzeugt am Thu May 14 00:55:48 2009 für OpenRat von  doxygen 1.5.8