00001 <?php
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
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 ?>