lisp.php

gehe zur Dokumentation dieser Datei
00001 <?php
00002 /*************************************************************************************
00003  * lisp.php
00004  * --------
00005  * Author: Roberto Rossi (rsoftware@altervista.org)
00006  * Copyright: (c) 2004 Roberto Rossi (http://rsoftware.altervista.org), Nigel McNie (http://qbnz.com/highlighter
00007  * Release Version: 1.0.7.20
00008  * Date Started: 2004/08/30
00009  *
00010  * Generic Lisp language file for GeSHi.
00011  *
00012  * CHANGES
00013  * -------
00014  * 2005/12/9  (1.0.2)
00015  *  -  Added support for :keywords and ::access (Denis Mashkevich)
00016  * 2004/11/27 (1.0.1)
00017  *  -  Added support for multiple object splitters
00018  * 2004/08/30 (1.0.0)
00019  *  -  First Release
00020  *
00021  * TODO (updated 2004/11/27)
00022  * -------------------------
00023  *
00024  *************************************************************************************
00025  *
00026  *     This file is part of GeSHi.
00027  *
00028  *   GeSHi is free software; you can redistribute it and/or modify
00029  *   it under the terms of the GNU General Public License as published by
00030  *   the Free Software Foundation; either version 2 of the License, or
00031  *   (at your option) any later version.
00032  *
00033  *   GeSHi is distributed in the hope that it will be useful,
00034  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
00035  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00036  *   GNU General Public License for more details.
00037  *
00038  *   You should have received a copy of the GNU General Public License
00039  *   along with GeSHi; if not, write to the Free Software
00040  *   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
00041  *
00042  ************************************************************************************/
00043 
00044 $language_data = array (
00045      'LANG_NAME' => 'Lisp',
00046      'COMMENT_SINGLE' => array(1 => ';'),
00047      'COMMENT_MULTI' => array(';|' => '|;'),
00048      'CASE_KEYWORDS' => GESHI_CAPS_NO_CHANGE,
00049      'QUOTEMARKS' => array('"'),
00050      'ESCAPE_CHAR' => '\\',
00051      'KEYWORDS' => array(
00052           1 => array(
00053             'not','defun','princ',
00054             'eval','apply','funcall','quote','identity','function',
00055             'complement','backquote','lambda','set','setq','setf',
00056             'defun','defmacro','gensym','make','symbol','intern',
00057             'symbol','name','symbol','value','symbol','plist','get',
00058             'getf','putprop','remprop','hash','make','array','aref',
00059             'car','cdr','caar','cadr','cdar','cddr','caaar','caadr','cadar',
00060             'caddr','cdaar','cdadr','cddar','cdddr','caaaar','caaadr',
00061             'caadar','caaddr','cadaar','cadadr','caddar','cadddr',
00062             'cdaaar','cdaadr','cdadar','cdaddr','cddaar','cddadr',
00063             'cdddar','cddddr','cons','list','append','reverse','last','nth',
00064             'nthcdr','member','assoc','subst','sublis','nsubst',
00065             'nsublis','remove','length','list','length',
00066             'mapc','mapcar','mapl','maplist','mapcan','mapcon','rplaca',
00067             'rplacd','nconc','delete','atom','symbolp','numberp',
00068             'boundp','null','listp','consp','minusp','zerop','plusp',
00069             'evenp','oddp','eq','eql','equal','cond','case','and','or',
00070             'let','l','if','prog','prog1','prog2','progn','go','return',
00071             'do','dolist','dotimes','catch','throw','error','cerror','break',
00072             'continue','errset','baktrace','evalhook','truncate','float',
00073             'rem','min','max','abs','sin','cos','tan','expt','exp','sqrt',
00074             'random','logand','logior','logxor','lognot','bignums','logeqv',
00075             'lognand','lognor','logorc2','logtest','logbitp','logcount',
00076             'integer','length','nil'
00077                )
00078           ),
00079      'SYMBOLS' => array(
00080           '(', ')', '{', '}', '[', ']', '!', '%', '^', '&', '/','+','-','*','=','<','>',';','|'
00081           ),
00082      'CASE_SENSITIVE' => array(
00083           GESHI_COMMENTS => true,
00084           1 => false
00085           ),
00086      'STYLES' => array(
00087           'KEYWORDS' => array(
00088                1 => 'color: #b1b100;'
00089                ),
00090           'COMMENTS' => array(
00091                1 => 'color: #808080; font-style: italic;',
00092                'MULTI' => 'color: #808080; font-style: italic;'
00093                ),
00094           'ESCAPE_CHAR' => array(
00095                0 => 'color: #000099; font-weight: bold;'
00096                ),
00097           'BRACKETS' => array(
00098                0 => 'color: #66cc66;'
00099                ),
00100           'STRINGS' => array(
00101                0 => 'color: #ff0000;'
00102                ),
00103           'NUMBERS' => array(
00104                0 => 'color: #cc66cc;'
00105                ),
00106           'METHODS' => array(
00107                0 => 'color: #555;',
00108             1 => 'color: #555;'
00109                ),
00110           'SYMBOLS' => array(
00111                0 => 'color: #66cc66;'
00112                ),
00113           'REGEXPS' => array(
00114                ),
00115           'SCRIPT' => array(
00116                )
00117           ),
00118      'URLS' => array(
00119           ),
00120      'OOLANG' => true,
00121      'OBJECT_SPLITTERS' => array(
00122             '::', ':'
00123           ),
00124      'REGEXPS' => array(
00125           ),
00126      'STRICT_MODE_APPLIES' => GESHI_NEVER,
00127      'SCRIPT_DELIMITERS' => array(
00128           ),
00129      'HIGHLIGHT_STRICT_BLOCK' => array(
00130           )
00131 );
00132 
00133 ?>

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