scheme.php

gehe zur Dokumentation dieser Datei
00001 <?php
00002 /*************************************************************************************
00003  * scheme.php
00004  * ----------
00005  * Author: Jon Raphaelson (jonraphaelson@gmail.com)
00006  * Copyright: (c) 2005 Jon Raphaelson, Nigel McNie (http://qbnz.com/highlighter)
00007  * Release Version: 1.0.7.20
00008  * Date Started: 2004/08/30
00009  *
00010  * Scheme language file for GeSHi.
00011  *
00012  * CHANGES
00013  * -------
00014  * 2005/09/22 (1.0.0)
00015  *  -  First Release
00016  *
00017  * TODO (updated 2005/09/22)
00018  * -------------------------
00019  *
00020  *************************************************************************************
00021  *
00022  *     This file is part of GeSHi.
00023  *
00024  *   GeSHi is free software; you can redistribute it and/or modify
00025  *   it under the terms of the GNU General Public License as published by
00026  *   the Free Software Foundation; either version 2 of the License, or
00027  *   (at your option) any later version.
00028  *
00029  *   GeSHi is distributed in the hope that it will be useful,
00030  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
00031  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00032  *   GNU General Public License for more details.
00033  *
00034  *   You should have received a copy of the GNU General Public License
00035  *   along with GeSHi; if not, write to the Free Software
00036  *   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
00037  *
00038  ************************************************************************************/
00039 
00040 $language_data = array (
00041      'LANG_NAME' => 'Scheme',
00042      'COMMENT_SINGLE' => array(1 => ';'),
00043      'COMMENT_MULTI' => array(';|' => '|;'),
00044      'CASE_KEYWORDS' => GESHI_CAPS_NO_CHANGE,
00045      'QUOTEMARKS' => array('"'),
00046      'ESCAPE_CHAR' => '\\',
00047      'KEYWORDS' => array(
00048           1 => array(
00049             'abs', 'acos', 'and', 'angle', 'append', 'appply', 'approximate',
00050             'asin', 'assoc', 'assq', 'assv', 'atan',
00051             
00052             'begin', 'boolean?', 'bound-identifier=?', 
00053             
00054             'caar', 'caddr', 'cadr', 'call-with-current-continuation', 
00055             'call-with-input-file', 'call-with-output-file', 'call/cc', 'car',
00056             'case', 'catch', 'cdddar', 'cddddr', 'cdr', 'ceiling', 'char->integer',
00057             'char-alphabetic?', 'char-ci<=?', 'char-ci<?', 'char-ci?', 'char-ci>=?',
00058             'char-ci>?', 'char-ci=?', 'char-downcase', 'char-lower-case?', 
00059             'char-numeric', 'char-ready', 'char-ready?', 'char-upcase', 
00060             'char-upper-case?', 'char-whitespace?', 'char<=?', 'char<?', 'char=?',
00061             'char>=?', 'char>?', 'char?', 'close-input-port', 'close-output-port',
00062             'complex?', 'cond', 'cons', 'construct-identifier', 'cos', 
00063             'current-input-port', 'current-output-port',
00064             
00065             'd', 'define', 'define-syntax', 'delay', 'denominator', 'display', 'do',
00066             
00067             'e', 'eof-object?', 'eq?', 'equal?', 'eqv?', 'even?', 'exact->inexact',
00068             'exact?', 'exp', 'expt', 'else',
00069             
00070             'f', 'floor', 'for-each', 'force', 'free-identifer=?', 
00071             
00072             'gcd', 'gen-counter', 'gen-loser', 'generate-identifier',
00073             
00074             'identifier->symbol', 'identifier', 'if', 'imag-part', 'inexact->exact',
00075             'inexact?', 'input-port?', 'integer->char', 'integer?', 'integrate-system',
00076             
00077             'l', 'lambda', 'last-pair', 'lcm', 'length', 'let', 'let*', 'letrec', 
00078             'list', 'list->string', 'list->vector', 'list-ref', 'list-tail', 'list?',
00079             'load', 'log',
00080             
00081             'magnitude', 'make-polar', 'make-promise', 'make-rectangular',     
00082             'make-string', 'make-vector', 'map', 'map-streams', 'max', 'member', 
00083             'memq', 'memv', 'min', 'modulo',
00084             
00085             'negative', 'newline', 'nil', 'not', 'null?', 'number->string', 'number?',
00086             'numerator',
00087             
00088             'odd?', 'open-input-file', 'open-output-file', 'or', 'output-port', 
00089             
00090             'pair?', 'peek-char', 'positive?', 'procedure?',
00091             
00092             'quasiquote', 'quote', 'quotient', 
00093             
00094             'rational', 'rationalize', 'read', 'read-char', 'real-part', 'real?',
00095             'remainder', 'return', 'reverse',
00096             
00097             's', 'sequence', 'set!', 'set-char!', 'set-cdr!', 'sin', 'sqrt', 'string',
00098             'string->list', 'string->number', 'string->symbol', 'string-append', 
00099             'string-ci<=?', 'string-ci<?', 'string-ci=?', 'string-ci>=?', 
00100             'string-ci>?', 'string-copy', 'string-fill!', 'string-length', 
00101             'string-ref', 'string-set!', 'string<=?', 'string<?', 'string=?', 
00102             'string>=?', 'string>?', 'string?', 'substring', 'symbol->string', 
00103             'symbol?', 'syntax', 'syntax-rules',
00104             
00105             't', 'tan', 'template', 'transcript-off', 'transcript-on', 'truncate',
00106             
00107             'unquote', 'unquote-splicing', 'unwrap-syntax', 
00108             
00109             'vector', 'vector->list', 'vector-fill!', 'vector-length', 'vector-ref', 
00110             'vector-set!', 'vector?', 
00111             
00112             'with-input-from-file', 'with-output-to-file', 'write', 'write-char',
00113             
00114             'zero?'
00115             
00116                )
00117           ),
00118      'SYMBOLS' => array(
00119           '(', ')', '{', '}', '[', ']', '!', '%', '^', '&', '/','+','-','*','=','<','>',';','|'
00120           ),
00121      'CASE_SENSITIVE' => array(
00122           GESHI_COMMENTS => true,
00123           1 => false
00124           ),
00125      'STYLES' => array(
00126           'KEYWORDS' => array(
00127                1 => 'color: #b1b100;'
00128                ),
00129           'COMMENTS' => array(
00130                1 => 'color: #808080; font-style: italic;',
00131                'MULTI' => 'color: #808080; font-style: italic;'
00132                ),
00133           'ESCAPE_CHAR' => array(
00134                0 => 'color: #000099; font-weight: bold;'
00135                ),
00136           'BRACKETS' => array(
00137                0 => 'color: #66cc66;'
00138                ),
00139           'STRINGS' => array(
00140                0 => 'color: #ff0000;'
00141                ),
00142           'NUMBERS' => array(
00143                0 => 'color: #cc66cc;'
00144                ),
00145           'METHODS' => array(
00146                0 => 'color: #202020;'
00147                ),
00148           'SYMBOLS' => array(
00149                0 => 'color: #66cc66;'
00150                ),
00151           'REGEXPS' => array(
00152                ),
00153           'SCRIPT' => array(
00154                )
00155           ),
00156      'URLS' => array(
00157           ),
00158      'OOLANG' => false,
00159      'OBJECT_SPLITTERS' => array(
00160           ),
00161      'REGEXPS' => array(
00162           ),
00163      'STRICT_MODE_APPLIES' => GESHI_NEVER,
00164      'SCRIPT_DELIMITERS' => array(
00165           ),
00166      'HIGHLIGHT_STRICT_BLOCK' => array(
00167           )
00168 );
00169 
00170 ?>

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