From 9f830448ee35b709be3c303585a230dfbf8582b3 Mon Sep 17 00:00:00 2001
From: Andreas Gohr <andi@splitbrain.org>
Date: Thu, 28 Jul 2005 22:40:42 +0200
Subject: [PATCH] GeSHi updated to 1.0.7.1

darcs-hash:20050728204042-7ad00-460f1fd12d7b5dfb1c58518e80ff10ea0aeb046e.gz
---
 data/pages/wiki/syntax.txt |   2 +-
 inc/geshi.php              |  13 +-
 inc/geshi/actionscript.php |   6 +-
 inc/geshi/ada.php          |   6 +-
 inc/geshi/apache.php       |   6 +-
 inc/geshi/asm.php          |   6 +-
 inc/geshi/asp.php          |   6 +-
 inc/geshi/bash.php         |   6 +-
 inc/geshi/c.php            |   6 +-
 inc/geshi/c_mac.php        |   6 +-
 inc/geshi/caddcl.php       |   6 +-
 inc/geshi/cadlisp.php      |   6 +-
 inc/geshi/cpp.php          |   6 +-
 inc/geshi/csharp.php       |   6 +-
 inc/geshi/css.php          |  10 +-
 inc/geshi/d.php            |   6 +-
 inc/geshi/delphi.php       |   6 +-
 inc/geshi/diff.php         |   6 +-
 inc/geshi/div.php          | 128 ++++++++++++
 inc/geshi/eiffel.php       | 397 +++++++++++++++++++++++++++++++++++++
 inc/geshi/gml.php          | 288 +++++++++++++++++++++++++++
 inc/geshi/html4strict.php  |   6 +-
 inc/geshi/java.php         |   6 +-
 inc/geshi/javascript.php   |   6 +-
 inc/geshi/lisp.php         |   6 +-
 inc/geshi/lua.php          |   6 +-
 inc/geshi/matlab.php       |   6 +-
 inc/geshi/mpasm.php        |   6 +-
 inc/geshi/nsis.php         |   6 +-
 inc/geshi/objc.php         |   6 +-
 inc/geshi/oobas.php        |   6 +-
 inc/geshi/oracle8.php      |   6 +-
 inc/geshi/pascal.php       |   6 +-
 inc/geshi/perl.php         |   6 +-
 inc/geshi/php-brief.php    |   6 +-
 inc/geshi/php.php          |   6 +-
 inc/geshi/python.php       |   6 +-
 inc/geshi/qbasic.php       |   6 +-
 inc/geshi/smarty.php       |   6 +-
 inc/geshi/sql.php          |   6 +-
 inc/geshi/vb.php           |   6 +-
 inc/geshi/vbnet.php        |   6 +-
 inc/geshi/vhdl.php         |   6 +-
 inc/geshi/visualfoxpro.php |   4 +-
 inc/geshi/xml.php          |   6 +-
 45 files changed, 941 insertions(+), 129 deletions(-)
 create mode 100644 inc/geshi/div.php
 create mode 100644 inc/geshi/eiffel.php
 create mode 100644 inc/geshi/gml.php

diff --git a/data/pages/wiki/syntax.txt b/data/pages/wiki/syntax.txt
index 35509fdd7..824927a5e 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 5e61a44c8..46176ba19 100644
--- a/inc/geshi.php
+++ b/inc/geshi.php
@@ -28,7 +28,7 @@
  * @author    Nigel McNie <nigel@geshi.org>
  * @copyright Copyright &copy; 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 8373c2abf..5032f98a1 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 848b3b1bf..f0cf602e0 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 893090965..c9eb55c8e 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 9cbf59ef8..eb7edf5ac 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 5135d4771..9004bd8c4 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 3cfa98559..fad24f0da 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 d2fb41e35..ebdaed9da 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 d65cb9e70..b020c74f5 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 9eb542db5..d942d9e5e 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 16b56c067..c432c7f29 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 0e2d10ed2..9c85ad0cd 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 981f04488..2d3b29681 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 03f6c1409..a06e47af8 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 d69515531..bad539efb 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 13b7deb4c..5a31e328d 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 47ccab677..eacd4d5e0 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 000000000..4c8426e02
--- /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 000000000..d28aadcee
--- /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 000000000..86e93def1
--- /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 6f483afaf..8807f4082 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 860ce32f8..27d50e592 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 c321dfa38..5c7753cdb 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 b59e49350..04cd027ab 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 28fecbfff..1c4d08746 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 e27807c84..5e07c5782 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 2075cea78..4dc0341a7 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 bddb4979b..f5de478b2 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 015fd2e24..0cbd2cf4d 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 3ba4e34d4..9a96b9791 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 9797722b0..456a06eb0 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 8d4c9701c..d168fa078 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 b2e5b2117..9b996853b 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 85fd72765..78cb59384 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 3f6b60e7f..5ada4fc79 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 2434ca40e..8738c2211 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 72c179b53..4af1276e6 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 eb8514ad2..083e41293 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 284ccdc31..205ce37c0 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 c0be88130..59bd92223 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 2fb77bc33..d1adbb635 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 bb6d7f0aa..9e1eb4e53 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 f3cb29059..bdf80d8ab 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 24bf1a4d6..b8b3cb661 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
  *
-- 
GitLab