io.php

gehe zur Dokumentation dieser Datei
00001 <?php
00002 /*************************************************************************************
00003  * io.php
00004  * -------
00005  * Author: Nigel McNie (nigel@geshi.org)
00006  * Copyright: (c) 2006 Nigel McNie (http://qbnz.com/highlighter/)
00007  * Release Version: 1.0.7.20
00008  * Date Started: 2006/09/23
00009  *
00010  * Io language file for GeSHi. Thanks to Johnathan Wright for the suggestion and help
00011  * with this language :)
00012  *
00013  * CHANGES
00014  * -------
00015  * 2006/09/23(1.0.0)
00016  *  -  First Release
00017  *
00018  * TODO
00019  * -------------------------
00020  *
00021  *************************************************************************************
00022  *
00023  *     This file is part of GeSHi.
00024  *
00025  *   GeSHi is free software; you can redistribute it and/or modify
00026  *   it under the terms of the GNU General Public License as published by
00027  *   the Free Software Foundation; either version 2 of the License, or
00028  *   (at your option) any later version.
00029  *
00030  *   GeSHi is distributed in the hope that it will be useful,
00031  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
00032  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00033  *   GNU General Public License for more details.
00034  *
00035  *   You should have received a copy of the GNU General Public License
00036  *   along with GeSHi; if not, write to the Free Software
00037  *   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
00038  *
00039  ************************************************************************************/
00040 
00041 $language_data = array (
00042      'LANG_NAME' => 'Io',
00043      'COMMENT_SINGLE' => array(1 => '//', 2 => '#'),
00044      'COMMENT_MULTI' => array('/*' => '*/'),
00045      'CASE_KEYWORDS' => GESHI_CAPS_NO_CHANGE,
00046      'QUOTEMARKS' => array('"'),
00047      'ESCAPE_CHAR' => '\\',
00048      'KEYWORDS' => array(
00049         1 => array(
00050             'and', 'break', 'else', 'elseif', 'exit', 'for', 'foreach', 'if', 'ifFalse', 'ifNil',
00051             'ifTrue', 'or', 'pass', 'raise', 'return', 'then', 'try', 'wait', 'while', 'yield'
00052                ),
00053         2 => array(
00054             'activate', 'activeCoroCount', 'asString', 'block', 'catch', 'clone', 'collectGarbage',
00055             'compileString', 'continue', 'do', 'doFile', 'doMessage', 'doString', 'forward',
00056             'getSlot', 'getenv', 'hasSlot', 'isActive', 'isNil', 'isResumable', 'list', 'message',
00057             'method', 'parent', 'pause', 'perform', 'performWithArgList', 'print', 'proto',
00058             'raiseResumable', 'removeSlot', 'resend', 'resume', 'schedulerSleepSeconds', 'self',
00059             'sender', 'setSchedulerSleepSeconds', 'setSlot', 'shallowCopy', 'slotNames', 'super',
00060             'system', 'thisBlock', 'thisContext', 'thisMessage', 'type', 'uniqueId', 'updateSlot',
00061             'write'
00062                ),
00063         3 => array(
00064             'Array', 'AudioDevice', 'AudioMixer', 'Block', 'Box', 'Buffer', 'CFunction', 'CGI',
00065             'Color', 'Curses', 'DBM', 'DNSResolver', 'DOConnection', 'DOProxy', 'DOServer',
00066             'Date', 'Directory', 'Duration', 'DynLib', 'Error', 'Exception', 'FFT', 'File',
00067             'Fnmatch', 'Font', 'Future', 'GL', 'GLE', 'GLScissor', 'GLU', 'GLUCylinder',
00068             'GLUQuadric', 'GLUSphere', 'GLUT', 'Host', 'Image', 'Importer', 'LinkList', 'List',
00069             'Lobby', 'Locals', 'MD5', 'MP3Decoder', 'MP3Encoder', 'Map', 'Message', 'Movie',
00070             'NULL', 'Nil', 'Nop', 'Notifiction', 'Number', 'Object', 'OpenGL', 'Point', 'Protos',
00071             'Regex', 'SGMLTag', 'SQLite', 'Server', 'ShowMessage', 'SleepyCat', 'SleepyCatCursor',
00072             'Socket', 'SocketManager', 'Sound', 'Soup', 'Store', 'String', 'Tree', 'UDPSender',
00073             'UDPReceiver', 'URL', 'User', 'Warning', 'WeakLink'
00074             )
00075           ),
00076      'SYMBOLS' => array(
00077           '(', ')', '[', ']', '{', '}', '!', '@', '%', '&', '*', '|', '/', '<', '>'
00078           ),
00079      'CASE_SENSITIVE' => array(
00080           GESHI_COMMENTS => false,
00081           1 => false,
00082           2 => false,
00083           3 => false,
00084           ),
00085      'STYLES' => array(
00086           'KEYWORDS' => array(
00087                1 => 'color: #b1b100;',
00088                2 => 'color: #000000; font-weight: bold;',
00089                3 => 'color: #000066;'
00090                ),
00091           'COMMENTS' => array(
00092                1 => 'color: #808080; font-style: italic;',
00093                2 => 'color: #808080; font-style: italic;',
00094                'MULTI' => 'color: #808080; font-style: italic;'
00095                ),
00096           'ESCAPE_CHAR' => array(
00097                0 => 'color: #000099; font-weight: bold;'
00098                ),
00099           'BRACKETS' => array(
00100                0 => 'color: #66cc66;'
00101                ),
00102           'STRINGS' => array(
00103                0 => 'color: #ff0000;'
00104                ),
00105           'NUMBERS' => array(
00106                0 => 'color: #cc66cc;'
00107                ),
00108           'METHODS' => array(
00109                1 => 'color: #006600;',
00110                2 => 'color: #006600;'
00111                ),
00112           'SYMBOLS' => array(
00113                0 => 'color: #66cc66;'
00114                ),
00115           'REGEXPS' => array(
00116                0 => 'color: #0000ff;'
00117                ),
00118           'SCRIPT' => array(
00119                0 => ''
00120                )
00121           ),
00122      'URLS' => array(
00123           1 => '',
00124           2 => '',
00125           3 => ''
00126           ),
00127      'OOLANG' => false,
00128      'OBJECT_SPLITTERS' => array(
00129           ),
00130      'REGEXPS' => array(
00131           ),
00132      'STRICT_MODE_APPLIES' => GESHI_NEVER,
00133      'SCRIPT_DELIMITERS' => array(
00134           ),
00135      'HIGHLIGHT_STRICT_BLOCK' => array(
00136           )
00137 );
00138 
00139 ?>

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