| 1 |
<?php |
|---|
| 2 |
|
|---|
| 3 |
|
|---|
| 4 |
|
|---|
| 5 |
|
|---|
| 6 |
|
|---|
| 7 |
|
|---|
| 8 |
|
|---|
| 9 |
|
|---|
| 10 |
|
|---|
| 11 |
|
|---|
| 12 |
|
|---|
| 13 |
|
|---|
| 14 |
|
|---|
| 15 |
|
|---|
| 16 |
|
|---|
| 17 |
|
|---|
| 18 |
|
|---|
| 19 |
|
|---|
| 20 |
|
|---|
| 21 |
|
|---|
| 22 |
|
|---|
| 23 |
|
|---|
| 24 |
|
|---|
| 25 |
|
|---|
| 26 |
|
|---|
| 27 |
|
|---|
| 28 |
|
|---|
| 29 |
|
|---|
| 30 |
|
|---|
| 31 |
|
|---|
| 32 |
|
|---|
| 33 |
|
|---|
| 34 |
|
|---|
| 35 |
|
|---|
| 36 |
|
|---|
| 37 |
|
|---|
| 38 |
|
|---|
| 39 |
|
|---|
| 40 |
|
|---|
| 41 |
|
|---|
| 42 |
|
|---|
| 43 |
|
|---|
| 44 |
$language_data = array ( |
|---|
| 45 |
'LANG_NAME' => 'OpenOffice.org Basic', |
|---|
| 46 |
'COMMENT_SINGLE' => array(1 => "'"), |
|---|
| 47 |
'COMMENT_MULTI' => array(), |
|---|
| 48 |
'CASE_KEYWORDS' => GESHI_CAPS_NO_CHANGE, |
|---|
| 49 |
'QUOTEMARKS' => array('"'), |
|---|
| 50 |
'ESCAPE_CHAR' => '', |
|---|
| 51 |
'KEYWORDS' => array( |
|---|
| 52 |
1 => array( |
|---|
| 53 |
'dim','private','public','global','as','if','redim','true','set', |
|---|
| 54 |
'byval', |
|---|
| 55 |
'false','bool','double','integer','long','object','single','variant', |
|---|
| 56 |
'msgbox','print','inputbox','green','blue','red','qbcolor', |
|---|
| 57 |
'rgb','open','close','reset','freefile','get','input','line', |
|---|
| 58 |
'put','write','loc','seek','eof','lof','chdir','chdrive', |
|---|
| 59 |
'curdir','dir','fileattr','filecopy','filedatetime','fileexists', |
|---|
| 60 |
'filelen','getattr','kill','mkdir','name','rmdir','setattr', |
|---|
| 61 |
'dateserial','datevalue','day','month','weekday','year','cdatetoiso', |
|---|
| 62 |
'cdatefromiso','hour','minute','second','timeserial','timevalue', |
|---|
| 63 |
'date','now','time','timer','erl','err','error','on','error','goto','resume', |
|---|
| 64 |
'and','eqv','imp','not','or','xor','mod','','atn','cos','sin','tan','log', |
|---|
| 65 |
'exp','rnd','randomize','sqr','fix','int','abs','sgn','hex','oct', |
|---|
| 66 |
'it','then','else','select','case','iif','do','loop','for','next', |
|---|
| 67 |
'while','wend','gosub','return','goto','on','goto','call','choose','declare', |
|---|
| 68 |
'end','exit','freelibrary','function','rem','stop','sub','switch','with', |
|---|
| 69 |
'cbool','cdate','cdbl','cint','clng','const','csng','cstr','defbool', |
|---|
| 70 |
'defdate','defdbl','defint','deflng','asc','chr','str','val','cbyte', |
|---|
| 71 |
'space','string','format','lcase','left','lset','ltrim','mid','right', |
|---|
| 72 |
'rset','rtrim','trim','ucase','split','join','converttourl','convertfromurl', |
|---|
| 73 |
'instr','len','strcomp','beep','shell','wait','getsystemticks','environ', |
|---|
| 74 |
'getsolarversion','getguitype','twipsperpixelx','twipsperpixely', |
|---|
| 75 |
'createunostruct','createunoservice','getprocessservicemanager', |
|---|
| 76 |
'createunodialog','createunolistener','createunovalue','thiscomponent', |
|---|
| 77 |
'globalscope' |
|---|
| 78 |
) |
|---|
| 79 |
), |
|---|
| 80 |
'SYMBOLS' => array( |
|---|
| 81 |
'(', ')', '=' |
|---|
| 82 |
), |
|---|
| 83 |
'CASE_SENSITIVE' => array( |
|---|
| 84 |
GESHI_COMMENTS => false, |
|---|
| 85 |
1 => false |
|---|
| 86 |
), |
|---|
| 87 |
'STYLES' => array( |
|---|
| 88 |
'KEYWORDS' => array( |
|---|
| 89 |
1 => 'color: #b1b100;' |
|---|
| 90 |
), |
|---|
| 91 |
'COMMENTS' => array( |
|---|
| 92 |
1 => 'color: #808080;' |
|---|
| 93 |
), |
|---|
| 94 |
'BRACKETS' => array( |
|---|
| 95 |
0 => 'color: #66cc66;' |
|---|
| 96 |
), |
|---|
| 97 |
'STRINGS' => array( |
|---|
| 98 |
0 => 'color: #ff0000;' |
|---|
| 99 |
), |
|---|
| 100 |
'NUMBERS' => array( |
|---|
| 101 |
0 => 'color: #cc66cc;' |
|---|
| 102 |
), |
|---|
| 103 |
'METHODS' => array( |
|---|
| 104 |
1 => 'color: #006600;' |
|---|
| 105 |
), |
|---|
| 106 |
'SYMBOLS' => array( |
|---|
| 107 |
0 => 'color: #66cc66;' |
|---|
| 108 |
), |
|---|
| 109 |
'ESCAPE_CHAR' => array( |
|---|
| 110 |
0 => 'color: #000099;' |
|---|
| 111 |
), |
|---|
| 112 |
'SCRIPT' => array( |
|---|
| 113 |
), |
|---|
| 114 |
'REGEXPS' => array( |
|---|
| 115 |
) |
|---|
| 116 |
), |
|---|
| 117 |
'URLS' => array( |
|---|
| 118 |
), |
|---|
| 119 |
'OOLANG' => true, |
|---|
| 120 |
'OBJECT_SPLITTERS' => array( |
|---|
| 121 |
1 => '.' |
|---|
| 122 |
), |
|---|
| 123 |
'REGEXPS' => array( |
|---|
| 124 |
), |
|---|
| 125 |
'STRICT_MODE_APPLIES' => GESHI_NEVER, |
|---|
| 126 |
'SCRIPT_DELIMITERS' => array( |
|---|
| 127 |
), |
|---|
| 128 |
'HIGHLIGHT_STRICT_BLOCK' => array( |
|---|
| 129 |
) |
|---|
| 130 |
); |
|---|
| 131 |
|
|---|
| 132 |
?> |
|---|