diff --git a/data/pages/wiki/syntax.txt b/data/pages/wiki/syntax.txt index 35509fdd7d91a7a68bb14d1a5524a1f20dfc171a..824927a5ef89dafac1740452060e03d42b3414e0 100644 --- a/data/pages/wiki/syntax.txt +++ b/data/pages/wiki/syntax.txt @@ -332,7 +332,7 @@ class HelloWorldApp { } </code> -The following language strings are currently recognized: //actionscript, ada, apache, asm, asp, bash, caddcl, cadlisp, c, c_mac, cpp, csharp, css, delphi, diff, d, html4strict, java, javascript, lisp, lua, matlab, mpasm, nsis, objc, oobas, oracle8, pascal, perl, php-brief, php, python, qbasic, smarty, sql, vb, vbnet, vhdl, visualfoxpro, xml// +The following language strings are currently recognized: //actionscript, ada, apache, asm, asp, bash, caddcl, cadlisp, c, c_mac, cpp, csharp, css, delphi, diff, d, div, eiffel, gml, html4strict, java, javascript, lisp, lua, matlab, mpasm, nsis, objc, oobas, oracle8, pascal, perl, php-brief, php, python, qbasic, smarty, sql, vb, vbnet, vhdl, visualfoxpro, xml// ===== Embedding HTML and PHP ===== diff --git a/inc/geshi.php b/inc/geshi.php index 5e61a44c8b14106cd1ec4946d550307954074e37..46176ba1906e123cfd12b7160af87cc584817c93 100644 --- a/inc/geshi.php +++ b/inc/geshi.php @@ -28,7 +28,7 @@ * @author Nigel McNie <nigel@geshi.org> * @copyright Copyright © 2004, 2005, Nigel McNie * @license http://gnu.org/copyleft/gpl.html GNU GPL - * @version $Id: geshi.php,v 1.9 2005/06/17 10:45:23 oracleshinoda Exp $ + * @version $Id: geshi.php,v 1.10 2005/07/25 10:42:23 oracleshinoda Exp $ * */ @@ -40,7 +40,7 @@ // /** The version of this GeSHi file */ -define('GESHI_VERSION', '1.0.7'); +define('GESHI_VERSION', '1.0.7.1'); /** For the future (though this may never be realised) */ define('GESHI_OUTPUT_HTML', 0); @@ -1979,14 +1979,14 @@ class GeSHi $keyword = quotemeta($keyword); if ($this->language_data['CASE_SENSITIVE'][$k]) { $stuff_to_parse = preg_replace( - "#([^a-zA-Z0-9\$_\|\.\#;>])($keyword)([^a-zA-Z0-9_<\|%\-&])#e", + "#([^a-zA-Z0-9\$_\|\#;>])($keyword)([^a-zA-Z0-9_<\|%\-&])#e", "'\\1' . $func2('\\2', '$k', 'BEGIN') . '<|$styles>' . $func('\\2') . '|>' . $func2('\\2', '$k', 'END') . '\\3'", $stuff_to_parse ); } else { // Change the case of the word. $stuff_to_parse = preg_replace( - "#([^a-zA-Z0-9\$_\|\.\#;>])($keyword)([^a-zA-Z0-9_<\|%\-&])#ie", + "#([^a-zA-Z0-9\$_\|\#;>])($keyword)([^a-zA-Z0-9_<\|%\-&])#ie", "'\\1' . $func2('\\2', '$k', 'BEGIN') . '<|$styles>' . $func('\\2') . '|>' . $func2('\\2', '$k', 'END') . '\\3'", $stuff_to_parse ); @@ -2216,13 +2216,12 @@ class GeSHi $end = '</div>'; } else { if ($this->use_classes) { + $attr = ' class="li1"'; $def_attr = ' class="de1"'; } else { + $attr = ' style="' . $this->line_style1 . '"'; $def_attr = ' style="' . $this->code_style . '"'; } - // Reset everything - $attr = ''; - // Span or div? $start = "<div$def_attr>"; $end = '</div>'; } diff --git a/inc/geshi/actionscript.php b/inc/geshi/actionscript.php index 8373c2abfabf6b1df11941aba4e6cc6b19d1be2d..5032f98a1937d5de92df838efccfea0eaf420c2e 100644 --- a/inc/geshi/actionscript.php +++ b/inc/geshi/actionscript.php @@ -4,10 +4,10 @@ * ---------------- * Author: Steffen Krause (Steffen.krause@muse.de) * Copyright: (c) 2004 Steffen Krause, Nigel McNie (http://qbnz.com/highlighter) - * Release Version: 1.0.6 - * CVS Revision Version: $Revision: 1.1 $ + * Release Version: 1.0.7.1 + * CVS Revision Version: $Revision: 1.2 $ * Date Started: 2004/06/20 - * Last Modified: $Date: 2005/06/02 04:57:18 $ + * Last Modified: $Date: 2005/07/26 05:23:30 $ * * Actionscript language file for GeSHi. * diff --git a/inc/geshi/ada.php b/inc/geshi/ada.php index 848b3b1bf452738514de6af454d3b9832c2d5c38..f0cf602e00e0792b12ac91c53b1882ed69901c7e 100644 --- a/inc/geshi/ada.php +++ b/inc/geshi/ada.php @@ -4,10 +4,10 @@ * ------- * Author: Tux (tux@inmail.cz) * Copyright: (c) 2004 Tux (http://tux.a4.cz/), Nigel McNie (http://qbnz.com/highlighter) - * Release Version: 1.0.6 - * CVS Revision Version: $Revision: 1.2 $ + * Release Version: 1.0.7.1 + * CVS Revision Version: $Revision: 1.3 $ * Date Started: 2004/07/29 - * Last Modified: $Date: 2005/06/13 22:27:06 $ + * Last Modified: $Date: 2005/07/26 05:23:30 $ * * Ada language file for GeSHi. * Words are from SciTe configuration file diff --git a/inc/geshi/apache.php b/inc/geshi/apache.php index 893090965e0852a36299acb407c8c87bee33b7b2..c9eb55c8e0bb6efb8513100b42dbe0987dc862a7 100644 --- a/inc/geshi/apache.php +++ b/inc/geshi/apache.php @@ -4,10 +4,10 @@ * ---------- * Author: Tux (tux@inmail.cz) * Copyright: (c) 2004 Tux (http://tux.a4.cz/), Nigel McNie (http://qbnz.com/highlighter) - * Release Version: 1.0.6 - * CVS Revision Version: $Revision: 1.2 $ + * Release Version: 1.0.7.1 + * CVS Revision Version: $Revision: 1.3 $ * Date Started: 2004/29/07 - * Last Modified: $Date: 2005/06/13 22:27:06 $ + * Last Modified: $Date: 2005/07/26 05:23:30 $ * * Apache language file for GeSHi. * Words are from SciTe configuration file diff --git a/inc/geshi/asm.php b/inc/geshi/asm.php index 9cbf59ef846f3d54cde9dd0861c9b8f3b5bd7fbc..eb7edf5aced68dca6f83bb8991f1b5888d584c8d 100644 --- a/inc/geshi/asm.php +++ b/inc/geshi/asm.php @@ -4,10 +4,10 @@ * ------- * Author: Tux (tux@inmail.cz) * Copyright: (c) 2004 Tux (http://tux.a4.cz/), Nigel McNie (http://qbnz.com/highlighter) - * Release Version: 1.0.6 - * CVS Revision Version: $Revision: 1.1 $ + * Release Version: 1.0.7.1 + * CVS Revision Version: $Revision: 1.2 $ * Date Started: 2004/07/27 - * Last Modified: $Date: 2005/06/02 04:57:18 $ + * Last Modified: $Date: 2005/07/26 05:23:30 $ * * x86 Assembler language file for GeSHi. * Words are from SciTe configuration file (based on NASM syntax) diff --git a/inc/geshi/asp.php b/inc/geshi/asp.php index 5135d4771d94c92196d3a6cd4cac3f12c3f9b8d2..9004bd8c4b0fd6042bf6882be60c4c04479189ed 100644 --- a/inc/geshi/asp.php +++ b/inc/geshi/asp.php @@ -4,10 +4,10 @@ * -------- * Author: Amit Gupta (http://blog.igeek.info/) * Copyright: (c) 2004 Amit Gupta (http://blog.igeek.info/), Nigel McNie (http://qbnz.com/highlighter) - * Release Version: 1.0.6 - * CVS Revision Version: $Revision: 1.1 $ + * Release Version: 1.0.7.1 + * CVS Revision Version: $Revision: 1.2 $ * Date Started: 2004/08/13 - * Last Modified: $Date: 2005/06/02 04:57:18 $ + * Last Modified: $Date: 2005/07/26 05:23:30 $ * * ASP language file for GeSHi. * diff --git a/inc/geshi/bash.php b/inc/geshi/bash.php index 3cfa9855913b96a469c4d352295fa3a1779f0b15..fad24f0da67349e3eab3e3e5ea6142f9b74583ae 100644 --- a/inc/geshi/bash.php +++ b/inc/geshi/bash.php @@ -4,10 +4,10 @@ * -------- * Author: Andreas Gohr (andi@splitbrain.org) * Copyright: (c) 2004 Andreas Gohr, Nigel McNie (http://qbnz.com/highlighter) - * Release Version: 1.0.6 - * CVS Revision Version: $Revision: 1.1 $ + * Release Version: 1.0.7.1 + * CVS Revision Version: $Revision: 1.2 $ * Date Started: 2004/08/20 - * Last Modified: $Date: 2005/06/02 04:57:18 $ + * Last Modified: $Date: 2005/07/26 05:23:30 $ * * BASH language file for GeSHi. * diff --git a/inc/geshi/c.php b/inc/geshi/c.php index d2fb41e35f529eb74ad4772a154ec9cd11eab359..ebdaed9da7b6f8976c781b957beb3042c7c291b7 100644 --- a/inc/geshi/c.php +++ b/inc/geshi/c.php @@ -6,10 +6,10 @@ * Contributors: * - Jack Lloyd (lloyd@randombit.net) * Copyright: (c) 2004 Nigel McNie (http://qbnz.com/highlighter/) - * Release Version: 1.0.6 - * CVS Revision Version: $Revision: 1.1 $ + * Release Version: 1.0.7.1 + * CVS Revision Version: $Revision: 1.2 $ * Date Started: 2004/06/04 - * Last Modified: $Date: 2005/06/02 04:57:18 $ + * Last Modified: $Date: 2005/07/26 05:23:30 $ * * C language file for GeSHi. * diff --git a/inc/geshi/c_mac.php b/inc/geshi/c_mac.php index d65cb9e70fb9da7f7074c040a0f1e29ec7e0473e..b020c74f5cd3430e91ac7cf05059002c9c20d03c 100644 --- a/inc/geshi/c_mac.php +++ b/inc/geshi/c_mac.php @@ -4,10 +4,10 @@ * --------- * Author: M. Uli Kusterer (witness.of.teachtext@gmx.net) * Copyright: (c) 2004 M. Uli Kusterer, Nigel McNie (http://qbnz.com/highlighter/) - * Release Version: 1.0.6 - * CVS Revision Version: $Revision: 1.1 $ + * Release Version: 1.0.7.1 + * CVS Revision Version: $Revision: 1.2 $ * Date Started: 2004/06/04 - * Last Modified: $Date: 2005/06/02 04:57:18 $ + * Last Modified: $Date: 2005/07/26 05:23:30 $ * * C for Macs language file for GeSHi. * diff --git a/inc/geshi/caddcl.php b/inc/geshi/caddcl.php index 9eb542db5d9b799096c8a9f2c8181b44f7ebe4ca..d942d9e5e7c1f97c5cb434ab35bfa9bd3dabc082 100644 --- a/inc/geshi/caddcl.php +++ b/inc/geshi/caddcl.php @@ -4,10 +4,10 @@ * ---------- * Author: Roberto Rossi (rsoftware@altervista.org) * Copyright: (c) 2004 Roberto Rossi (http://rsoftware.altervista.org), Nigel McNie (http://qbnz.com/highlighter) - * Release Version: 1.0.6 - * CVS Revision Version: $Revision: 1.1 $ + * Release Version: 1.0.7.1 + * CVS Revision Version: $Revision: 1.2 $ * Date Started: 2004/08/30 - * Last Modified: $Date: 2005/06/02 04:57:18 $ + * Last Modified: $Date: 2005/07/26 05:23:30 $ * * CAD DCL (Dialog Control Language) file for GeSHi. * diff --git a/inc/geshi/cadlisp.php b/inc/geshi/cadlisp.php index 16b56c06703b41afff079939ca2258caaa1528a5..c432c7f295c196538c093b13e3c83336b04a02cc 100644 --- a/inc/geshi/cadlisp.php +++ b/inc/geshi/cadlisp.php @@ -4,10 +4,10 @@ * ----------- * Author: Roberto Rossi (rsoftware@altervista.org) * Copyright: (c) 2004 Roberto Rossi (http://rsoftware.altervista.org), Nigel McNie (http://qbnz.com/blog) - * Release Version: 1.0.6 - * CVS Revision Version: $Revision: 1.1 $ + * Release Version: 1.0.7.1 + * CVS Revision Version: $Revision: 1.2 $ * Date Started: 2004/08/30 - * Last Modified: $Date: 2005/06/02 04:57:18 $ + * Last Modified: $Date: 2005/07/26 05:23:30 $ * * AutoCAD/IntelliCAD Lisp language file for GeSHi. * diff --git a/inc/geshi/cpp.php b/inc/geshi/cpp.php index 0e2d10ed26bd2cffcd5d3731697f2cb945e8ea24..9c85ad0cd00b864a739a8e2318ec20a69604ad99 100644 --- a/inc/geshi/cpp.php +++ b/inc/geshi/cpp.php @@ -7,10 +7,10 @@ * - M. Uli Kusterer (witness.of.teachtext@gmx.net) * - Jack Lloyd (lloyd@randombit.net) * Copyright: (c) 2004 Dennis Bayer, Nigel McNie (http://qbnz.com/highlighter) - * Release Version: 1.0.6 - * CVS Revision Version: $Revision: 1.2 $ + * Release Version: 1.0.7.1 + * CVS Revision Version: $Revision: 1.3 $ * Date Started: 2004/09/27 - * Last Modified: $Date: 2005/06/13 22:27:06 $ + * Last Modified: $Date: 2005/07/26 05:23:30 $ * * C++ language file for GeSHi. * diff --git a/inc/geshi/csharp.php b/inc/geshi/csharp.php index 981f04488159d622ebe2016ff489545c57333b7d..2d3b296813de7669d752e7aa99fa870c5d93d4ad 100644 --- a/inc/geshi/csharp.php +++ b/inc/geshi/csharp.php @@ -4,10 +4,10 @@ * ---------- * Author: Alan Juden (alan@judenware.org) * Copyright: (c) 2004 Alan Juden, Nigel McNie (http://qbnz.com/highlighter/) - * Release Version: 1.0.6 - * CVS Revision Version: $Revision: 1.1 $ + * Release Version: 1.0.7.1 + * CVS Revision Version: $Revision: 1.2 $ * Date Started: 2004/06/04 - * Last Modified: $Date: 2005/06/02 04:57:18 $ + * Last Modified: $Date: 2005/07/26 05:23:30 $ * * C# language file for GeSHi. * diff --git a/inc/geshi/css.php b/inc/geshi/css.php index 03f6c140918cd9889c871afee6cfa75676c39e68..a06e47af863b8b112c1d9d6782de7cad312485aa 100644 --- a/inc/geshi/css.php +++ b/inc/geshi/css.php @@ -4,10 +4,10 @@ * ------- * Author: Nigel McNie (oracle.shinoda@gmail.com) * Copyright: (c) 2004 Nigel McNie (http://qbnz.com/highlighter/) - * Release Version: 1.0.6 - * CVS Revision Version: $Revision: 1.2 $ + * Release Version: 1.0.7.1 + * CVS Revision Version: $Revision: 1.4 $ * Date Started: 2004/06/18 - * Last Modified: $Date: 2005/06/13 22:27:48 $ + * Last Modified: $Date: 2005/07/26 05:23:30 $ * * CSS language file for GeSHi. * @@ -72,7 +72,7 @@ $language_data = array ( 'cue-after', 'cue-before', 'cue', 'cursor', 'direction', 'display', 'elevation', 'empty-cells', 'float', 'font-family', 'font-size', 'font-size-adjust', 'font-stretch', 'font-style', 'font-variant', - 'font-weight', 'font', 'height', 'left', 'letter-spacing', 'line-height', + 'font-weight', 'font', 'height', 'letter-spacing', 'line-height', 'list-style', 'list-style-image', 'list-style-position', 'list-style-type', 'margin-bottom', 'margin-left', 'margin-right', 'margin-top', 'margin', 'marker-offset', 'marks', 'max-height', 'max-width', 'min-height', @@ -85,7 +85,7 @@ $language_data = array ( 'speak', 'speech-rate', 'stress', 'table-layout', 'text-align', 'text-decoration', 'text-indent', 'text-shadow', 'text-transform', 'top', 'unicode-bidi', 'vertical-align', 'visibility', 'voice-family', 'volume', 'white-space', 'widows', - 'width', 'word-spacing', 'z-index', 'bottom' + 'width', 'word-spacing', 'z-index', 'bottom', 'left' ), 2 => array( 'above', 'absolute', 'always', 'armenian', 'aural', 'auto', 'avoid', diff --git a/inc/geshi/d.php b/inc/geshi/d.php index d69515531158e342d075bc5d357b27851d2d2733..bad539efb991bd7566bb9187b52f0f9d6ae289a6 100644 --- a/inc/geshi/d.php +++ b/inc/geshi/d.php @@ -4,10 +4,10 @@ * ----- * Author: Thomas Kuehne (thomas@kuehne.cn) * Copyright: (c) 2005 Thomas Kuehne (http://thomas.kuehne.cn/) - * Release Version: 1.0.0 - * CVS Revision Version: $Revision: 1.1 $ + * Release Version: 1.0.7.1 + * CVS Revision Version: $Revision: 1.2 $ * Date Started: 2005/04/22 - * Last Modified: $Date: 2005/06/15 12:06:28 $ + * Last Modified: $Date: 2005/07/26 05:23:30 $ * * D language file for GeSHi. * diff --git a/inc/geshi/delphi.php b/inc/geshi/delphi.php index 13b7deb4cd34dae85b80c155623db1eb4ebcdcee..5a31e328d99f07773cb8f145212d8d1badb0665f 100644 --- a/inc/geshi/delphi.php +++ b/inc/geshi/delphi.php @@ -4,10 +4,10 @@ * ---------- * Author: Járja Norbert (jnorbi@vipmail.hu) * Copyright: (c) 2004 Járja Norbert, Nigel McNie (http://qbnz.com/highlighter) - * Release Version: 1.0.6 - * CVS Revision Version: $Revision: 1.1 $ + * Release Version: 1.0.7.1 + * CVS Revision Version: $Revision: 1.2 $ * Date Started: 2004/07/26 - * Last Modified: $Date: 2005/06/02 04:57:18 $ + * Last Modified: $Date: 2005/07/26 05:23:30 $ * * Delphi (Object Pascal) language file for GeSHi. * diff --git a/inc/geshi/diff.php b/inc/geshi/diff.php index 47ccab677d6f7e8bd509c715cc0658a27e155ef4..eacd4d5e093801f190a77a8b164b7520028aa325 100644 --- a/inc/geshi/diff.php +++ b/inc/geshi/diff.php @@ -4,10 +4,10 @@ * -------- * Author: Conny Brunnkvist (conny@fuchsia.se) * Copyright: (c) 2004 Fuchsia Open Source Solutions (http://www.fuchsia.se/) - * Release Version: 1.0.0 - * CVS Revision Version: $Revision: 1.1 $ + * Release Version: 1.0.7.1 + * CVS Revision Version: $Revision: 1.2 $ * Date Started: 2004/12/29 - * Last Modified: $Date: 2005/06/14 13:02:34 $ + * Last Modified: $Date: 2005/07/26 05:23:30 $ * * Diff-output language file for GeSHi. * diff --git a/inc/geshi/div.php b/inc/geshi/div.php new file mode 100644 index 0000000000000000000000000000000000000000..4c8426e02d6306ca6f145815ff4760579fdbf0b6 --- /dev/null +++ b/inc/geshi/div.php @@ -0,0 +1,128 @@ +<?php +/************************************************************************************* + * div.php + * --------------------------------- + * Author: Gabriel Lorenzo (ermakina@gmail.com) + * Copyright: (c) 2005 Gabriel Lorenzo (http://ermakina.gazpachito.net) + * Release Version: 1.0.7.1 + * CVS Revision Version: $Revision: 1.2 $ + * Date Started: 2005/06/19 + * Last Modified: $Date: 2005/07/26 05:23:30 $ + * + * DIV language file for GeSHi. + * + * CHANGES + * ------- + * 2005/06/22 (1.0.0) + * - First Release, includes "2nd gen" ELSEIF statement + * + * TODO (updated 2005/06/22) + * ------------------------- + * - I'm pretty satisfied with this, so nothing for now... :P + * + ************************************************************************************* + * + * This file is part of GeSHi. + * + * GeSHi is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * GeSHi is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with GeSHi; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + * + ************************************************************************************/ + +$language_data = array ( + 'LANG_NAME' => 'DIV', + 'COMMENT_SINGLE' => array(1 => '//'), + 'COMMENT_MULTI' => array('/*' => '*/'), + 'CASE_KEYWORDS' => GESHI_CAPS_UPPER, + 'QUOTEMARKS' => array("'", '"'), + 'ESCAPE_CHAR' => '', + 'KEYWORDS' => array( + 1 => array( + 'while','until','to','switch','step','return','repeat','loop','if','from','frame','for','end','elseif', + 'else','default','debug','continue','clone','case','break','begin' + ), + 2 => array( + 'xor','whoami','type','sizeof','pointer','or','offset','not','neg','mod','id','dup','and','_ne','_lt', + '_le','_gt','_ge','_eq' + ), + 3 => array( + 'setup_program','program','process','private','local','import','global','function','const', + 'compiler_options' + ), + 4 => array( + 'word','struct','string','int','byte' + ), + ), + 'SYMBOLS' => array( + '(',')','[',']','=','+','-','*','/','!','%','^','&',':',';',',','<','>' + ), + 'CASE_SENSITIVE' => array( + GESHI_COMMENTS => false, + 1 => false, + 2 => false, + 3 => false, + 4 => false, + ), + 'STYLES' => array( + 'KEYWORDS' => array( + 1 => 'color: #0040b1;', + 2 => 'color: #000000;', + 3 => 'color: #000066; font-weight: bold;', + 4 => 'color: #993333;' + ), + 'COMMENTS' => array( + 1 => 'color: #808080; font-style: italic;', + 'MULTI' => 'color: #808080; font-style: italic;' + ), + 'ESCAPE_CHAR' => array( + 0 => '' + ), + 'BRACKETS' => array( + 0 => 'color: #44aa44;' + ), + 'STRINGS' => array( + 0 => 'color: #ff0000;' + ), + 'NUMBERS' => array( + 0 => 'color: #cc66cc;' + ), + 'METHODS' => array( + 0 => 'color: #202020;', + ), + 'SYMBOLS' => array( + 0 => 'color: #44aa44;' + ), + 'REGEXPS' => array( + ), + 'SCRIPT' => array( + ) + ), + 'URLS' => array( + 1 => '', + 2 => '', + 3 => '', + 4 => '' + ), + 'OOLANG' => false, + 'OBJECT_SPLITTER' => '', + 'REGEXPS' => array( + ), + 'STRICT_MODE_APPLIES' => GESHI_NEVER, + 'SCRIPT_DELIMITERS' => array( + ), + 'HIGHLIGHT_STRICT_BLOCK' => array( + ) +); + +?> diff --git a/inc/geshi/eiffel.php b/inc/geshi/eiffel.php new file mode 100644 index 0000000000000000000000000000000000000000..d28aadceef59b0d4a18962c9dd2d4568a2f3d8d7 --- /dev/null +++ b/inc/geshi/eiffel.php @@ -0,0 +1,397 @@ +<?php +/************************************************************************************* + * eiffel.php + * ---------- + * Author: Zoran Simic (zsimic@axarosenberg.com) + * Copyright: (c) 2005 Zoran Simic + * Release Version: 1.0.7.1 + * CVS Revision Version: $Revision: 1.2 $ + * Date Started: 2005/06/30 + * Last Modified: $Date: 2005/07/26 05:23:30 $ + * + * Eiffel language file for GeSHi. + * + * CHANGES + * ------- + * 2005/06/30 (1.0.7) + * - Initial release + * + * TODO (updated 2005/06/30) + * ------------------------- + * + ************************************************************************************* + * + * This file is part of GeSHi. + * + * GeSHi is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * GeSHi is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with GeSHi; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + * + ************************************************************************************/ + + $language_data = array ( + 'LANG_NAME' => 'Eiffel', + 'COMMENT_SINGLE' => array(1 => '--'), + 'COMMENT_MULTI' => array(), + 'CASE_KEYWORDS' => GESHI_CAPS_NO_CHANGE, + 'QUOTEMARKS' => array("'", '"'), + 'ESCAPE_CHAR' => '%', + 'KEYWORDS' => array( + 1 => array( + 'separate', + 'invariant', + 'inherit', + 'indexing', + 'feature', + 'expanded', + 'deferred', + 'class' + ), + 2 => array( + 'xor', + 'when', + 'variant', + 'until', + 'unique', + 'undefine', + 'then', + 'strip', + 'select', + 'retry', + 'rescue', + 'require', + 'rename', + 'reference', + 'redefine', + 'prefix', + 'or', + 'once', + 'old', + 'obsolete', + 'not', + 'loop', + 'local', + 'like', + 'is', + 'inspect', + 'infix', + 'include', + 'implies', + 'if', + 'frozen', + 'from', + 'external', + 'export', + 'ensure', + 'end', + 'elseif', + 'else', + 'do', + 'creation', + 'create', + 'check', + 'as', + 'and', + 'alias', + 'agent' + ), + 3 => array( + 'Void', + 'True', + 'Result', + 'Precursor', + 'False', + 'Current' + ), + 4 => array( + 'UNIX_SIGNALS', + 'UNIX_FILE_INFO', + 'UNBOUNDED', + 'TWO_WAY_TREE_CURSOR', + 'TWO_WAY_TREE', + 'TWO_WAY_SORTED_SET', + 'TWO_WAY_LIST', + 'TWO_WAY_CURSOR_TREE', + 'TWO_WAY_CIRCULAR', + 'TWO_WAY_CHAIN_ITERATOR', + 'TUPLE', + 'TREE', + 'TRAVERSABLE', + 'TO_SPECIAL', + 'THREAD_CONTROL', + 'THREAD_ATTRIBUTES', + 'THREAD', + 'TABLE', + 'SUBSET', + 'STRING_HANDLER', + 'STRING', + 'STREAM', + 'STORABLE', + 'STD_FILES', + 'STACK', + 'SPECIAL', + 'SORTED_TWO_WAY_LIST', + 'SORTED_STRUCT', + 'SORTED_LIST', + 'SINGLE_MATH', + 'SET', + 'SEQUENCE', + 'SEQ_STRING', + 'SEMAPHORE', + 'ROUTINE', + 'RESIZABLE', + 'RECURSIVE_TREE_CURSOR', + 'RECURSIVE_CURSOR_TREE', + 'REAL_REF', + 'REAL', + 'RAW_FILE', + 'RANDOM', + 'QUEUE', + 'PROXY', + 'PROFILING_SETTING', + 'PROCEDURE', + 'PRIORITY_QUEUE', + 'PRIMES', + 'PRECOMP', + 'POINTER_REF', + 'POINTER', + 'PLATFORM', + 'PLAIN_TEXT_FILE', + 'PATH_NAME', + 'PART_SORTED_TWO_WAY_LIST', + 'PART_SORTED_SET', + 'PART_SORTED_LIST', + 'PART_COMPARABLE', + 'OPERATING_ENVIRONMENT', + 'ONCE_CONTROL', + 'OBJECT_OWNER', + 'OBJECT_CONTROL', + 'NUMERIC', + 'NONE', + 'MUTEX', + 'MULTI_ARRAY_LIST', + 'MULTAR_LIST_CURSOR', + 'MEMORY', + 'MEM_INFO', + 'MEM_CONST', + 'MATH_CONST', + 'LIST', + 'LINKED_TREE_CURSOR', + 'LINKED_TREE', + 'LINKED_STACK', + 'LINKED_SET', + 'LINKED_QUEUE', + 'LINKED_PRIORITY_QUEUE', + 'LINKED_LIST_CURSOR', + 'LINKED_LIST', + 'LINKED_CURSOR_TREE', + 'LINKED_CIRCULAR', + 'LINKABLE', + 'LINEAR_ITERATOR', + 'LINEAR', + 'ITERATOR', + 'IO_MEDIUM', + 'INTERNAL', + 'INTEGER_REF', + 'INTEGER_INTERVAL', + 'INTEGER', + 'INFINITE', + 'INDEXABLE', + 'IDENTIFIED_CONTROLLER', + 'IDENTIFIED', + 'HIERARCHICAL', + 'HEAP_PRIORITY_QUEUE', + 'HASHABLE', + 'HASH_TABLE_CURSOR', + 'HASH_TABLE', + 'GENERAL', + 'GC_INFO', + 'FUNCTION', + 'FORMAT_INTEGER', + 'FORMAT_DOUBLE', + 'FIXED_TREE', + 'FIXED_LIST', + 'FIXED', + 'FINITE', + 'FILE_NAME', + 'FILE', + 'FIBONACCI', + 'EXECUTION_ENVIRONMENT', + 'EXCEPTIONS', + 'EXCEP_CONST', + 'DYNAMIC_TREE', + 'DYNAMIC_LIST', + 'DYNAMIC_CIRCULAR', + 'DYNAMIC_CHAIN', + 'DOUBLE_REF', + 'DOUBLE_MATH', + 'DOUBLE', + 'DISPENSER', + 'DIRECTORY_NAME', + 'DIRECTORY', + 'DECLARATOR', + 'DEBUG_OUTPUT', + 'CURSOR_TREE_ITERATOR', + 'CURSOR_TREE', + 'CURSOR_STRUCTURE', + 'CURSOR', + 'COUNTABLE_SEQUENCE', + 'COUNTABLE', + 'CONTAINER', + 'CONSOLE', + 'CONDITION_VARIABLE', + 'COMPARABLE_STRUCT', + 'COMPARABLE_SET', + 'COMPARABLE', + 'COMPACT_TREE_CURSOR', + 'COMPACT_CURSOR_TREE', + 'COLLECTION', + 'CIRCULAR_CURSOR', + 'CIRCULAR', + 'CHARACTER_REF', + 'CHARACTER', + 'CHAIN', + 'CELL', + 'BOX', + 'BOUNDED_STACK', + 'BOUNDED_QUEUE', + 'BOUNDED', + 'BOOLEAN_REF', + 'BOOLEAN', + 'BOOL_STRING', + 'BIT_REF', + 'BINARY_TREE', + 'BINARY_SEARCH_TREE_SET', + 'BINARY_SEARCH_TREE', + 'BILINEAR', + 'BI_LINKABLE', + 'BASIC_ROUTINES', + 'BAG', + 'ASCII', + 'ARRAYED_TREE', + 'ARRAYED_STACK', + 'ARRAYED_QUEUE', + 'ARRAYED_LIST_CURSOR', + 'ARRAYED_LIST', + 'ARRAYED_CIRCULAR', + 'ARRAY2', + 'ARRAY', + 'ARGUMENTS', + 'ANY', + 'ACTIVE' + ), + 5 => array( + 'yes', + 'visible', + 'trace', + 'system', + 'root', + 'profile', + 'override_cluster', + 'object', + 'no', + 'multithreaded', + 'msil_generation_type', + 'line_generation', + 'library', + 'inlining_size', + 'inlining', + 'include_path', + 'il_verifiable', + 'exclude', + 'exception_trace', + 'dynamic_runtime', + 'dotnet_naming_convention', + 'disabled_debug', + 'default', + 'debug', + 'dead_code_removal', + 'console_application', + 'cluster', + 'cls_compliant', + 'check_vape', + 'assertion', + 'array_optimization', + 'all', + 'address_expression' + ), + ), + 'SYMBOLS' => array( + '+', '-', '*', '?', '=', '/', '%', '&', '>', '<', '^', '!', '|', ':', + '(', ')', '{', '}', '[', ']', '#' + ), + 'CASE_SENSITIVE' => array( + GESHI_COMMENTS => true, + 1 => false, + 2 => false, + 3 => false, + 4 => true, + 5 => false, + ), + 'STYLES' => array( + 'KEYWORDS' => array( + 1 => 'color: #0600FF; background-color: #FFF0E0; font-weight: bold;', + 2 => 'color: #0600FF; font-weight: bold;', + 3 => 'color: #800080;', + 4 => 'color: #800000', + 5 => 'color: #603000;' + ), + 'COMMENTS' => array( + 1 => 'color: #008000; font-style: italic;', + 'MULTI' => '' + ), + 'ESCAPE_CHAR' => array( + 0 => 'color: #005070; font-weight: bold;' + ), + 'BRACKETS' => array( + 0 => 'color: #FF0000;' + ), + 'STRINGS' => array( + 0 => 'color: #0080A0;' + ), + 'NUMBERS' => array( + 0 => 'color: #FF0000;' + ), + 'METHODS' => array( + 1 => 'color: #000060;', + 2 => 'color: #000050;' + ), + 'SYMBOLS' => array( + 0 => 'color: #600000;' + ), + 'REGEXPS' => array( + ), + 'SCRIPT' => array( + ) + ), + 'URLS' => array( + 1 => '', + 2 => '', + 3 => '', + 4 => 'http://www.google.com/search?q=site%3Ahttp%3A%2F%2Fdocs.eiffel.com%2Feiffelstudio%2Flibraries+{FNAME}&btnI=I%27m+Feeling+Lucky' + ), + 'OOLANG' => true, + 'OBJECT_SPLITTERS' => array( + 1 => '.' + ), + 'REGEXPS' => array( + ), + 'STRICT_MODE_APPLIES' => GESHI_NEVER, + 'SCRIPT_DELIMITERS' => array( + ), + 'HIGHLIGHT_STRICT_BLOCK' => array( + ) +); + +?> + diff --git a/inc/geshi/gml.php b/inc/geshi/gml.php new file mode 100644 index 0000000000000000000000000000000000000000..86e93def1c9d6e87ea01c2c4e6d663c69751bd83 --- /dev/null +++ b/inc/geshi/gml.php @@ -0,0 +1,288 @@ +<?php +/************************************************************************************* + * gml.php + * -------- + * Author: José Jorge Enríquez Rodríguez (aka Geo) (josejorge@gmail.com) + * Copyright: (c) 2004 José Jorge Enríquez Rodríguez (http://www.zonamakers.com) + * Release Version: 1.0.7.1 + * CVS Revision Version: $Revision: 1.2 $ + * Date Started: 2005/06/21 + * Last Modified: $Date: 2005/07/26 05:23:30 $ + * + * GML language file for GeSHi. + * + * GML (Game Maker Language) is a script language that is built-in into Game Maker, + * a game creation program, more info about Game Maker can be found at + * http://www.gamemaker.nl/ + * All GML keywords were extracted from the Game Maker HTML Help file using a PHP + * script (I love PHP for saving me that bunch of work :P!). I think all GML + * functions have been indexed here, but I'm not sure about it, so please let me + * know of any issue you may find. + * + * CHANGES + * ------- + * 2005/06/26 (1.0.0) + * - First Release + * + * TODO (updated 2005/06/26) + * ------------------------- + * - Include GML constants and variables I may have missed. + * - Check for repeated entries (there are some at the end of KEYWORDS=>2 and may + * be more). + * - Compare to Game Maker's built-in editor syntax highlighting to find out + * whether div and mod are operators or GML language keywords. + * - Edit this file lines to a maximum width of 100 characters (as stated in + * the GeSHi docs). + * + ************************************************************************************* + * + * This file is part of GeSHi. + * + * GeSHi is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * GeSHi is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with GeSHi; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + * + ************************************************************************************/ + +$language_data = array ( + 'LANG_NAME' => 'GML', + 'COMMENT_SINGLE' => array(1 => '//'), + 'COMMENT_MULTI' => array('/*' => '*/'), + 'CASE_KEYWORDS' => GESHI_CAPS_LOWER, + 'QUOTEMARKS' => array("'"), + 'ESCAPE_CHAR' => '\\', + 'KEYWORDS' => array( + // language keywords + 1 => array( + 'break', 'continue', 'do', 'until', 'if', 'else', + 'exit', 'for', 'for', 'repeat', 'return', 'switch', + 'case', 'default', 'var', 'while', 'with' + ), + // modifiers and built-in variables + 2 => array( + 'self', 'other', 'all', 'noone', 'global', + 'x','y','xprevious','yprevious','xstart','ystart','hspeed','vspeed','direction','speed','friction','gravity','gravity_direction', + 'path_index','path_position','path_positionprevious','path_speed','path_orientation','path_scale','path_endaction', + 'object_index','id','mask_index','solid','persistent','instance_count','instance_id', + 'room_speed','fps','current_time','current_year','current_month','current_day','current_weekday','current_hour','current_minute','current_second','alarm','timeline_index','timeline_position','timeline_speed', + 'room','room_first','room_last','room_width','room_height','room_caption','room_persistent', + 'score','lives','health','show_score','show_lives','show_health','caption_score','caption_lives','caption_health', + 'event_type','event_number','event_object','event_action', + 'error_occurred','error_last', + 'keyboard_lastkey','keyboard_key','keyboard_lastchar','keyboard_string', + 'mouse_x','mouse_y','mouse_button','mouse_lastbutton', + 'visible','sprite_index','sprite_width','sprite_height','sprite_xoffset','sprite_yoffset','image_number','image_index','image_speed','depth','image_xscale','image_yscale','image_angle','image_alpha','image_blend','bbox_left','bbox_right','bbox_top','bbox_bottom', + 'background_color','background_showcolor','background_visible','background_foreground','background_index','background_x','background_y','background_width','background_height','background_htiled','background_vtiled','background_xscale','background_yscale','background_hspeed','background_vspeed','background_blend','background_alpha', + 'background','left, top, width, height','x,y','depth','visible','xscale, yscale','blend','alpha', + 'view_enabled','view_current','view_visible','view_yview','view_wview','view_hview','view_xport','view_yport','view_wport','view_hport','view_angle','view_hborder','view_vborder','view_hspeed','view_vspeed','view_object', + 'transition_kind', + 'game_id','working_directory','temp_directory', + 'secure_mode', + 'xmin, xmax, ymin, ymax','shape','distribution','particle type','number', + 'x,y','force','dist','kind','additive', + 'xmin, xmax, ymin, ymax','shape', + 'xmin, xmax, ymin, ymax','kind','friction', + 'xmin, xmax, ymin, ymax','shape','parttype1','parttype2','kind', + ), + // functions + 3 => array( + 'random','choose','abs','sign','round','floor','ceil','frac','sqrt','sqr','power','exp','ln','log2','log10','logn','sin','cos','tan','arcsin','arccos','arctan','arctan2','degtorad','radtodeg','min','max','mean','median','point_distance','point_direction','lengthdir_x','lengthdir_y','is_real','is_string', + 'chr','ord','real','string','string_format','string_length','string_pos','string_copy','string_char_at','string_delete','string_insert','string_replace','string_replace_all','string_count','string_lower','string_upper','string_repeat','string_letters','string_digits','string_lettersdigits','clipboard_has_text','clipboard_get_text','clipboard_set_text', + 'date_current_datetime','date_current_date','date_current_time','date_create_datetime','date_create_date','date_create_time','date_valid_datetime','date_valid_date','date_valid_time','date_inc_year','date_inc_month','date_inc_week','date_inc_day','date_inc_hour','date_inc_minute','date_inc_second','date_get_year','date_get_month','date_get_week','date_get_day','date_get_hour', + 'date_get_minute','date_get_second','date_get_weekday','date_get_day_of_year','date_get_hour_of_year','date_get_minute_of_year','date_get_second_of_year','date_year_span','date_month_span','date_week_span','date_day_span','date_hour_span','date_minute_span','date_second_span','date_compare_datetime','date_compare_date','date_compare_time','date_date_of','date_time_of','date_datetime_string','date_date_string','date_time_string','date_days_in_month','date_days_in_year','date_leap_year','date_is_today', + 'motion_set','motion_add','place_free','place_empty','place_meeting','place_snapped','move_random','move_snap','move_wrap','move_towards_point','move_bounce_solid','move_bounce_all','move_contact_solid','move_contact_all','move_outside_solid','move_outside_all','distance_to_point','distance_to_object','position_empty','position_meeting', + 'path_start','path_end', + 'mp_linear_step','mp_linear_step_object','mp_potential_step','mp_potential_step_object','mp_potential_settings','mp_linear_path','mp_linear_path_object', + 'mp_potential_path','mp_potential_path_object','mp_grid_create','mp_grid_destroy','mp_grid_clear_all','mp_grid_clear_cell','mp_grid_clear_rectangle','mp_grid_add_cell','mp_grid_add_rectangle','mp_grid_add_instances','mp_grid_path','mp_grid_draw', + 'collision_point','collision_rectangle','collision_circle','collision_ellipse','collision_line', + 'instance_find','instance_exists','instance_number','instance_position','instance_nearest','instance_furthest','instance_place','instance_create','instance_copy','instance_destroy','instance_change','position_destroy','position_change', + 'instance_deactivate_all','instance_deactivate_object','instance_deactivate_region','instance_activate_all','instance_activate_object','instance_activate_region', + 'sleep', + 'room_goto','room_goto_previous','room_goto_next','room_restart','room_previous','room_next','game_end','game_restart','game_save','game_load', + 'event_perform', + 'event_perform_object','event_user','event_inherited', + 'show_debug_message','variable_global_exists','variable_local_exists','variable_global_get','variable_global_array_get','variable_global_array2_get','variable_local_get','variable_local_array_get','variable_local_array2_get','variable_global_set','variable_global_array_set','variable_global_array2_set','variable_local_set','variable_local_array_set','variable_local_array2_set','set_program_priority', + 'keyboard_set_map','keyboard_get_map','keyboard_unset_map','keyboard_check','keyboard_check_pressed','keyboard_check_released','keyboard_check_direct','keyboard_get_numlock','keyboard_set_numlock','keyboard_key_press','keyboard_key_release', + 'keyboard_clear','io_clear','io_handle','keyboard_wait', + 'mouse_check_button','mouse_check_button_pressed','mouse_check_button_released','mouse_clear','io_clear','io_handle','mouse_wait', + 'joystick_exists','joystick_name','joystick_axes','joystick_buttons','joystick_has_pov','joystick_direction','joystick_check_button','joystick_xpos','joystick_ypos','joystick_zpos','joystick_rpos','joystick_upos','joystick_vpos','joystick_pov', + 'draw_sprite','draw_sprite_stretched','draw_sprite_tiled','draw_sprite_part','draw_background','draw_background_stretched','draw_background_tiled','draw_background_part','draw_sprite_ext','draw_sprite_stretched_ext','draw_sprite_tiled_ext','draw_sprite_part_ext','draw_sprite_general','draw_background_ext','draw_background_stretched_ext','draw_background_tiled_ext','draw_background_part_ext','draw_background_general', + 'draw_clear','draw_clear_alpha','draw_point','draw_line','draw_rectangle','draw_roundrect','draw_triangle','draw_circle','draw_ellipse','draw_arrow','draw_button','draw_path','draw_healthbar','draw_set_color','draw_set_alpha','draw_get_color','draw_get_alpha', + 'make_color_rgb','make_color_hsv','color_get_red','color_get_green','color_get_blue','color_get_hue','color_get_saturation','color_get_value','merge_color','draw_getpixel','screen_save','screen_save_part', + 'draw_set_font','draw_set_halign','draw_set_valign','draw_text','draw_text_ext','string_width','string_height','string_width_ext','string_height_ext','draw_text_transformed','draw_text_ext_transformed','draw_text_color','draw_text_ext_color','draw_text_transformed_color','draw_text_ext_transformed_color', + 'draw_point_color','draw_line_color','draw_rectangle_color','draw_roundrect_color','draw_triangle_color','draw_circle_color','draw_ellipse_color','draw_primitive_begin','draw_vertex','draw_vertex_color','draw_primitive_end','sprite_get_texture','background_get_texture','texture_preload','texture_set_priority', + 'texture_get_width','texture_get_height','draw_primitive_begin_texture','draw_vertex_texture','draw_vertex_texture_color','draw_primitive_end','texture_set_interpolation','texture_set_blending','texture_set_repeat','draw_set_blend_mode','draw_set_blend_mode_ext', + 'surface_create','surface_free','surface_exists','surface_get_width','surface_get_height','surface_get_texture','surface_set_target','surface_reset_target','surface_getpixel','surface_save','surface_save_part','draw_surface','draw_surface_stretched','draw_surface_tiled','draw_surface_part','draw_surface_ext','draw_surface_stretched_ext','draw_surface_tiled_ext','draw_surface_part_ext','draw_surface_general','surface_copy','surface_copy_part', + 'tile_add','tile_delete','tile_exists','tile_get_x','tile_get_y','tile_get_left','tile_get_top','tile_get_width','tile_get_height','tile_get_depth','tile_get_visible','tile_get_xscale','tile_get_yscale','tile_get_background','tile_get_blend','tile_get_alpha','tile_set_position','tile_set_region','tile_set_background','tile_set_visible','tile_set_depth','tile_set_scale','tile_set_blend','tile_set_alpha','tile_layer_hide','tile_layer_show','tile_layer_delete','tile_layer_shift','tile_layer_find','tile_layer_delete_at','tile_layer_depth', + 'display_get_width','display_get_height','display_get_colordepth','display_get_frequency','display_set_size','display_set_colordepth','display_set_frequency','display_set_all','display_test_all','display_reset','display_mouse_get_x','display_mouse_get_y','display_mouse_set', + 'window_set_visible','window_get_visible','window_set_fullscreen','window_get_fullscreen','window_set_showborder','window_get_showborder','window_set_showicons','window_get_showicons','window_set_stayontop','window_get_stayontop','window_set_sizeable','window_get_sizeable','window_set_caption','window_get_caption','window_set_cursor', + 'window_get_cursor','window_set_color','window_get_color','window_set_region_scale','window_get_region_scale','window_set_position','window_set_size','window_set_rectangle','window_center','window_default','window_get_x','window_get_y','window_get_width','window_get_height','window_mouse_get_x','window_mouse_get_y','window_mouse_set', + 'window_set_region_size','window_get_region_width','window_get_region_height','window_view_mouse_get_x','window_view_mouse_get_y','window_view_mouse_set','window_views_mouse_get_x','window_views_mouse_get_y','window_views_mouse_set', + 'screen_redraw','screen_refresh','set_automatic_draw','set_synchronization','screen_wait_vsync', + 'sound_play','sound_loop','sound_stop','sound_stop_all','sound_isplaying','sound_volume','sound_global_volume','sound_fade','sound_pan','sound_background_tempo','sound_set_search_directory', + 'sound_effect_set','sound_effect_chorus','sound_effect_echo', + 'sound_effect_flanger','sound_effect_gargle','sound_effect_reverb','sound_effect_compressor','sound_effect_equalizer', + 'sound_3d_set_sound_position','sound_3d_set_sound_velocity','sound_3d_set_sound_distance','sound_3d_set_sound_cone', + 'cd_init','cd_present','cd_number','cd_playing','cd_paused','cd_track','cd_length','cd_track_length','cd_position','cd_track_position','cd_play','cd_stop','cd_pause','cd_resume','cd_set_position','cd_set_track_position','cd_open_door','cd_close_door','MCI_command', + 'show_text','show_image','show_video','show_info','load_info', + 'show_message','show_message_ext','show_question','get_integer','get_string','message_background','message_alpha','message_button','message_text_font','message_button_font','message_input_font','message_mouse_color','message_input_color','message_caption','message_position','message_size','show_menu','show_menu_pos','get_color','get_open_filename','get_save_filename','get_directory','get_directory_alt','show_error', + 'highscore_show','highscore_set_background','highscore_set_border','highscore_set_font','highscore_set_colors','highscore_set_strings','highscore_show_ext','highscore_clear','highscore_add','highscore_add_current','highscore_value','highscore_name','draw_highscore', + 'sprite_exists','sprite_get_name','sprite_get_number','sprite_get_width','sprite_get_height','sprite_get_transparent','sprite_get_smooth','sprite_get_preload','sprite_get_xoffset','sprite_get_yoffset','sprite_get_bbox_left','sprite_get_bbox_right','sprite_get_bbox_top','sprite_get_bbox_bottom','sprite_get_bbox_mode','sprite_get_precise', + 'sound_exists','sound_get_name','sound_get_kind','sound_get_preload','sound_discard','sound_restore', + 'background_exists','background_get_name','background_get_width','background_get_height','background_get_transparent','background_get_smooth','background_get_preload', + 'font_exists','font_get_name','font_get_fontname','font_get_bold','font_get_italic','font_get_first','font_get_last', + 'path_exists','path_get_name','path_get_length','path_get_kind','path_get_closed','path_get_precision','path_get_number','path_get_point_x','path_get_point_y','path_get_point_speed','path_get_x','path_get_y','path_get_speed', + 'script_exists','script_get_name','script_get_text', + 'timeline_exists','timeline_get_name', + 'object_exists','object_get_name','object_get_sprite','object_get_solid','object_get_visible','object_get_depth','object_get_persistent','object_get_mask','object_get_parent','object_is_ancestor', + 'room_exists','room_get_name', + 'sprite_set_offset','sprite_set_bbox_mode','sprite_set_bbox','sprite_set_precise','sprite_duplicate','sprite_assign','sprite_merge','sprite_add','sprite_replace','sprite_create_from_screen','sprite_add_from_screen','sprite_create_from_surface','sprite_add_from_surface','sprite_delete','sprite_set_alpha_from_sprite', + 'sound_add','sound_replace','sound_delete', + 'background_duplicate','background_assign','background_add','background_replace','background_create_color','background_create_gradient','background_create_from_screen','background_create_from_surface','background_delete','background_set_alpha_from_background', + 'font_add','font_add_sprite','font_replace_sprite','font_delete', + 'path_set_kind','path_set_closed','path_set_precision','path_add','path_delete','path_duplicate','path_assign','path_append','path_add_point','path_insert_point','path_change_point','path_delete_point','path_clear_points','path_reverse','path_mirror','path_flip','path_rotate','path_scale','path_shift', + 'execute_string','execute_file','script_execute', + 'timeline_add','timeline_delete','timeline_moment_add','timeline_moment_clear', + 'object_set_sprite','object_set_solid','object_set_visible','object_set_depth','object_set_persistent','object_set_mask','object_set_parent','object_add','object_delete','object_event_add','object_event_clear', + 'room_set_width','room_set_height','room_set_caption','room_set_persistent','room_set_code','room_set_background_color','room_set_background','room_set_view','room_set_view_enabled','room_add','room_duplicate','room_assign','room_instance_add','room_instance_clear','room_tile_add','room_tile_add_ext','room_tile_clear', + 'file_text_open_read','file_text_open_write','file_text_open_append','file_text_close','file_text_write_string','file_text_write_real','file_text_writeln','file_text_read_string','file_text_read_real','file_text_readln','file_text_eof','file_exists','file_delete','file_rename','file_copy','directory_exists','directory_create','file_find_first','file_find_next','file_find_close','file_attributes', + 'file_text_open_read','file_text_open_write','file_text_open_append','file_text_close','file_text_write_string','file_text_write_real','file_text_writeln','file_text_read_string','file_text_read_real','file_text_readln','file_text_eof','file_exists','file_delete','file_rename','file_copy','directory_exists','directory_create','file_find_first','file_find_next','file_find_close','file_attributes', + 'filename_name','filename_path','filename_dir','filename_drive','filename_ext','filename_change_ext','file_bin_open','file_bin_rewrite','file_bin_close','file_bin_size','file_bin_position','file_bin_seek','file_bin_write_byte','file_bin_read_byte','parameter_count','parameter_string','environment_get_variable', + 'registry_write_string','registry_write_real','registry_read_string','registry_read_real','registry_exists','registry_write_string_ext','registry_write_real_ext','registry_read_string_ext','registry_read_real_ext','registry_exists_ext','registry_set_root', + 'ini_open','ini_close','ini_read_string','ini_read_real','ini_write_string','ini_write_real','ini_key_exists','ini_section_exists','ini_key_delete','ini_section_delete', + 'execute_program','execute_shell', + 'ds_stack_create','ds_stack_destroy','ds_stack_clear','ds_stack_size','ds_stack_empty','ds_stack_push','ds_stack_pop','ds_stack_top', + 'ds_queue_create','ds_queue_destroy','ds_queue_clear','ds_queue_size','ds_queue_empty','ds_queue_enqueue','ds_queue_dequeue','ds_queue_head','ds_queue_tail', + 'ds_list_create','ds_list_destroy','ds_list_clear','ds_list_size','ds_list_empty','ds_list_add','ds_list_insert','ds_list_replace','ds_list_delete','ds_list_find_index','ds_list_find_value','ds_list_sort', + 'ds_map_create','ds_map_destroy','ds_map_clear','ds_map_size','ds_map_empty','ds_map_add','ds_map_replace','ds_map_delete','ds_map_exists','ds_map_find_value','ds_map_find_previous','ds_map_find_next','ds_map_find_first','ds_map_find_last', + 'ds_priority_create','ds_priority_destroy','ds_priority_clear','ds_priority_size','ds_priority_empty','ds_priority_add','ds_priority_change_priority','ds_priority_find_priority','ds_priority_delete_value','ds_priority_delete_min','ds_priority_find_min','ds_priority_delete_max','ds_priority_find_max', + 'ds_grid_create','ds_grid_destroy','ds_grid_resize','ds_grid_width','ds_grid_height','ds_grid_clear','ds_grid_set','ds_grid_add','ds_grid_multiply','ds_grid_set_region','ds_grid_add_region','ds_grid_multiply_region','ds_grid_set_disk','ds_grid_add_disk','ds_grid_multiply_disk','ds_grid_get','ds_grid_get_sum','ds_grid_get_max','ds_grid_get_min','ds_grid_get_mean','ds_grid_get_disk_sum','ds_grid_get_disk_min','ds_grid_get_disk_max','ds_grid_get_disk_mean','ds_grid_value_exists','ds_grid_value_x','ds_grid_value_y','ds_grid_value_disk_exists','ds_grid_value_disk_x','ds_grid_value_disk_y', + 'effect_create_below','effect_create_above','effect_clear', + 'part_type_create','part_type_destroy','part_type_exists','part_type_clear','part_type_shape','part_type_sprite','part_type_size','part_type_scale', + 'part_type_orientation','part_type_color1','part_type_color2','part_type_color3','part_type_color_mix','part_type_color_rgb','part_type_color_hsv', + 'part_type_alpha1','part_type_alpha2','part_type_alpha3','part_type_blend','part_type_life','part_type_step','part_type_death','part_type_speed','part_type_direction','part_type_gravity', + 'part_system_create','part_system_destroy','part_system_exists','part_system_clear','part_system_draw_order','part_system_depth','part_system_position','part_system_automatic_update','part_system_automatic_draw','part_system_update','part_system_drawit','part_particles_create','part_particles_create_color','part_particles_clear','part_particles_count', + 'part_emitter_create','part_emitter_destroy','part_emitter_destroy_all','part_emitter_exists','part_emitter_clear','part_emitter_region','part_emitter_burst','part_emitter_stream', + 'part_attractor_create','part_attractor_destroy','part_attractor_destroy_all','part_attractor_exists','part_attractor_clear','part_attractor_position','part_attractor_force', + 'part_destroyer_create','part_destroyer_destroy','part_destroyer_destroy_all','part_destroyer_exists','part_destroyer_clear','part_destroyer_region', + 'part_deflector_create','part_deflector_destroy','part_deflector_destroy_all','part_deflector_exists','part_deflector_clear','part_deflector_region','part_deflector_kind','part_deflector_friction', + 'part_changer_create','part_changer_destroy','part_changer_destroy_all','part_changer_exists','part_changer_clear','part_changer_region','part_changer_types','part_changer_kind', + 'mplay_init_ipx','mplay_init_tcpip','mplay_init_modem','mplay_init_serial','mplay_connect_status','mplay_end','mplay_ipaddress', + 'mplay_session_create','mplay_session_find','mplay_session_name','mplay_session_join','mplay_session_mode','mplay_session_status','mplay_session_end', + 'mplay_player_find','mplay_player_name','mplay_player_id', + 'mplay_data_write','mplay_data_read','mplay_data_mode', + 'mplay_message_send','mplay_message_send_guaranteed','mplay_message_receive','mplay_message_id','mplay_message_value','mplay_message_player','mplay_message_name','mplay_message_count','mplay_message_clear', + 'external_define', + 'external_call','external_free','execute_string','execute_file','window_handle', + 'd3d_start','d3d_end','d3d_set_hidden','d3d_set_perspective', + 'd3d_set_depth', + 'd3d_primitive_begin','d3d_vertex','d3d_vertex_color','d3d_primitive_end','d3d_primitive_begin_texture','d3d_vertex_texture','d3d_vertex_texture_color','d3d_set_culling', + 'd3d_draw_block','d3d_draw_cylinder','d3d_draw_cone','d3d_draw_ellipsoid','d3d_draw_wall','d3d_draw_floor', + 'd3d_set_projection','d3d_set_projection_ext','d3d_set_projection_ortho','d3d_set_projection_perspective', + 'd3d_transform_set_identity','d3d_transform_set_translation','d3d_transform_set_scaling','d3d_transform_set_rotation_x','d3d_transform_set_rotation_y','d3d_transform_set_rotation_z','d3d_transform_set_rotation_axis','d3d_transform_add_translation','d3d_transform_add_scaling','d3d_transform_add_rotation_x','d3d_transform_add_rotation_y','d3d_transform_add_rotation_z','d3d_transform_add_rotation_axis','d3d_transform_stack_clear','d3d_transform_stack_empty','d3d_transform_stack_push','d3d_transform_stack_pop','d3d_transform_stack_top','d3d_transform_stack_discard', + 'd3d_set_fog', + 'd3d_set_lighting','d3d_set_shading','d3d_light_define_direction','d3d_light_define_point','d3d_light_enable','d3d_vertex_normal','d3d_vertex_normal_color','d3d_vertex_normal_texture','d3d_vertex_normal_texture_color', + 'd3d_model_create','d3d_model_destroy','d3d_model_clear','d3d_model_save','d3d_model_load','d3d_model_draw','d3d_model_primitive_begin','d3d_model_vertex','d3d_model_vertex_color','d3d_model_vertex_texture','d3d_model_vertex_texture_color','d3d_model_vertex_normal','d3d_model_vertex_normal_color','d3d_model_vertex_normal_texture','d3d_model_vertex_normal_texture_color','d3d_model_primitive_end','d3d_model_block','d3d_model_cylinder','d3d_model_cone','d3d_model_ellipsoid','d3d_model_wall','d3d_model_floor' + ), + // constants + 4 => array( + 'true', 'false', 'pi', + 'ev_destroy','ev_step','ev_alarm','ev_keyboard','ev_mouse','ev_collision','ev_other','ev_draw','ev_keypress','ev_keyrelease','ev_left_button','ev_right_button','ev_middle_button','ev_no_button','ev_left_press','ev_right_press','ev_middle_press','ev_left_release','ev_right_release','ev_middle_release','ev_mouse_enter','ev_mouse_leave','ev_mouse_wheel_up','ev_mouse_wheel_down','ev_global_left_button','ev_global_right_button','ev_global_middle_button','ev_global_left_press','ev_global_right_press','ev_global_middle_press','ev_global_left_release','ev_global_right_release','ev_global_middle_release','ev_joystick1_left','ev_joystick1_right','ev_joystick1_up','ev_joystick1_down','ev_joystick1_button1','ev_joystick1_button2','ev_joystick1_button3','ev_joystick1_button4','ev_joystick1_button5','ev_joystick1_button6','ev_joystick1_button7','ev_joystick1_button8','ev_joystick2_left','ev_joystick2_right','ev_joystick2_up','ev_joystick2_down','ev_joystick2_button1','ev_joystick2_button2','ev_joystick2_button3','ev_joystick2_button4','ev_joystick2_button5','ev_joystick2_button6','ev_joystick2_button7','ev_joystick2_button8', + 'ev_outside','ev_boundary','ev_game_start','ev_game_end','ev_room_start','ev_room_end','ev_no_more_lives','ev_no_more_health','ev_animation_end','ev_end_of_path','ev_user0','ev_user1','ev_user2','ev_user3','ev_user4','ev_user5','ev_user6','ev_user7','ev_user8','ev_user9','ev_user10','ev_user11','ev_user12','ev_user13','ev_user14','ev_user15','ev_step_normal','ev_step_begin','ev_step_end', + 'vk_nokey','vk_anykey','vk_left','vk_right','vk_up','vk_down','vk_enter','vk_escape','vk_space','vk_shift','vk_control','vk_alt','vk_backspace','vk_tab','vk_home','vk_end','vk_delete','vk_insert','vk_pageup','vk_pagedown','vk_pause','vk_printscreen','vk_f1 ... vk_f12','vk_numpad0 ... vk_numpad9','vk_multiply','vk_divide','vk_add','vk_subtract','vk_decimal','vk_lshift','vk_lcontrol','vk_lalt','vk_rshift','vk_rcontrol','vk_ralt', + 'c_aqua','c_black','c_blue','c_dkgray','c_fuchsia','c_gray','c_green','c_lime','c_ltgray','c_maroon','c_navy','c_olive','c_purple','c_red','c_silver','c_teal','c_white','c_yellow', + 'fa_left', 'fa_center','fa_right','fa_top','fa_middle','fa_bottom', + 'pr_pointlist','pr_linelist','pr_linestrip','pr_trianglelist','pr_trianglestrip','pr_trianglefan', + 'cr_none','cr_arrow','cr_cross','cr_beam','cr_size_nesw','cr_size_ns','cr_size_nwse','cr_size_we','cr_uparrow','cr_hourglass','cr_drag','cr_nodrop','cr_hsplit','cr_vsplit','cr_multidrag','cr_sqlwait','cr_no','cr_appstart','cr_help','cr_handpoint','cr_size_all', + 'se_chorus','se_echo','se_flanger','se_gargle','se_reverb','se_compressor','se_equalizer', + 'fa_readonly','fa_hidden','fa_sysfile','fa_volumeid','fa_directory','fa_archive', + 'pt_shape_pixel','pt_shape_disk','pt_shape_square','pt_shape_line','pt_shape_star','pt_shape_circle','pt_shape_ring','pt_shape_sphere','pt_shape_flare','pt_shape_spark','pt_shape_explosion','pt_shape_cloud','pt_shape_smoke','pt_shape_snow', + 'ps_shape_rectangle','ps_shape_ellipse ','ps_shape_diamond','ps_shape_line', + 'ps_distr_linear','ps_distr_gaussian','ps_force_constant','ps_force_linear','ps_force_quadratic', + 'ps_deflect_horizontal', 'ps_deflect_vertical', + 'ps_change_motion','ps_change_shape','ps_change_all' + ), + // functions (registered version) + 5 => array( + ), + // constants (registered version) + 6 => array( + ), + ), + 'SYMBOLS' => array( + '(', ')', '{', '}', '[', ']', '&&', '||', '^^', '<', '<=', '==', '!=', '>', '>=', + '|', '&', '^', '<<', '>>', '+', '-', '*', '/', 'div', 'mod', '!', '-', '~' + ), + 'CASE_SENSITIVE' => array( + GESHI_COMMENTS => true, + 1 => false, + 2 => false, + 3 => false, + 4 => false, + ), + 'STYLES' => array( + 'KEYWORDS' => array( + 1 => 'font-weight: bold; color: #000000;', + 2 => 'font-weight: bold; color: #000000;', + 3 => 'color: navy;', + 4 => 'color: brown', + ), + 'COMMENTS' => array( + 1 => 'font-style: italic; color: green;', + 'MULTI' => 'font-style: italic; color: green;' + ), + 'ESCAPE_CHAR' => array( + 0 => 'color: #000099; font-weight: bold;' + ), + 'BRACKETS' => array( + 0 => 'color: #000000;' //'color: #66cc66;' + ), + 'STRINGS' => array( + 0 => 'color: #ff0000;' + ), + 'NUMBERS' => array( + 0 => 'color: #cc66cc;' + ), + 'METHODS' => array( + 1 => 'color: #202020;', + 2 => 'color: #202020;' + ), + 'SYMBOLS' => array( + 0 => 'color: #66cc66; font-weight: bold;' + ), + 'REGEXPS' => array( + ), + 'SCRIPT' => array( + ) + ), + 'URLS' => array( + 1 => '', + 2 => '', + // I'm working on the GML online reference site, currently indexing the GML functions. + 3 => 'http://www.zonamakers.com/gmlreference/{FNAME}.html', // (provisional, will change soon!) + 4 => '' + ), + 'OOLANG' => true, + 'OBJECT_SPLITTERS' => array( + 1 => '.' + ), + 'REGEXPS' => array( + ), + 'STRICT_MODE_APPLIES' => GESHI_NEVER, + 'SCRIPT_DELIMITERS' => array( + ), + 'HIGHLIGHT_STRICT_BLOCK' => array( + ) +); + +?> \ No newline at end of file diff --git a/inc/geshi/html4strict.php b/inc/geshi/html4strict.php index 6f483afaf23a97169d2bace959160979f32bb78c..8807f4082da2a3ba7e2b2c87a9711d9132df9984 100644 --- a/inc/geshi/html4strict.php +++ b/inc/geshi/html4strict.php @@ -4,10 +4,10 @@ * --------------- * Author: Nigel McNie (oracle.shinoda@gmail.com) * Copyright: (c) 2004 Nigel McNie (http://qbnz.com/highlighter/) - * Release Version: 1.0.6 - * CVS Revision Version: $Revision: 1.1 $ + * Release Version: 1.0.7.1 + * CVS Revision Version: $Revision: 1.2 $ * Date Started: 2004/07/10 - * Last Modified: $Date: 2005/06/02 04:57:18 $ + * Last Modified: $Date: 2005/07/26 05:23:30 $ * * HTML 4.01 strict language file for GeSHi. * diff --git a/inc/geshi/java.php b/inc/geshi/java.php index 860ce32f8bf23507ccc250dcc2bd4d726db2a032..27d50e59277215c1dc29dbefcc631bac4262ab86 100644 --- a/inc/geshi/java.php +++ b/inc/geshi/java.php @@ -4,10 +4,10 @@ * -------- * Author: Nigel McNie (oracle.shinoda@gmail.com) * Copyright: (c) 2004 Nigel McNie (http://qbnz.com/highlighter/) - * Release Version: 1.0.6 - * CVS Revision Version: $Revision: 1.2 $ + * Release Version: 1.0.7.1 + * CVS Revision Version: $Revision: 1.3 $ * Date Started: 2004/07/10 - * Last Modified: $Date: 2005/06/13 22:28:25 $ + * Last Modified: $Date: 2005/07/26 05:23:30 $ * * Java language file for GeSHi. * diff --git a/inc/geshi/javascript.php b/inc/geshi/javascript.php index c321dfa38fe5c00963a1ccaa59ed3126626b866f..5c7753cdb70fa6d8d429c99c99e846e9341db0ba 100644 --- a/inc/geshi/javascript.php +++ b/inc/geshi/javascript.php @@ -4,10 +4,10 @@ * -------------- * Author: Ben Keen (ben.keen@gmail.com) * Copyright: (c) 2004 Ben Keen (ben.keen@gmail.com), Nigel McNie (http://qbnz.com/highlighter) - * Release Version: 1.0.6 - * CVS Revision Version: $Revision: 1.1 $ + * Release Version: 1.0.7.1 + * CVS Revision Version: $Revision: 1.2 $ * Date Started: 2004/06/20 - * Last Modified: $Date: 2005/06/02 04:57:18 $ + * Last Modified: $Date: 2005/07/26 05:23:30 $ * * JavaScript language file for GeSHi. * diff --git a/inc/geshi/lisp.php b/inc/geshi/lisp.php index b59e493502e37cd931b8176f4dab1c13f1cdc22b..04cd027abee57752ba47f0747cbf45de8156349c 100644 --- a/inc/geshi/lisp.php +++ b/inc/geshi/lisp.php @@ -4,10 +4,10 @@ * -------- * Author: Roberto Rossi (rsoftware@altervista.org) * Copyright: (c) 2004 Roberto Rossi (http://rsoftware.altervista.org), Nigel McNie (http://qbnz.com/highlighter - * Release Version: 1.0.6 - * CVS Revision Version: $Revision: 1.1 $ + * Release Version: 1.0.7.1 + * CVS Revision Version: $Revision: 1.2 $ * Date Started: 2004/08/30 - * Last Modified: $Date: 2005/06/02 04:57:18 $ + * Last Modified: $Date: 2005/07/26 05:23:30 $ * * Generic Lisp language file for GeSHi. * diff --git a/inc/geshi/lua.php b/inc/geshi/lua.php index 28fecbfffc6282b008029bc0ad839821ad944a0b..1c4d08746c163b71a65948bc9aea61d444afab1a 100644 --- a/inc/geshi/lua.php +++ b/inc/geshi/lua.php @@ -4,10 +4,10 @@ * ------- * Author: Roberto Rossi (rsoftware@altervista.org) * Copyright: (c) 2004 Roberto Rossi (http://rsoftware.altervista.org), Nigel McNie (http://qbnz.com/blog) - * Release Version: 1.0.6 - * CVS Revision Version: $Revision: 1.1 $ + * Release Version: 1.0.7.1 + * CVS Revision Version: $Revision: 1.2 $ * Date Started: 2004/07/10 - * Last Modified: $Date: 2005/06/02 04:57:18 $ + * Last Modified: $Date: 2005/07/26 05:23:30 $ * * LUA language file for GeSHi. * diff --git a/inc/geshi/matlab.php b/inc/geshi/matlab.php index e27807c8480dbf3f1853614e9a92f92d7d241a67..5e07c57821fd9fae23873a1b24f9ba734e08b758 100644 --- a/inc/geshi/matlab.php +++ b/inc/geshi/matlab.php @@ -4,10 +4,10 @@ * ----------- * Author: Florian Knorn (floz@gmx.de) * Copyright: (c) 2004 Florian Knorn (http://www.florian-knorn.com) - * Release Version: 1.0.0 - * CVS Revision Version: $Revision: 1.1 $ + * Release Version: 1.0.7.1 + * CVS Revision Version: $Revision: 1.2 $ * Date Started: 2005/02/09 - * Last Modified: $Date: 2005/06/15 12:06:28 $ + * Last Modified: $Date: 2005/07/26 05:23:30 $ * * Matlab M-file language file for GeSHi. * diff --git a/inc/geshi/mpasm.php b/inc/geshi/mpasm.php index 2075cea78317a9a7395f48cdca00fa6c341a27a9..4dc0341a7cbcfc22399daf11bcabb59d3004c846 100644 --- a/inc/geshi/mpasm.php +++ b/inc/geshi/mpasm.php @@ -4,10 +4,10 @@ * --------- * Author: Bakalex (bakalex@gmail.com) * Copyright: (c) 2004 Bakalex, Nigel McNie (http://qbnz.com/highlighter) - * Release Version: 1.0.6 - * CVS Revision Version: $Revision: 1.1 $ + * Release Version: 1.0.7.1 + * CVS Revision Version: $Revision: 1.2 $ * Date Started: 2004/12/6 - * Last Modified: $Date: 2005/06/02 04:57:18 $ + * Last Modified: $Date: 2005/07/26 05:23:30 $ * * Microchip Assembler language file for GeSHi. * diff --git a/inc/geshi/nsis.php b/inc/geshi/nsis.php index bddb4979b5cd72a16c5b9018cc2658913af0520d..f5de478b2059917a01dba5588aee52ffb4c769ab 100644 --- a/inc/geshi/nsis.php +++ b/inc/geshi/nsis.php @@ -4,10 +4,10 @@ * -------- * Author: Tux (tux@inmail.cz) * Copyright: (c) 2004 Tux (http://tux.a4.cz/), Nigel McNie (http://qbnz.com/highlighter) - * Release Version: 1.0.6 - * CVS Revision Version: $Revision: 1.1 $ + * Release Version: 1.0.7.1 + * CVS Revision Version: $Revision: 1.2 $ * Date Started: 2004/29/07 - * Last Modified: $Date: 2005/06/02 04:57:18 $ + * Last Modified: $Date: 2005/07/26 05:23:30 $ * * NullSoft Installer System language file for GeSHi. * Words are from SciTe configuration file diff --git a/inc/geshi/objc.php b/inc/geshi/objc.php index 015fd2e248e3e6043cf42c068e921ac73992d630..0cbd2cf4d4e46db96883ef64096eccf53d438ea2 100644 --- a/inc/geshi/objc.php +++ b/inc/geshi/objc.php @@ -4,10 +4,10 @@ * -------- * Author: M. Uli Kusterer (witness.of.teachtext@gmx.net) * Copyright: (c) 2004 M. Uli Kusterer, Nigel McNie (http://qbnz.com/highlighter/) - * Release Version: 1.0.6 - * CVS Revision Version: $Revision: 1.1 $ + * Release Version: 1.0.7.1 + * CVS Revision Version: $Revision: 1.2 $ * Date Started: 2004/06/04 - * Last Modified: $Date: 2005/06/02 04:57:18 $ + * Last Modified: $Date: 2005/07/26 05:23:30 $ * * Objective C language file for GeSHi. * diff --git a/inc/geshi/oobas.php b/inc/geshi/oobas.php index 3ba4e34d4935910dce57f4c3eb7071e566d4503b..9a96b9791e271c07b71ca0b80ae111e6d803c6ea 100644 --- a/inc/geshi/oobas.php +++ b/inc/geshi/oobas.php @@ -4,10 +4,10 @@ * --------- * Author: Roberto Rossi (rsoftware@altervista.org) * Copyright: (c) 2004 Roberto Rossi (http://rsoftware.altervista.org), Nigel McNie (http://qbnz.com/highlighter) - * Release Version: 1.0.6 - * CVS Revision Version: $Revision: 1.1 $ + * Release Version: 1.0.7.1 + * CVS Revision Version: $Revision: 1.2 $ * Date Started: 2004/08/30 - * Last Modified: $Date: 2005/06/02 04:57:18 $ + * Last Modified: $Date: 2005/07/26 05:23:30 $ * * OpenOffice.org Basic language file for GeSHi. * diff --git a/inc/geshi/oracle8.php b/inc/geshi/oracle8.php index 9797722b069ae8b86263c8db193af888981c2f21..456a06eb0f76915c1a1b67d8c17e5de8a34083cc 100644 --- a/inc/geshi/oracle8.php +++ b/inc/geshi/oracle8.php @@ -4,10 +4,10 @@ * ----------- * Author: Guy Wicks (Guy.Wicks@rbs.co.uk) * Copyright: (c) 2004 Nigel McNie (http://qbnz.com/highlighter) - * Release Version: 1.0.6 - * CVS Revision Version: $Revision: 1.1 $ + * Release Version: 1.0.7.1 + * CVS Revision Version: $Revision: 1.2 $ * Date Started: 2004/06/04 - * Last Modified: $Date: 2005/06/02 04:57:18 $ + * Last Modified: $Date: 2005/07/26 05:23:30 $ * * Oracle 8 language file for GeSHi * diff --git a/inc/geshi/pascal.php b/inc/geshi/pascal.php index 8d4c9701cb5c68c812e16aad94b8601332f0b67a..d168fa07898b22190142b68f409d09098187fabd 100644 --- a/inc/geshi/pascal.php +++ b/inc/geshi/pascal.php @@ -4,10 +4,10 @@ * ---------- * Author: Tux (tux@inamil.cz) * Copyright: (c) 2004 Tux (http://tux.a4.cz/), Nigel McNie (http://qbnz.com/highlighter) - * Release Version: 1.0.6 - * CVS Revision Version: $Revision: 1.1 $ + * Release Version: 1.0.7.1 + * CVS Revision Version: $Revision: 1.2 $ * Date Started: 2004/07/26 - * Last Modified: $Date: 2005/06/02 04:57:18 $ + * Last Modified: $Date: 2005/07/26 05:23:30 $ * * Pascal language file for GeSHi. * diff --git a/inc/geshi/perl.php b/inc/geshi/perl.php index b2e5b2117a338721e502773f739aa242cca0845c..9b996853bdf73769963f9a6028bdfc8b15c037b2 100644 --- a/inc/geshi/perl.php +++ b/inc/geshi/perl.php @@ -4,10 +4,10 @@ * -------- * Author: Andreas Gohr (andi@splitbrain.org), Ben Keen (ben.keen@gmail.com) * Copyright: (c) 2004 Andreas Gohr, Ben Keen (http://www.benjaminkeen.org/), Nigel McNie (http://qbnz.com/highlighter/) - * Release Version: 1.0.6 - * CVS Revision Version: $Revision: 1.1 $ + * Release Version: 1.0.7.1 + * CVS Revision Version: $Revision: 1.2 $ * Date Started: 2004/08/20 - * Last Modified: $Date: 2005/06/02 04:57:18 $ + * Last Modified: $Date: 2005/07/26 05:23:30 $ * * Perl language file for GeSHi. * diff --git a/inc/geshi/php-brief.php b/inc/geshi/php-brief.php index 85fd72765e7dcbdade2324c42b90daa7989cc744..78cb593848d329a331ad2a0f783ebf664627d527 100644 --- a/inc/geshi/php-brief.php +++ b/inc/geshi/php-brief.php @@ -4,10 +4,10 @@ * ------------- * Author: Nigel McNie (oracle.shinoda@gmail.com) * Copyright: (c) 2004 Nigel McNie (http://qbnz.com/highlighter/) - * Release Version: 1.0.6 - * CVS Revision Version: $Revision: 1.1 $ + * Release Version: 1.0.7.1 + * CVS Revision Version: $Revision: 1.2 $ * Date Started: 2004/06/02 - * Last Modified: $Date: 2005/06/02 04:57:18 $ + * Last Modified: $Date: 2005/07/26 05:23:30 $ * * PHP language file for GeSHi (brief version). * diff --git a/inc/geshi/php.php b/inc/geshi/php.php index 3f6b60e7f0aa3169053fdd64df6895dd1080c26c..5ada4fc79172dfd6a7f5bf3faf5788842cd8b51a 100644 --- a/inc/geshi/php.php +++ b/inc/geshi/php.php @@ -4,10 +4,10 @@ * -------- * Author: Nigel McNie (oracle.shinoda@gmail.com) * Copyright: (c) 2004 Nigel McNie (http://qbnz.com/highlighter/) - * Release Version: 1.0.6 - * CVS Revision Version: $Revision: 1.2 $ + * Release Version: 1.0.7.1 + * CVS Revision Version: $Revision: 1.3 $ * Date Started: 2004/06/20 - * Last Modified: $Date: 2005/06/13 22:28:47 $ + * Last Modified: $Date: 2005/07/26 05:23:30 $ * * PHP language file for GeSHi. * diff --git a/inc/geshi/python.php b/inc/geshi/python.php index 2434ca40e7be7184d1b53949a6ac99e8ab8bbb21..8738c2211df1fdd7ee21971a882d9aaef5b21e6d 100644 --- a/inc/geshi/python.php +++ b/inc/geshi/python.php @@ -4,10 +4,10 @@ * ---------- * Author: Roberto Rossi (rsoftware@altervista.org) * Copyright: (c) 2004 Roberto Rossi (http://rsoftware.altervista.org), Nigel McNie (http://qbnz.com/highlighter) - * Release Version: 1.0.6 - * CVS Revision Version: $Revision: 1.2 $ + * Release Version: 1.0.7.1 + * CVS Revision Version: $Revision: 1.3 $ * Date Started: 2004/08/30 - * Last Modified: $Date: 2005/06/14 13:03:15 $ + * Last Modified: $Date: 2005/07/26 05:23:30 $ * * Python language file for GeSHi. * diff --git a/inc/geshi/qbasic.php b/inc/geshi/qbasic.php index 72c179b5343cd3fd168e092eb710bc4a1f79fb11..4af1276e683bc1b35434b393e27167a4345db810 100644 --- a/inc/geshi/qbasic.php +++ b/inc/geshi/qbasic.php @@ -4,10 +4,10 @@ * ---------- * Author: Nigel McNie (oracle.shinoda@gmail.com) * Copyright: (c) 2004 Nigel McNie (http://qbnz.com/highlighter/) - * Release Version: 1.0.6 - * CVS Revision Version: $Revision: 1.1 $ + * Release Version: 1.0.7.1 + * CVS Revision Version: $Revision: 1.2 $ * Date Started: 2004/06/20 - * Last Modified: $Date: 2005/06/02 04:57:18 $ + * Last Modified: $Date: 2005/07/26 05:23:30 $ * * QBasic/QuickBASIC language file for GeSHi. * diff --git a/inc/geshi/smarty.php b/inc/geshi/smarty.php index eb8514ad22f591ec164255741e1241337b4cc63c..083e41293fffc2a2d4b8139634b8d8ce9f9e2d47 100644 --- a/inc/geshi/smarty.php +++ b/inc/geshi/smarty.php @@ -4,10 +4,10 @@ * ---------- * Author: Alan Juden (alan@judenware.org) * Copyright: (c) 2004 Alan Juden, Nigel McNie (http://qbnz.com/highlighter/) - * Release Version: 1.0.6 - * CVS Revision Version: $Revision: 1.2 $ + * Release Version: 1.0.7.1 + * CVS Revision Version: $Revision: 1.3 $ * Date Started: 2004/07/10 - * Last Modified: $Date: 2005/06/13 22:29:20 $ + * Last Modified: $Date: 2005/07/26 05:23:30 $ * * Smarty template language file for GeSHi. * diff --git a/inc/geshi/sql.php b/inc/geshi/sql.php index 284ccdc313471f14f74601addcaf8a0f7377a0ef..205ce37c0fba2a6a12d282a89dee68682481b81b 100644 --- a/inc/geshi/sql.php +++ b/inc/geshi/sql.php @@ -4,10 +4,10 @@ * ------- * Author: Nigel McNie (oracle.shinoda@gmail.com) * Copyright: (c) 2004 Nigel McNie (http://qbnz.com/highlighter) - * Release Version: 1.0.6 - * CVS Revision Version: $Revision: 1.2 $ + * Release Version: 1.0.7.1 + * CVS Revision Version: $Revision: 1.3 $ * Date Started: 2004/06/04 - * Last Modified: $Date: 2005/06/15 12:07:06 $ + * Last Modified: $Date: 2005/07/26 05:23:30 $ * * SQL language file for GeSHi. * diff --git a/inc/geshi/vb.php b/inc/geshi/vb.php index c0be8813084019ddd0677d578c0d09b375563cbe..59bd9222335a858812affcca5cc250a4598fc193 100644 --- a/inc/geshi/vb.php +++ b/inc/geshi/vb.php @@ -4,10 +4,10 @@ * ------ * Author: Roberto Rossi (rsoftware@altervista.org) * Copyright: (c) 2004 Roberto Rossi (http://rsoftware.altervista.org), Nigel McNie (http://qbnz.com/highlighter) - * Release Version: 1.0.6 - * CVS Revision Version: $Revision: 1.1 $ + * Release Version: 1.0.7.1 + * CVS Revision Version: $Revision: 1.2 $ * Date Started: 2004/08/30 - * Last Modified: $Date: 2005/06/02 04:57:18 $ + * Last Modified: $Date: 2005/07/26 05:23:30 $ * * Visual Basic language file for GeSHi. * diff --git a/inc/geshi/vbnet.php b/inc/geshi/vbnet.php index 2fb77bc3375d81a7e94be8fba9358d52a531834d..d1adbb635c40e35fbe6dcf230f769c6ea31a58e6 100644 --- a/inc/geshi/vbnet.php +++ b/inc/geshi/vbnet.php @@ -4,10 +4,10 @@ * --------- * Author: Alan Juden (alan@judenware.org) * Copyright: (c) 2004 Alan Juden, Nigel McNie (http://qbnz.com/highlighter) - * Release Version: 1.0.6 - * CVS Revision Version: $Revision: 1.3 $ + * Release Version: 1.0.7.1 + * CVS Revision Version: $Revision: 1.4 $ * Date Started: 2004/06/04 - * Last Modified: $Date: 2005/06/15 12:07:32 $ + * Last Modified: $Date: 2005/07/26 05:23:30 $ * * VB.NET language file for GeSHi. * diff --git a/inc/geshi/vhdl.php b/inc/geshi/vhdl.php index bb6d7f0aa3773c4d4756c165c5e354343c42244f..9e1eb4e536e6eca683a7236d6bad6cd913c8bc3e 100644 --- a/inc/geshi/vhdl.php +++ b/inc/geshi/vhdl.php @@ -4,10 +4,10 @@ * -------- * Author: Alexander 'E-Razor' Krause (admin@erazor-zone.de) * Copyright: (c) 2005 Alexander Krause - * Release Version: 1.0.0 - * CVS Revision Version: $Revision: 1.1 $ + * Release Version: 1.0.7.1 + * CVS Revision Version: $Revision: 1.2 $ * Date Started: 2005/06/15 - * Last Modified: $Date: 2005/06/14 13:02:34 $ + * Last Modified: $Date: 2005/07/26 05:23:30 $ * * VHDL (VHSICADL, very high speed integrated circuit HDL) language file for GeSHi. * diff --git a/inc/geshi/visualfoxpro.php b/inc/geshi/visualfoxpro.php index f3cb29059b6609675d5d7138af598f49c6b0a404..bdf80d8ab0906551a1f58c10204954acd46a7a8a 100644 --- a/inc/geshi/visualfoxpro.php +++ b/inc/geshi/visualfoxpro.php @@ -4,8 +4,8 @@ * ---------------- * Author: Roberto Armellin (r.armellin@tin.it) * Copyright: (c) 2004 Roberto Armellin, Nigel McNie (http://qbnz.com/highlighter/) - * Release Version: 1.0.6 - * CVS Revision Version: $Revision: 1.1 $ + * Release Version: 1.0.7.1 + * CVS Revision Version: $Revision: 1.2 $ * Date Started: 2004/09/17 * Last Modified: 2004/09/18 * diff --git a/inc/geshi/xml.php b/inc/geshi/xml.php index 24bf1a4d66d1e9a552ee3f614f568b8631a4dc27..b8b3cb6615e878074e62681820316e2175e57bd2 100644 --- a/inc/geshi/xml.php +++ b/inc/geshi/xml.php @@ -4,10 +4,10 @@ * ------- * Author: Nigel McNie (oracle.shinoda@gmail.com) * Copyright: (c) 2004 Nigel McNie (http://qbnz.com/highlighter/) - * Release Version: 1.0.6 - * CVS Revision Version: $Revision: 1.3 $ + * Release Version: 1.0.7.1 + * CVS Revision Version: $Revision: 1.4 $ * Date Started: 2004/09/01 - * Last Modified: $Date: 2005/06/13 22:30:42 $ + * Last Modified: $Date: 2005/07/26 05:23:30 $ * * XML language file for GeSHi. Based on the idea/file by Christian Weiske *