diff options
72 files changed, 433 insertions, 309 deletions
diff --git a/data/pages/wiki/syntax.txt b/data/pages/wiki/syntax.txt index 4c5dc5b6e..05bfc4fd6 100644 --- a/data/pages/wiki/syntax.txt +++ b/data/pages/wiki/syntax.txt @@ -336,7 +336,7 @@ class HelloWorldApp { } </code> -The following language strings are currently recognized: //actionscript, actionscript-french, ada, apache, applescript, asm, asp, autoit, bash, blitzbasic, caddcl, cadlisp, c, c_mac, cfm, cpp, csharp, css, delphi, diff, d, div, dos, eiffel, freebasic, gml, groovy, html4strict, ini, inno, java, java5, javascript, lisp, lua, matlab, mpasm, mysql, nsis, objc, ocaml, ocaml-brief, oobas, oracle8, pascal, perl, php-brief, php, python, qbasic, scheme, sdlbasic, smalltalk, smarty, sql, tcl, text, tsql, reg, robots, ruby, vb, vbnet, vhdl, visualfoxpro, winbatch, xml// +The following language strings are currently recognized: //actionscript, actionscript-french, ada, apache, applescript, asm, asp, autoit, bash, blitzbasic, caddcl, cadlisp, c, c_mac, cfm, cpp, csharp, css, delphi, diff, d, div, dos, eiffel, freebasic, gml, groovy, html4strict, idl, ini, inno, java, java5, javascript, lisp, lua, matlab, mpasm, mysql, nsis, objc, ocaml, ocaml-brief, oobas, oracle8, pascal, perl, php-brief, php, python, qbasic, scheme, sdlbasic, smalltalk, smarty, sql, tcl, text, tsql, reg, robots, ruby, vb, vbnet, vhdl, visualfoxpro, winbatch, xml// ===== Embedding HTML and PHP ===== diff --git a/inc/geshi.php b/inc/geshi.php index c6755ea4a..92d12352d 100644 --- a/inc/geshi.php +++ b/inc/geshi.php @@ -29,7 +29,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.40.2.5 2006/07/22 11:30:40 oracleshinoda Exp $ + * @version $Id: geshi.php,v 1.40.2.7 2006/08/07 11:06:41 oracleshinoda Exp $ * */ @@ -41,7 +41,7 @@ // /** The version of this GeSHi file */ -define('GESHI_VERSION', '1.0.7.12'); +define('GESHI_VERSION', '1.0.7.13'); /** Set the correct directory separator */ define('GESHI_DIR_SEPARATOR', ('WIN' != substr(PHP_OS, 0, 3)) ? '/' : '\\'); @@ -578,7 +578,7 @@ class GeSHi */ function set_overall_id ($id) { - $this->overall_id = $id; + $this->overall_id = $id; } /** @@ -2269,6 +2269,11 @@ class GeSHi $parsed_code = preg_replace('#<span[^>]+>(\s*)</span>#', '\\1', $parsed_code); $parsed_code = preg_replace('#<div[^>]+>(\s*)</div>#', '\\1', $parsed_code); + // If we are using IDs for line numbers, there needs to be an overall + // ID set to prevent collisions. + if ($this->add_ids && !$this->overall_id) { + $this->overall_id = 'geshi-' . substr(md5(microtime()), 0, 4); + } // If we're using line numbers, we insert <li>s and appropriate // markup to style them (otherwise we don't need to do anything) @@ -2324,23 +2329,21 @@ class GeSHi ++$i; // Are we supposed to use ids? If so, add them if ($this->add_ids) { - //$attr .= " id=\"{$this->overall_id}-{$i}\""; $attrs['id'][] = "$this->overall_id-$i"; } if ($this->use_classes && in_array($i, $this->highlight_extra_lines)) { - //$attr .= " class=\"ln-xtra\""; $attrs['class'][] = 'ln-xtra'; } if (!$this->use_classes && in_array($i, $this->highlight_extra_lines)) { - //$attr .= " style=\"{$this->highlight_extra_lines_style}\""; $attrs['style'][] = $this->highlight_extra_lines_style; } // Add in the line surrounded by appropriate list HTML $attr_string = ' '; foreach ($attrs as $key => $attr) { - $attr_string .= $key . '="' . implode(' ', $attr) . '"'; + $attr_string .= $key . '="' . implode(' ', $attr) . '" '; } + $attr_string = substr($attr_string, 0, -1); $parsed_code .= "<li$attr_string>$start$line$end</li>$ls"; $attrs = array(); } diff --git a/inc/geshi/actionscript.php b/inc/geshi/actionscript.php index 07e9e9d39..da203400e 100644 --- a/inc/geshi/actionscript.php +++ b/inc/geshi/actionscript.php @@ -4,7 +4,7 @@ * ---------------- * Author: Steffen Krause (Steffen.krause@muse.de) * Copyright: (c) 2004 Steffen Krause, Nigel McNie (http://qbnz.com/highlighter) - * Release Version: 1.0.7.12 + * Release Version: 1.0.7.13 * CVS Revision Version: $Revision: 1.13.2.3 $ * Date Started: 2004/06/20 * Last Modified: $Date: 2006/07/22 11:30:29 $ diff --git a/inc/geshi/ada.php b/inc/geshi/ada.php index 0e08593b9..b5253ac55 100644 --- a/inc/geshi/ada.php +++ b/inc/geshi/ada.php @@ -4,7 +4,7 @@ * ------- * Author: Tux (tux@inmail.cz) * Copyright: (c) 2004 Tux (http://tux.a4.cz/), Nigel McNie (http://qbnz.com/highlighter) - * Release Version: 1.0.7.12 + * Release Version: 1.0.7.13 * CVS Revision Version: $Revision: 1.14.2.2 $ * Date Started: 2004/07/29 * Last Modified: $Date: 2006/07/22 11:30:32 $ diff --git a/inc/geshi/apache.php b/inc/geshi/apache.php index a11c9c9dd..954eb2980 100644 --- a/inc/geshi/apache.php +++ b/inc/geshi/apache.php @@ -4,7 +4,7 @@ * ---------- * Author: Tux (tux@inmail.cz) * Copyright: (c) 2004 Tux (http://tux.a4.cz/), Nigel McNie (http://qbnz.com/highlighter) - * Release Version: 1.0.7.12 + * Release Version: 1.0.7.13 * CVS Revision Version: $Revision: 1.14.2.3 $ * Date Started: 2004/29/07 * Last Modified: $Date: 2006/07/22 11:30:31 $ diff --git a/inc/geshi/applescript.php b/inc/geshi/applescript.php index d6a72da14..d9e2a4f71 100644 --- a/inc/geshi/applescript.php +++ b/inc/geshi/applescript.php @@ -4,7 +4,7 @@ * -------- * Author: Stephan Klimek (http://www.initware.org) * Copyright: Stephan Klimek (http://www.initware.org) - * Release Version: 1.0.7.12 + * Release Version: 1.0.7.13 * CVS Revision Version: $Revision: 1.12.2.3 $ * Date Started: 2005/07/20 * Last Modified: $Date: 2006/07/22 11:30:26 $ diff --git a/inc/geshi/asm.php b/inc/geshi/asm.php index 84462ca8c..0416c824f 100644 --- a/inc/geshi/asm.php +++ b/inc/geshi/asm.php @@ -4,7 +4,7 @@ * ------- * Author: Tux (tux@inmail.cz) * Copyright: (c) 2004 Tux (http://tux.a4.cz/), Nigel McNie (http://qbnz.com/highlighter) - * Release Version: 1.0.7.12 + * Release Version: 1.0.7.13 * CVS Revision Version: $Revision: 1.15.2.3 $ * Date Started: 2004/07/27 * Last Modified: $Date: 2006/07/22 11:30:31 $ diff --git a/inc/geshi/asp.php b/inc/geshi/asp.php index feab11129..f2c446d2a 100644 --- a/inc/geshi/asp.php +++ b/inc/geshi/asp.php @@ -4,7 +4,7 @@ * --------
* 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.7.12 + * Release Version: 1.0.7.13 * CVS Revision Version: $Revision: 1.14.2.2 $
* Date Started: 2004/08/13
* Last Modified: $Date: 2006/07/22 11:30:31 $
diff --git a/inc/geshi/autoit.php b/inc/geshi/autoit.php index 6bfb9e04c..208fcc40a 100644 --- a/inc/geshi/autoit.php +++ b/inc/geshi/autoit.php @@ -4,7 +4,7 @@ * -------- * Author: mastrboy * Copyright: (c) 2006 and to GESHi ;) - * Release Version: 1.0.7.12 + * Release Version: 1.0.7.13 * Date Started: 26.01.2006 * * Current bugs & todo: diff --git a/inc/geshi/bash.php b/inc/geshi/bash.php index 161f71114..0e488e816 100644 --- a/inc/geshi/bash.php +++ b/inc/geshi/bash.php @@ -4,7 +4,7 @@ * -------- * Author: Andreas Gohr (andi@splitbrain.org) * Copyright: (c) 2004 Andreas Gohr, Nigel McNie (http://qbnz.com/highlighter) - * Release Version: 1.0.7.12 + * Release Version: 1.0.7.13 * CVS Revision Version: $Revision: 1.13.2.2 $ * Date Started: 2004/08/20 * Last Modified: $Date: 2006/07/22 11:30:23 $ diff --git a/inc/geshi/blitzbasic.php b/inc/geshi/blitzbasic.php index 249881efe..f1d63dedc 100644 --- a/inc/geshi/blitzbasic.php +++ b/inc/geshi/blitzbasic.php @@ -4,7 +4,7 @@ * --------------
* Author: P�draig O`Connel (info@moonsword.info)
* Copyright: (c) 2005 P�draig O`Connel (http://moonsword.info)
- * Release Version: 1.0.7.12 + * Release Version: 1.0.7.13 * CVS Revision Version: $Revision: 1.11.2.3 $
* Date Started: 16.10.2005
* Last Modified: $Date: 2006/07/22 11:30:23 $
diff --git a/inc/geshi/c.php b/inc/geshi/c.php index d7991aa5a..3f049e078 100644 --- a/inc/geshi/c.php +++ b/inc/geshi/c.php @@ -6,7 +6,7 @@ * Contributors: * - Jack Lloyd (lloyd@randombit.net) * Copyright: (c) 2004 Nigel McNie (http://qbnz.com/highlighter/) - * Release Version: 1.0.7.12 + * Release Version: 1.0.7.13 * CVS Revision Version: $Revision: 1.13.2.2 $ * Date Started: 2004/06/04 * Last Modified: $Date: 2006/07/22 11:30:30 $ diff --git a/inc/geshi/c_mac.php b/inc/geshi/c_mac.php index 44580b1f3..f7cb13be7 100644 --- a/inc/geshi/c_mac.php +++ b/inc/geshi/c_mac.php @@ -4,7 +4,7 @@ * --------- * 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.7.12 + * Release Version: 1.0.7.13 * CVS Revision Version: $Revision: 1.13.2.3 $ * Date Started: 2004/06/04 * Last Modified: $Date: 2006/07/22 11:30:32 $ diff --git a/inc/geshi/caddcl.php b/inc/geshi/caddcl.php index a83e478ca..3a20c72df 100644 --- a/inc/geshi/caddcl.php +++ b/inc/geshi/caddcl.php @@ -4,7 +4,7 @@ * ---------- * 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.7.12 + * Release Version: 1.0.7.13 * CVS Revision Version: $Revision: 1.13.2.3 $ * Date Started: 2004/08/30 * Last Modified: $Date: 2006/07/22 11:30:29 $ diff --git a/inc/geshi/cadlisp.php b/inc/geshi/cadlisp.php index f36276274..8721accc4 100644 --- a/inc/geshi/cadlisp.php +++ b/inc/geshi/cadlisp.php @@ -4,7 +4,7 @@ * ----------- * 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.7.12 + * Release Version: 1.0.7.13 * CVS Revision Version: $Revision: 1.13.2.3 $ * Date Started: 2004/08/30 * Last Modified: $Date: 2006/07/22 11:30:30 $ diff --git a/inc/geshi/cfdg.php b/inc/geshi/cfdg.php index 029191722..8a8b62385 100644 --- a/inc/geshi/cfdg.php +++ b/inc/geshi/cfdg.php @@ -4,7 +4,7 @@ * -------- * Author: John Horigan <john@glyphic.com> * Copyright: (c) 2006 John Horigan http://www.ozonehouse.com/john/ - * Release Version: 1.0.7.12 + * Release Version: 1.0.7.13 * CVS Revision Version: $Revision: 1.5.2.2 $ * Date Started: 2006/03/11 * Last Modified: $Date: 2006/07/22 11:30:26 $ diff --git a/inc/geshi/cfm.php b/inc/geshi/cfm.php index 70397c099..8dd6f3dab 100644 --- a/inc/geshi/cfm.php +++ b/inc/geshi/cfm.php @@ -4,7 +4,7 @@ * ------- * Author: Diego () * Copyright: (c) 2006 Diego - * Release Version: 1.0.7.12 + * Release Version: 1.0.7.13 * CVS Revision Version: $Revision: 1.7.2.3 $ * Date Started: 2006/02/25 * Last Modified: $Date: 2006/07/22 11:30:27 $ diff --git a/inc/geshi/cpp.php b/inc/geshi/cpp.php index 10e6a8729..9980298c7 100644 --- a/inc/geshi/cpp.php +++ b/inc/geshi/cpp.php @@ -7,7 +7,7 @@ * - 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.7.12 + * Release Version: 1.0.7.13 * CVS Revision Version: $Revision: 1.15.2.2 $
* Date Started: 2004/09/27
* Last Modified: $Date: 2006/07/22 11:30:25 $
diff --git a/inc/geshi/csharp.php b/inc/geshi/csharp.php index 0e7c10778..a05fa7f02 100644 --- a/inc/geshi/csharp.php +++ b/inc/geshi/csharp.php @@ -1,233 +1,233 @@ -<?php
-/*************************************************************************************
- * csharp.php
- * ----------
- * Author: Alan Juden (alan@judenware.org)
- * Copyright: (c) 2004 Alan Juden, Nigel McNie (http://qbnz.com/highlighter/)
- * Release Version: 1.0.7.12 - * CVS Revision Version: $Revision: 1.14.2.3 $
- * Date Started: 2004/06/04
- * Last Modified: $Date: 2006/07/22 11:30:32 $
- *
- * C# language file for GeSHi.
- *
- * CHANGES
- * -------
- * 2005/01/05 (1.0.1)
- * - Used hardquote support for @"..." strings (Cliff Stanford)
- * 2004/11/27 (1.0.0)
- * - Initial release
- *
- * TODO (updated 2004/11/27)
- * -------------------------
- *
- *************************************************************************************
- *
- * 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' => 'C#',
- 'COMMENT_SINGLE' => array(1 => '//', 2 => '#'),
- 'COMMENT_MULTI' => array('/*' => '*/'),
- 'CASE_KEYWORDS' => GESHI_CAPS_NO_CHANGE,
- 'QUOTEMARKS' => array("'", '"'),
- 'HARDQUOTE' => array('@"', '"'),
- 'HARDESCAPE' => array('""'),
- 'ESCAPE_CHAR' => '\\',
- 'KEYWORDS' => array(
- 1 => array(
- 'as', 'auto', 'base', 'break', 'case', 'catch', 'const', 'continue',
- 'default', 'do', 'else', 'event', 'explicit', 'extern', 'false',
- 'finally', 'fixed', 'for', 'foreach', 'goto', 'if', 'implicit',
- 'in', 'internal', 'lock', 'namespace', 'null', 'operator', 'out',
- 'override', 'params', 'private', 'protected', 'public', 'readonly',
- 'ref', 'return', 'sealed', 'stackalloc', 'static', 'switch', 'this',
- 'throw', 'true', 'try', 'unsafe', 'using', 'virtual', 'void', 'while'
- ),
- 2 => array(
- '#elif', '#endif', '#endregion', '#else', '#error', '#define', '#if',
- '#line', '#region', '#undef', '#warning'
- ),
- 3 => array(
- 'checked', 'is', 'new', 'sizeof', 'typeof', 'unchecked'
- ),
- 4 => array(
- 'bool', 'byte', 'char', 'class', 'decimal', 'delegate', 'double',
- 'enum', 'float', 'int', 'interface', 'long', 'object', 'sbyte',
- 'short', 'string', 'struct', 'uint', 'ulong', 'ushort'
- ),
- 5 => array(
- 'Microsoft.Win32',
- 'System',
- 'System.CodeDOM',
- 'System.CodeDOM.Compiler',
- 'System.Collections',
- 'System.Collections.Bases',
- 'System.ComponentModel',
- 'System.ComponentModel.Design',
- 'System.ComponentModel.Design.CodeModel',
- 'System.Configuration',
- 'System.Configuration.Assemblies',
- 'System.Configuration.Core',
- 'System.Configuration.Install',
- 'System.Configuration.Interceptors',
- 'System.Configuration.Schema',
- 'System.Configuration.Web',
- 'System.Core',
- 'System.Data',
- 'System.Data.ADO',
- 'System.Data.Design',
- 'System.Data.Internal',
- 'System.Data.SQL',
- 'System.Data.SQLTypes',
- 'System.Data.XML',
- 'System.Data.XML.DOM',
- 'System.Data.XML.XPath',
- 'System.Data.XML.XSLT',
- 'System.Diagnostics',
- 'System.Diagnostics.SymbolStore',
- 'System.DirectoryServices',
- 'System.Drawing',
- 'System.Drawing.Design',
- 'System.Drawing.Drawing2D',
- 'System.Drawing.Imaging',
- 'System.Drawing.Printing',
- 'System.Drawing.Text',
- 'System.Globalization',
- 'System.IO',
- 'System.IO.IsolatedStorage',
- 'System.Messaging',
- 'System.Net',
- 'System.Net.Sockets',
- 'System.NewXml',
- 'System.NewXml.XPath',
- 'System.NewXml.Xsl',
- 'System.Reflection',
- 'System.Reflection.Emit',
- 'System.Resources',
- 'System.Runtime.InteropServices',
- 'System.Runtime.InteropServices.Expando',
- 'System.Runtime.Remoting',
- 'System.Runtime.Serialization',
- 'System.Runtime.Serialization.Formatters',
- 'System.Runtime.Serialization.Formatters.Binary',
- 'System.Security',
- 'System.Security.Cryptography',
- 'System.Security.Cryptography.X509Certificates',
- 'System.Security.Permissions',
- 'System.Security.Policy',
- 'System.Security.Principal',
- 'System.ServiceProcess',
- 'System.Text',
- 'System.Text.RegularExpressions',
- 'System.Threading',
- 'System.Timers',
- 'System.Web',
- 'System.Web.Caching',
- 'System.Web.Configuration',
- 'System.Web.Security',
- 'System.Web.Services',
- 'System.Web.Services.Description',
- 'System.Web.Services.Discovery',
- 'System.Web.Services.Protocols',
- 'System.Web.UI',
- 'System.Web.UI.Design',
- 'System.Web.UI.Design.WebControls',
- 'System.Web.UI.Design.WebControls.ListControls',
- 'System.Web.UI.HtmlControls',
- 'System.Web.UI.WebControls',
- 'System.WinForms',
- 'System.WinForms.ComponentModel',
- 'System.WinForms.Design',
- 'System.Xml',
- 'System.Xml.Serialization',
- 'System.Xml.Serialization.Code',
- 'System.Xml.Serialization.Schema'
- ),
- ),
- 'SYMBOLS' => array(
- '+', '-', '*', '?', '=', '/', '%', '&', '>', '<', '^', '!', '|', ':',
- '(', ')', '{', '}', '[', ']'
- ),
- 'CASE_SENSITIVE' => array(
- GESHI_COMMENTS => true,
- 1 => false,
- 2 => false,
- 3 => false,
- 4 => false,
- 5 => false,
- ),
- 'STYLES' => array(
- 'KEYWORDS' => array(
- 1 => 'color: #0600FF;',
- 2 => 'color: #FF8000; font-weight: bold;',
- 3 => 'color: #008000;',
- 4 => 'color: #FF0000;',
- 5 => 'color: #000000;'
- ),
- 'COMMENTS' => array(
- 1 => 'color: #008080; font-style: italic;',
- 2 => 'color: #008080;',
- 'MULTI' => 'color: #008080; font-style: italic;'
- ),
- 'ESCAPE_CHAR' => array(
- 0 => 'color: #008080; font-weight: bold;'
- ),
- 'BRACKETS' => array(
- 0 => 'color: #000000;'
- ),
- 'STRINGS' => array(
- 0 => 'color: #808080;'
- ),
- 'NUMBERS' => array(
- 0 => 'color: #FF0000;'
- ),
- 'METHODS' => array(
- 1 => 'color: #0000FF;',
- 2 => 'color: #0000FF;'
- ),
- 'SYMBOLS' => array(
- 0 => 'color: #008000;'
- ),
- 'REGEXPS' => array(
- ),
- 'SCRIPT' => array(
- )
- ),
- 'URLS' => array(
- 1 => '',
- 2 => '',
- 3 => 'http://www.google.com/search?q={FNAME}+msdn.microsoft.com',
- 4 => ''
- ),
- 'OOLANG' => true,
- 'OBJECT_SPLITTERS' => array(
- 1 => '.',
- 2 => '::'
- ),
- 'REGEXPS' => array(
- ),
- 'STRICT_MODE_APPLIES' => GESHI_NEVER,
- 'SCRIPT_DELIMITERS' => array(
- ),
- 'HIGHLIGHT_STRICT_BLOCK' => array(
- )
-);
-
-?>
\ No newline at end of file +<?php +/************************************************************************************* + * csharp.php + * ---------- + * Author: Alan Juden (alan@judenware.org) + * Copyright: (c) 2004 Alan Juden, Nigel McNie (http://qbnz.com/highlighter/) + * Release Version: 1.0.7.13 + * CVS Revision Version: $Revision: 1.14.2.4 $ + * Date Started: 2004/06/04 + * Last Modified: $Date: 2006/08/22 10:22:26 $ + * + * C# language file for GeSHi. + * + * CHANGES + * ------- + * 2005/01/05 (1.0.1) + * - Used hardquote support for @"..." strings (Cliff Stanford) + * 2004/11/27 (1.0.0) + * - Initial release + * + * TODO (updated 2004/11/27) + * ------------------------- + * + ************************************************************************************* + * + * 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' => 'C#', + 'COMMENT_SINGLE' => array(1 => '//', 2 => '#'), + 'COMMENT_MULTI' => array('/*' => '*/'), + 'CASE_KEYWORDS' => GESHI_CAPS_NO_CHANGE, + 'QUOTEMARKS' => array("'", '"'), + 'HARDQUOTE' => array('@"', '"'), + 'HARDESCAPE' => array('""'), + 'ESCAPE_CHAR' => '\\', + 'KEYWORDS' => array( + 1 => array( + 'as', 'auto', 'base', 'break', 'case', 'catch', 'const', 'continue', + 'default', 'do', 'else', 'event', 'explicit', 'extern', 'false', + 'finally', 'fixed', 'for', 'foreach', 'goto', 'if', 'implicit', + 'in', 'internal', 'lock', 'namespace', 'null', 'operator', 'out', + 'override', 'params', 'private', 'protected', 'public', 'readonly', + 'ref', 'return', 'sealed', 'stackalloc', 'static', 'switch', 'this', + 'throw', 'true', 'try', 'unsafe', 'using', 'virtual', 'void', 'while' + ), + 2 => array( + '#elif', '#endif', '#endregion', '#else', '#error', '#define', '#if', + '#line', '#region', '#undef', '#warning' + ), + 3 => array( + 'checked', 'is', 'new', 'sizeof', 'typeof', 'unchecked' + ), + 4 => array( + 'bool', 'byte', 'char', 'class', 'decimal', 'delegate', 'double', + 'enum', 'float', 'int', 'interface', 'long', 'object', 'sbyte', + 'short', 'string', 'struct', 'uint', 'ulong', 'ushort' + ), + 5 => array( + 'Microsoft.Win32', + 'System', + 'System.CodeDOM', + 'System.CodeDOM.Compiler', + 'System.Collections', + 'System.Collections.Bases', + 'System.ComponentModel', + 'System.ComponentModel.Design', + 'System.ComponentModel.Design.CodeModel', + 'System.Configuration', + 'System.Configuration.Assemblies', + 'System.Configuration.Core', + 'System.Configuration.Install', + 'System.Configuration.Interceptors', + 'System.Configuration.Schema', + 'System.Configuration.Web', + 'System.Core', + 'System.Data', + 'System.Data.ADO', + 'System.Data.Design', + 'System.Data.Internal', + 'System.Data.SQL', + 'System.Data.SQLTypes', + 'System.Data.XML', + 'System.Data.XML.DOM', + 'System.Data.XML.XPath', + 'System.Data.XML.XSLT', + 'System.Diagnostics', + 'System.Diagnostics.SymbolStore', + 'System.DirectoryServices', + 'System.Drawing', + 'System.Drawing.Design', + 'System.Drawing.Drawing2D', + 'System.Drawing.Imaging', + 'System.Drawing.Printing', + 'System.Drawing.Text', + 'System.Globalization', + 'System.IO', + 'System.IO.IsolatedStorage', + 'System.Messaging', + 'System.Net', + 'System.Net.Sockets', + 'System.NewXml', + 'System.NewXml.XPath', + 'System.NewXml.Xsl', + 'System.Reflection', + 'System.Reflection.Emit', + 'System.Resources', + 'System.Runtime.InteropServices', + 'System.Runtime.InteropServices.Expando', + 'System.Runtime.Remoting', + 'System.Runtime.Serialization', + 'System.Runtime.Serialization.Formatters', + 'System.Runtime.Serialization.Formatters.Binary', + 'System.Security', + 'System.Security.Cryptography', + 'System.Security.Cryptography.X509Certificates', + 'System.Security.Permissions', + 'System.Security.Policy', + 'System.Security.Principal', + 'System.ServiceProcess', + 'System.Text', + 'System.Text.RegularExpressions', + 'System.Threading', + 'System.Timers', + 'System.Web', + 'System.Web.Caching', + 'System.Web.Configuration', + 'System.Web.Security', + 'System.Web.Services', + 'System.Web.Services.Description', + 'System.Web.Services.Discovery', + 'System.Web.Services.Protocols', + 'System.Web.UI', + 'System.Web.UI.Design', + 'System.Web.UI.Design.WebControls', + 'System.Web.UI.Design.WebControls.ListControls', + 'System.Web.UI.HtmlControls', + 'System.Web.UI.WebControls', + 'System.WinForms', + 'System.WinForms.ComponentModel', + 'System.WinForms.Design', + 'System.Xml', + 'System.Xml.Serialization', + 'System.Xml.Serialization.Code', + 'System.Xml.Serialization.Schema' + ), + ), + 'SYMBOLS' => array( + '+', '-', '*', '?', '=', '/', '%', '&', '>', '<', '^', '!', '|', ':', + '(', ')', '{', '}', '[', ']' + ), + 'CASE_SENSITIVE' => array( + GESHI_COMMENTS => true, + 1 => false, + 2 => false, + 3 => false, + 4 => false, + 5 => false, + ), + 'STYLES' => array( + 'KEYWORDS' => array( + 1 => 'color: #0600FF;', + 2 => 'color: #FF8000; font-weight: bold;', + 3 => 'color: #008000;', + 4 => 'color: #FF0000;', + 5 => 'color: #000000;' + ), + 'COMMENTS' => array( + 1 => 'color: #008080; font-style: italic;', + 2 => 'color: #008080;', + 'MULTI' => 'color: #008080; font-style: italic;' + ), + 'ESCAPE_CHAR' => array( + 0 => 'color: #008080; font-weight: bold;' + ), + 'BRACKETS' => array( + 0 => 'color: #000000;' + ), + 'STRINGS' => array( + 0 => 'color: #808080;' + ), + 'NUMBERS' => array( + 0 => 'color: #FF0000;' + ), + 'METHODS' => array( + 1 => 'color: #0000FF;', + 2 => 'color: #0000FF;' + ), + 'SYMBOLS' => array( + 0 => 'color: #008000;' + ), + 'REGEXPS' => array( + ), + 'SCRIPT' => array( + ) + ), + 'URLS' => array( + 1 => '', + 2 => '', + 3 => 'http://www.google.com/search?q={FNAME}+msdn.microsoft.com', + 4 => '' + ), + 'OOLANG' => true, + 'OBJECT_SPLITTERS' => array( + 1 => '.', + 2 => '::' + ), + 'REGEXPS' => array( + ), + 'STRICT_MODE_APPLIES' => GESHI_NEVER, + 'SCRIPT_DELIMITERS' => array( + ), + 'HIGHLIGHT_STRICT_BLOCK' => array( + ) +); + +?> diff --git a/inc/geshi/css.php b/inc/geshi/css.php index 2164127dc..5ef3e48a8 100644 --- a/inc/geshi/css.php +++ b/inc/geshi/css.php @@ -4,7 +4,7 @@ * ------- * Author: Nigel McNie (oracle.shinoda@gmail.com) * Copyright: (c) 2004 Nigel McNie (http://qbnz.com/highlighter/) - * Release Version: 1.0.7.12 + * Release Version: 1.0.7.13 * CVS Revision Version: $Revision: 1.15.2.2 $ * Date Started: 2004/06/18 * Last Modified: $Date: 2006/07/22 11:30:32 $ diff --git a/inc/geshi/d.php b/inc/geshi/d.php index b9815225c..f3960119a 100644 --- a/inc/geshi/d.php +++ b/inc/geshi/d.php @@ -4,7 +4,7 @@ * ----- * Author: Thomas Kuehne (thomas@kuehne.cn) * Copyright: (c) 2005 Thomas Kuehne (http://thomas.kuehne.cn/) - * Release Version: 1.0.7.12 + * Release Version: 1.0.7.13 * CVS Revision Version: $Revision: 1.13.2.2 $ * Date Started: 2005/04/22 * Last Modified: $Date: 2006/07/22 11:30:34 $ diff --git a/inc/geshi/delphi.php b/inc/geshi/delphi.php index 4ddefa05b..bb0aef9b6 100644 --- a/inc/geshi/delphi.php +++ b/inc/geshi/delphi.php @@ -4,7 +4,7 @@ * ---------- * Author: Járja Norbert (jnorbi@vipmail.hu) * Copyright: (c) 2004 Járja Norbert, Nigel McNie (http://qbnz.com/highlighter) - * Release Version: 1.0.7.12 + * Release Version: 1.0.7.13 * CVS Revision Version: $Revision: 1.17.2.2 $ * Date Started: 2004/07/26 * Last Modified: $Date: 2006/07/22 11:30:32 $ diff --git a/inc/geshi/diff.php b/inc/geshi/diff.php index 1ae87b945..387ac94bb 100644 --- a/inc/geshi/diff.php +++ b/inc/geshi/diff.php @@ -4,7 +4,7 @@ * -------- * Author: Conny Brunnkvist (conny@fuchsia.se), W. Tasin (tasin@fhm.edu) * Copyright: (c) 2004 Fuchsia Open Source Solutions (http://www.fuchsia.se/) - * Release Version: 1.0.7.12 + * Release Version: 1.0.7.13 * CVS Revision Version: $Revision: 1.14.2.2 $ * Date Started: 2004/12/29 * Last Modified: $Date: 2006/07/22 11:30:23 $ diff --git a/inc/geshi/div.php b/inc/geshi/div.php index 8cb419bc4..efeb79482 100644 --- a/inc/geshi/div.php +++ b/inc/geshi/div.php @@ -4,7 +4,7 @@ * ---------------------------------
* Author: Gabriel Lorenzo (ermakina@gmail.com)
* Copyright: (c) 2005 Gabriel Lorenzo (http://ermakina.gazpachito.net)
- * Release Version: 1.0.7.12 + * Release Version: 1.0.7.13 * CVS Revision Version: $Revision: 1.13.2.2 $
* Date Started: 2005/06/19
* Last Modified: $Date: 2006/07/22 11:30:23 $
diff --git a/inc/geshi/dos.php b/inc/geshi/dos.php index e46be6ec2..e9ea20d76 100644 --- a/inc/geshi/dos.php +++ b/inc/geshi/dos.php @@ -4,7 +4,7 @@ * ------- * Author: Alessandro Staltari (staltari@geocities.com) * Copyright: (c) 2005 Alessandro Staltari (http://www.geocities.com/SiliconValley/Vista/8155/) - * Release Version: 1.0.7.12 + * Release Version: 1.0.7.13 * CVS Revision Version: $Revision: 1.14.2.2 $ * Date Started: 2005/07/05 * Last Modified: $Date: 2006/07/22 11:30:27 $ diff --git a/inc/geshi/eiffel.php b/inc/geshi/eiffel.php index de521831b..007c8c49a 100644 --- a/inc/geshi/eiffel.php +++ b/inc/geshi/eiffel.php @@ -4,7 +4,7 @@ * ----------
* Author: Zoran Simic (zsimic@axarosenberg.com)
* Copyright: (c) 2005 Zoran Simic
- * Release Version: 1.0.7.12 + * Release Version: 1.0.7.13 * CVS Revision Version: $Revision: 1.13.2.2 $
* Date Started: 2005/06/30
* Last Modified: $Date: 2006/07/22 11:30:27 $
diff --git a/inc/geshi/fortran.php b/inc/geshi/fortran.php index 44738af55..24bb4e35c 100644 --- a/inc/geshi/fortran.php +++ b/inc/geshi/fortran.php @@ -4,7 +4,7 @@ * ----------- * Author: Cedric Arrabie (cedric.arrabie@univ-pau.fr) * Copyright: (C) 2006 Cetric Arrabie - * Release Version: 1.0.7.12 + * Release Version: 1.0.7.13 * CVS Revision Version: $Revision: 1.4.2.2 $ * Date Started: 2006/04/22 * Last Modified: $Date: 2006/07/22 11:30:32 $ diff --git a/inc/geshi/freebasic.php b/inc/geshi/freebasic.php index 36e35454c..8201aa51f 100644 --- a/inc/geshi/freebasic.php +++ b/inc/geshi/freebasic.php @@ -4,7 +4,7 @@ * ------------- * Author: Roberto Rossi * Copyright: (c) 2005 Roberto Rossi (http://rsoftware.altervista.org) - * Release Version: 1.0.7.12 + * Release Version: 1.0.7.13 * Date Started: 2005/08/19 * * FreeBasic (http://www.freebasic.net/) language file for GeSHi. diff --git a/inc/geshi/gml.php b/inc/geshi/gml.php index 8f39778b7..10b703d61 100644 --- a/inc/geshi/gml.php +++ b/inc/geshi/gml.php @@ -4,7 +4,7 @@ * -------- * Author: José Jorge Enríquez (jenriquez@users.sourceforge.net) * Copyright: (c) 2005 José Jorge Enríquez Rodríguez (http://www.zonamakers.com) - * Release Version: 1.0.7.12 + * Release Version: 1.0.7.13 * CVS Revision Version: $Revision: 1.15.2.3 $ * Date Started: 2005/06/21 * Last Modified: $Date: 2006/07/22 11:30:31 $ diff --git a/inc/geshi/groovy.php b/inc/geshi/groovy.php index 42bcf49c5..a20189cf5 100644 --- a/inc/geshi/groovy.php +++ b/inc/geshi/groovy.php @@ -4,7 +4,7 @@ * ---------- * Author: Ivan F. Villanueva B. (geshi_groovy@artificialidea.com) * Copyright: (c) 2006 Ivan F. Villanueva B.(http://www.artificialidea.com) - * Release Version: 1.0.7.12 + * Release Version: 1.0.7.13 * CVS Revision Version: $Revision: 1.2.2.2 $ * Date Started: 2006/04/29 * Last Modified: $Date: 2006/07/22 11:30:27 $ diff --git a/inc/geshi/html4strict.php b/inc/geshi/html4strict.php index 16a3c9cda..a85bc5109 100644 --- a/inc/geshi/html4strict.php +++ b/inc/geshi/html4strict.php @@ -4,7 +4,7 @@ * --------------- * Author: Nigel McNie (oracle.shinoda@gmail.com) * Copyright: (c) 2004 Nigel McNie (http://qbnz.com/highlighter/) - * Release Version: 1.0.7.12 + * Release Version: 1.0.7.13 * CVS Revision Version: $Revision: 1.15.2.2 $ * Date Started: 2004/07/10 * Last Modified: $Date: 2006/07/22 11:30:29 $ diff --git a/inc/geshi/idl.php b/inc/geshi/idl.php new file mode 100644 index 000000000..9f87c87d0 --- /dev/null +++ b/inc/geshi/idl.php @@ -0,0 +1,121 @@ +<?php +/************************************************************************************* + * idl.php + * ------- + * Author: Cedric Bosdonnat (cedricbosdo@openoffice.org) + * Copyright: (c) 2006 Cedric Bosdonnat + * Release Version: 1.0.7.13 + * CVS Revision Version: $Revision: 1.1.2.1 $ + * Date Started: 2006/08/20 + * Last Modified: $Date: 2006/08/22 10:25:45 $ + * + * Unoidl language file for GeSHi. + * + * 2006/08/20 (1.0.0) + * - First Release + * + ************************************************************************************* + * + * 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' => 'Uno Idl', + 'COMMENT_SINGLE' => array(1 => '//', 2 => '#'), + 'COMMENT_MULTI' => array('/*' => '*/'), + 'CASE_KEYWORDS' => GESHI_CAPS_NO_CHANGE, + 'QUOTEMARKS' => array("'", '"'), + 'ESCAPE_CHAR' => '\\', + 'KEYWORDS' => array( + 1 => array( + 'published', 'get', 'set', 'service', 'singleton', 'type', 'module', 'interface', 'struct', + 'const', 'constants', 'exception', 'enum', 'raises', 'typedef' + ), + 2 => array( + 'bound', 'maybeambiguous', 'maybedefault', 'maybevoid', 'oneway', 'optional', + 'readonly', 'in', 'out', 'inout', 'attribute', 'transient', 'removable' + ), + 3 => array( + 'True', 'False', 'TRUE', 'FALSE' + ), + 4 => array( + 'string', 'long', 'byte', 'hyper', 'boolean', 'any', 'char', 'double', 'long', + 'void', 'sequence', 'unsigned', '...' + ), + ), + 'SYMBOLS' => array( + '(', ')', '{', '}', '[', ']', '=', '+', '-', '*', '/', '!', '%', '^', '&', ':', ';' + ), + 'CASE_SENSITIVE' => array( + GESHI_COMMENTS => true, + 1 => true, + 2 => true, + 3 => true, + 4 => true, + ), + 'STYLES' => array( + 'KEYWORDS' => array( + 1 => 'color: #990078; font-weight: bold', + 2 => 'color: #36dd1c;', + 3 => 'color: #990078; font-weight: bold', + 4 => 'color: #0000ec;' + ), + 'COMMENTS' => array( + 1 => 'color: #3f7f5f;', + 2 => 'color: #808080;', + 'MULTI' => 'color: #4080ff; font-style: italic;' + ), + 'ESCAPE_CHAR' => array( + 0 => 'color: #666666; font-weight: bold;' + ), + 'BRACKETS' => array( + 0 => 'color: #808080;' + ), + 'STRINGS' => array( + 0 => 'color: #ff0000;' + ), + 'NUMBERS' => array( + 0 => 'color: #0000dd;' + ), + 'METHODS' => array( + ), + 'SYMBOLS' => array( + 0 => 'color: #66cc66;' + ), + 'REGEXPS' => array( + ), + 'SCRIPT' => array( + ) + ), + 'URLS' => array( + ), + 'OOLANG' => false, + 'OBJECT_SPLITTERS' => array( + 1 => '::' + ), + 'REGEXPS' => array( + ), + 'STRICT_MODE_APPLIES' => GESHI_NEVER, + 'SCRIPT_DELIMITERS' => array( + ), + 'HIGHLIGHT_STRICT_BLOCK' => array( + ) +); + +?> diff --git a/inc/geshi/ini.php b/inc/geshi/ini.php index 8ceffcdf7..35164b854 100644 --- a/inc/geshi/ini.php +++ b/inc/geshi/ini.php @@ -4,7 +4,7 @@ * --------
* Author: deguix (cevo_deguix@yahoo.com.br)
* Copyright: (c) 2005 deguix
- * Release Version: 1.0.7.12 + * Release Version: 1.0.7.13 * CVS Revision Version: $Revision: 1.14.2.3 $
* Date Started: 2005/03/27
* Last Modified: $Date: 2006/07/22 11:30:31 $
diff --git a/inc/geshi/inno.php b/inc/geshi/inno.php index a343e7403..57ac50a52 100644 --- a/inc/geshi/inno.php +++ b/inc/geshi/inno.php @@ -4,7 +4,7 @@ * ----------
* Author: Thomas Klingler (hotline@theratech.de) based on delphi.php from Járja Norbert (jnorbi@vipmail.hu)
* Copyright: (c) 2004 Járja Norbert, Nigel McNie (http://qbnz.com/highlighter)
- * Release Version: 1.0.7.12 + * Release Version: 1.0.7.13 * CVS Revision Version: $Revision: 1.12.2.2 $
* Date Started: 2005/07/29
* Last Modified: $Date: 2006/07/22 11:30:29 $
diff --git a/inc/geshi/java.php b/inc/geshi/java.php index cb0836a48..ca6a9f1cf 100644 --- a/inc/geshi/java.php +++ b/inc/geshi/java.php @@ -4,7 +4,7 @@ * -------- * Author: Nigel McNie (oracle.shinoda@gmail.com) * Copyright: (c) 2004 Nigel McNie (http://qbnz.com/highlighter/) - * Release Version: 1.0.7.12 + * Release Version: 1.0.7.13 * CVS Revision Version: $Revision: 1.19.2.3 $ * Date Started: 2004/07/10 * Last Modified: $Date: 2006/07/22 11:30:26 $ diff --git a/inc/geshi/java5.php b/inc/geshi/java5.php index 1741f2cb5..7bff3490d 100644 --- a/inc/geshi/java5.php +++ b/inc/geshi/java5.php @@ -4,7 +4,7 @@ * --------
* Author: Nigel McNie (oracle.shinoda@gmail.com)
* Copyright: (c) 2004 Nigel McNie (http://qbnz.com/highlighter/)
- * Release Version: 1.0.7.12 + * Release Version: 1.0.7.13 * CVS Revision Version: $Revision: 1.8.2.2 $
* Date Started: 2004/07/10
* Last Modified: $Date: 2006/07/22 11:30:32 $
diff --git a/inc/geshi/javascript.php b/inc/geshi/javascript.php index 32e6ff2cb..872723b15 100644 --- a/inc/geshi/javascript.php +++ b/inc/geshi/javascript.php @@ -4,7 +4,7 @@ * --------------
* 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.7.12 + * Release Version: 1.0.7.13 * CVS Revision Version: $Revision: 1.13.2.3 $
* Date Started: 2004/06/20
* Last Modified: $Date: 2006/07/22 11:30:23 $
diff --git a/inc/geshi/lisp.php b/inc/geshi/lisp.php index 121ced6ca..ab2bcf9c2 100644 --- a/inc/geshi/lisp.php +++ b/inc/geshi/lisp.php @@ -4,7 +4,7 @@ * -------- * 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.7.12 + * Release Version: 1.0.7.13 * CVS Revision Version: $Revision: 1.14.2.3 $ * Date Started: 2004/08/30 * Last Modified: $Date: 2006/07/22 11:30:27 $ diff --git a/inc/geshi/lua.php b/inc/geshi/lua.php index da668ad22..5d71d87c7 100644 --- a/inc/geshi/lua.php +++ b/inc/geshi/lua.php @@ -4,7 +4,7 @@ * -------
* 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.7.12 + * Release Version: 1.0.7.13 * CVS Revision Version: $Revision: 1.15.2.3 $
* Date Started: 2004/07/10
* Last Modified: $Date: 2006/07/22 11:30:32 $
diff --git a/inc/geshi/matlab.php b/inc/geshi/matlab.php index eeba0b92e..be390c6f7 100644 --- a/inc/geshi/matlab.php +++ b/inc/geshi/matlab.php @@ -4,7 +4,7 @@ * -----------
* Author: Florian Knorn (floz@gmx.de)
* Copyright: (c) 2004 Florian Knorn (http://www.florian-knorn.com)
- * Release Version: 1.0.7.12 + * Release Version: 1.0.7.13 * CVS Revision Version: $Revision: 1.15.2.2 $
* Date Started: 2005/02/09
* Last Modified: $Date: 2006/07/22 11:30:25 $
diff --git a/inc/geshi/mpasm.php b/inc/geshi/mpasm.php index 0eab86528..85e68d972 100644 --- a/inc/geshi/mpasm.php +++ b/inc/geshi/mpasm.php @@ -4,7 +4,7 @@ * --------- * Author: Bakalex (bakalex@gmail.com) * Copyright: (c) 2004 Bakalex, Nigel McNie (http://qbnz.com/highlighter) - * Release Version: 1.0.7.12 + * Release Version: 1.0.7.13 * CVS Revision Version: $Revision: 1.13.2.2 $ * Date Started: 2004/12/6 * Last Modified: $Date: 2006/07/22 11:30:27 $ diff --git a/inc/geshi/mysql.php b/inc/geshi/mysql.php index 12b976c0a..48fcd4ef8 100644 --- a/inc/geshi/mysql.php +++ b/inc/geshi/mysql.php @@ -4,7 +4,7 @@ * --------- * Author: Carl F�rstenberg (azatoth@gmail.com) * Copyright: (c) 2005 Carl F�rstenberg, Nigel McNie (http://qbnz.com/highlighter) - * Release Version: 1.0.7.12 + * Release Version: 1.0.7.13 * CVS Revision Version: $Revision: 1.12.2.4 $ * Date Started: 2004/06/04 * Last Modified: $Date: 2006/07/22 11:30:29 $ diff --git a/inc/geshi/nsis.php b/inc/geshi/nsis.php index 872b10ace..e4ac1f4ac 100644 --- a/inc/geshi/nsis.php +++ b/inc/geshi/nsis.php @@ -4,7 +4,7 @@ * --------
* Author: deguix (cevo_deguix@yahoo.com.br), Tux (http://tux.a4.cz/)
* Copyright: (c) 2005 deguix, 2004 Tux (http://tux.a4.cz/), Nigel McNie (http://qbnz.com/highlighter)
- * Release Version: 1.0.7.12 + * Release Version: 1.0.7.13 * CVS Revision Version: $Revision: 1.15.2.3 $
* Date Started: 2005/12/03
* Last Modified: $Date: 2006/07/22 11:30:28 $
diff --git a/inc/geshi/objc.php b/inc/geshi/objc.php index b52fd7d0d..8d73357e8 100644 --- a/inc/geshi/objc.php +++ b/inc/geshi/objc.php @@ -4,7 +4,7 @@ * -------- * 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.7.12 + * Release Version: 1.0.7.13 * CVS Revision Version: $Revision: 1.13.2.2 $ * Date Started: 2004/06/04 * Last Modified: $Date: 2006/07/22 11:30:29 $ diff --git a/inc/geshi/ocaml-brief.php b/inc/geshi/ocaml-brief.php index 9fcdf113d..9f2bb229d 100644 --- a/inc/geshi/ocaml-brief.php +++ b/inc/geshi/ocaml-brief.php @@ -4,7 +4,7 @@ * ----------
* Author: Flaie (fireflaie@gmail.com)
* Copyright: (c) 2005 Flaie, Nigel McNie (http://qbnz.com/highlighter)
- * Release Version: 1.0.7.12 + * Release Version: 1.0.7.13 * CVS Revision Version: $Revision: 1.11.2.2 $
* Date Started: 2005/08/27
* Last Modified: $Date: 2006/07/22 11:30:32 $
diff --git a/inc/geshi/ocaml.php b/inc/geshi/ocaml.php index 9949df704..439e1a847 100644 --- a/inc/geshi/ocaml.php +++ b/inc/geshi/ocaml.php @@ -4,7 +4,7 @@ * ----------
* Author: Flaie (fireflaie@gmail.com)
* Copyright: (c) 2005 Flaie, Nigel McNie (http://qbnz.com/highlighter)
- * Release Version: 1.0.7.12 + * Release Version: 1.0.7.13 * CVS Revision Version: $Revision: 1.11.2.2 $
* Date Started: 2005/08/27
* Last Modified: $Date: 2006/07/22 11:30:24 $
diff --git a/inc/geshi/oobas.php b/inc/geshi/oobas.php index 97b03b722..f627b459a 100644 --- a/inc/geshi/oobas.php +++ b/inc/geshi/oobas.php @@ -4,7 +4,7 @@ * --------- * 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.7.12 + * Release Version: 1.0.7.13 * CVS Revision Version: $Revision: 1.13.2.2 $ * Date Started: 2004/08/30 * Last Modified: $Date: 2006/07/22 11:30:27 $ diff --git a/inc/geshi/oracle8.php b/inc/geshi/oracle8.php index 35312cd34..76514f046 100644 --- a/inc/geshi/oracle8.php +++ b/inc/geshi/oracle8.php @@ -4,7 +4,7 @@ * ----------- * Author: Guy Wicks (Guy.Wicks@rbs.co.uk) * Copyright: (c) 2004 Nigel McNie (http://qbnz.com/highlighter) - * Release Version: 1.0.7.12 + * Release Version: 1.0.7.13 * CVS Revision Version: $Revision: 1.13.2.3 $ * Date Started: 2004/06/04 * Last Modified: $Date: 2006/07/22 11:30:32 $ diff --git a/inc/geshi/pascal.php b/inc/geshi/pascal.php index 39ae53b98..0dd0f589a 100644 --- a/inc/geshi/pascal.php +++ b/inc/geshi/pascal.php @@ -4,7 +4,7 @@ * ---------- * Author: Tux (tux@inamil.cz) * Copyright: (c) 2004 Tux (http://tux.a4.cz/), Nigel McNie (http://qbnz.com/highlighter) - * Release Version: 1.0.7.12 + * Release Version: 1.0.7.13 * CVS Revision Version: $Revision: 1.13.2.2 $ * Date Started: 2004/07/26 * Last Modified: $Date: 2006/07/22 11:30:32 $ diff --git a/inc/geshi/perl.php b/inc/geshi/perl.php index 722ed224f..6c9feb683 100644 --- a/inc/geshi/perl.php +++ b/inc/geshi/perl.php @@ -4,7 +4,7 @@ * -------- * 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.7.12 + * Release Version: 1.0.7.13 * CVS Revision Version: $Revision: 1.14.2.2 $ * Date Started: 2004/08/20 * Last Modified: $Date: 2006/07/22 11:30:26 $ diff --git a/inc/geshi/php-brief.php b/inc/geshi/php-brief.php index 4c77b1324..c421a2ead 100644 --- a/inc/geshi/php-brief.php +++ b/inc/geshi/php-brief.php @@ -4,7 +4,7 @@ * ------------- * Author: Nigel McNie (oracle.shinoda@gmail.com) * Copyright: (c) 2004 Nigel McNie (http://qbnz.com/highlighter/) - * Release Version: 1.0.7.12 + * Release Version: 1.0.7.13 * CVS Revision Version: $Revision: 1.13.2.3 $ * Date Started: 2004/06/02 * Last Modified: $Date: 2006/07/22 11:30:24 $ diff --git a/inc/geshi/php.php b/inc/geshi/php.php index ff493b758..2567214a9 100644 --- a/inc/geshi/php.php +++ b/inc/geshi/php.php @@ -4,7 +4,7 @@ * -------- * Author: Nigel McNie (oracle.shinoda@gmail.com) * Copyright: (c) 2004 Nigel McNie (http://qbnz.com/highlighter/) - * Release Version: 1.0.7.12 + * Release Version: 1.0.7.13 * CVS Revision Version: $Revision: 1.14.2.3 $ * Date Started: 2004/06/20 * Last Modified: $Date: 2006/07/22 11:30:29 $ diff --git a/inc/geshi/python.php b/inc/geshi/python.php index 070817501..eb4d9f72c 100644 --- a/inc/geshi/python.php +++ b/inc/geshi/python.php @@ -4,7 +4,7 @@ * ---------- * 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.7.12 + * Release Version: 1.0.7.13 * CVS Revision Version: $Revision: 1.14.2.3 $ * Date Started: 2004/08/30 * Last Modified: $Date: 2006/07/23 01:48:36 $ diff --git a/inc/geshi/qbasic.php b/inc/geshi/qbasic.php index 82a0f1d7d..4e81c18fa 100644 --- a/inc/geshi/qbasic.php +++ b/inc/geshi/qbasic.php @@ -4,7 +4,7 @@ * ---------- * Author: Nigel McNie (oracle.shinoda@gmail.com) * Copyright: (c) 2004 Nigel McNie (http://qbnz.com/highlighter/) - * Release Version: 1.0.7.12 + * Release Version: 1.0.7.13 * CVS Revision Version: $Revision: 1.14.2.2 $ * Date Started: 2004/06/20 * Last Modified: $Date: 2006/07/22 11:30:25 $ diff --git a/inc/geshi/reg.php b/inc/geshi/reg.php index 6992f77f2..87a258b1a 100644 --- a/inc/geshi/reg.php +++ b/inc/geshi/reg.php @@ -4,7 +4,7 @@ * ------- * Author: Sean Hanna (smokingrope@gmail.com) * Copyright: (c) 2006 Sean Hanna - * Release Version: 1.0.7.12 + * Release Version: 1.0.7.13 * CVS Revision Version: $Revision: 1.2.2.3 $ * Date Started: 03/15/2006 * Last Modified: $Date: 2006/07/22 11:30:25 $ diff --git a/inc/geshi/robots.php b/inc/geshi/robots.php index c30c79b83..6bdc3cdd3 100644 --- a/inc/geshi/robots.php +++ b/inc/geshi/robots.php @@ -4,7 +4,7 @@ * -------- * Author: Christian Lescuyer (cl@goelette.net) * Copyright: (c) 2006 Christian Lescuyer http://xtian.goelette.info - * Release Version: 1.0.7.12 + * Release Version: 1.0.7.13 * CVS Revision Version: $Revision: 1.7.2.3 $ * Date Started: 2006/02/17 * Last Modified: $Date: 2006/07/22 11:30:25 $ diff --git a/inc/geshi/ruby.php b/inc/geshi/ruby.php index adbf2fd04..a8e296844 100644 --- a/inc/geshi/ruby.php +++ b/inc/geshi/ruby.php @@ -4,7 +4,7 @@ * -------- * Author: Amit Gupta (http://blog.igeek.info/) * Copyright: (c) 2005 Amit Gupta (http://blog.igeek.info/) - * Release Version: 1.0.7.12 + * Release Version: 1.0.7.13 * CVS Revision Version: $Revision: 1.13.2.2 $ * Date Started: 2005/09/05 * Last Modified: $Date: 2006/07/22 11:30:32 $ diff --git a/inc/geshi/sas.php b/inc/geshi/sas.php index 38f5ae035..3507cfc63 100644 --- a/inc/geshi/sas.php +++ b/inc/geshi/sas.php @@ -4,7 +4,7 @@ * ------- * Author: Galen Johnson (solitaryr@gmail.com) * Copyright: (c) 2004 Nigel McNie (http://qbnz.com/highlighter/) - * Release Version: 1.0.7.12 + * Release Version: 1.0.7.13 * CVS Revision Version: $Revision: 1.5.2.2 $ * Date Started: 2005/12/27 * Last Modified: $Date: 2006/07/22 11:30:28 $ diff --git a/inc/geshi/scheme.php b/inc/geshi/scheme.php index f54225e22..0b742c712 100644 --- a/inc/geshi/scheme.php +++ b/inc/geshi/scheme.php @@ -4,7 +4,7 @@ * ----------
* Author: Jon Raphaelson (jonraphaelson@gmail.com)
* Copyright: (c) 2005 Jon Raphaelson, Nigel McNie (http://qbnz.com/highlighter)
- * Release Version: 1.0.7.12 + * Release Version: 1.0.7.13 * CVS Revision Version: $Revision: 1.11.2.2 $
* Date Started: 2004/08/30
* Last Modified: $Date: 2006/07/22 11:30:27 $
diff --git a/inc/geshi/sdlbasic.php b/inc/geshi/sdlbasic.php index d4b0c6a68..93f27c747 100644 --- a/inc/geshi/sdlbasic.php +++ b/inc/geshi/sdlbasic.php @@ -4,7 +4,7 @@ * ------------ * Author: Roberto Rossi * Copyright: (c) 2005 Roberto Rossi (http://rsoftware.altervista.org) - * Release Version: 1.0.7.12 + * Release Version: 1.0.7.13 * CVS Revision Version: $Revision: 1.12.2.3 $ * Date Started: 2005/08/19 * Date Modified: $Date: 2006/07/22 11:30:25 $ diff --git a/inc/geshi/smalltalk.php b/inc/geshi/smalltalk.php index b2911736b..a36af5da9 100644 --- a/inc/geshi/smalltalk.php +++ b/inc/geshi/smalltalk.php @@ -4,7 +4,7 @@ * --------
* Author: Bananeweizen (Bananeweizen@gmx.de)
* Copyright: (c) 2005 Bananeweizen (www.bananeweizen.de)
- * Release Version: 1.0.7.12 + * Release Version: 1.0.7.13 * CVS Revision Version: $Revision: 1.1.2.3 $
* Date Started: 2005/03/27
* Last Modified: $Date: 2006/07/22 11:30:33 $
diff --git a/inc/geshi/smarty.php b/inc/geshi/smarty.php index e3e494fdc..0e3305e1e 100644 --- a/inc/geshi/smarty.php +++ b/inc/geshi/smarty.php @@ -4,7 +4,7 @@ * ----------
* Author: Alan Juden (alan@judenware.org)
* Copyright: (c) 2004 Alan Juden, Nigel McNie (http://qbnz.com/highlighter/)
- * Release Version: 1.0.7.12 + * Release Version: 1.0.7.13 * CVS Revision Version: $Revision: 1.15.2.3 $
* Date Started: 2004/07/10
* Last Modified: $Date: 2006/07/22 11:30:31 $
diff --git a/inc/geshi/sql.php b/inc/geshi/sql.php index ca86712e8..530790b42 100644 --- a/inc/geshi/sql.php +++ b/inc/geshi/sql.php @@ -4,7 +4,7 @@ * ------- * Author: Nigel McNie (oracle.shinoda@gmail.com) * Copyright: (c) 2004 Nigel McNie (http://qbnz.com/highlighter) - * Release Version: 1.0.7.12 + * Release Version: 1.0.7.13 * CVS Revision Version: $Revision: 1.15.2.2 $ * Date Started: 2004/06/04 * Last Modified: $Date: 2006/07/22 11:30:28 $ diff --git a/inc/geshi/tcl.php b/inc/geshi/tcl.php index 804fb59bb..403b36f68 100644 --- a/inc/geshi/tcl.php +++ b/inc/geshi/tcl.php @@ -4,7 +4,7 @@ * --------------------------------- * Author: Reid van Melle (rvanmelle@gmail.com) * Copyright: (c) 2004 Reid van Melle (sorry@nowhere) - * Release Version: 1.0.7.12 + * Release Version: 1.0.7.13 * CVS Revision Version: $Revision: 1.2.2.2 $ * Date Started: 2006/05/05 * Last Modified: $Date: 2006/07/22 11:30:32 $ diff --git a/inc/geshi/text.php b/inc/geshi/text.php index d8e8fd9b9..945494e30 100644 --- a/inc/geshi/text.php +++ b/inc/geshi/text.php @@ -4,7 +4,7 @@ * -------- * Author: Sean Hanna (smokingrope@gmail.com) * Copyright: (c) 2006 Sean Hanna - * Release Version: 1.0.7.12 + * Release Version: 1.0.7.13 * CVS Revision Version: $Revision: 1.2.2.3 $ * Date Started: 04/23/2006 * Last Modified: $Date: 2006/07/22 11:30:23 $ diff --git a/inc/geshi/tsql.php b/inc/geshi/tsql.php index 7abb6afe6..d518cb35e 100644 --- a/inc/geshi/tsql.php +++ b/inc/geshi/tsql.php @@ -4,7 +4,7 @@ * -------- * Author: Duncan Lock (dunc@dflock.co.uk) * Copyright: (c) 2006 Duncan Lock (http://dflock.co.uk/), Nigel McNie (http://qbnz.com/highlighter) - * Release Version: 1.0.7.12 + * Release Version: 1.0.7.13 * CVS Revision Version: $Revision: 1.8.2.3 $ * Date Started: 2005/11/22 * Last Modified: $Date: 2006/07/22 11:30:25 $ diff --git a/inc/geshi/vb.php b/inc/geshi/vb.php index 8ebc7d45f..479b4d38e 100644 --- a/inc/geshi/vb.php +++ b/inc/geshi/vb.php @@ -4,7 +4,7 @@ * ------ * 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.7.12 + * Release Version: 1.0.7.13 * CVS Revision Version: $Revision: 1.14.2.2 $ * Date Started: 2004/08/30 * Last Modified: $Date: 2006/07/22 11:30:24 $ diff --git a/inc/geshi/vbnet.php b/inc/geshi/vbnet.php index a1afe2c7e..555f6fbda 100644 --- a/inc/geshi/vbnet.php +++ b/inc/geshi/vbnet.php @@ -4,7 +4,7 @@ * ---------
* Author: Alan Juden (alan@judenware.org)
* Copyright: (c) 2004 Alan Juden, Nigel McNie (http://qbnz.com/highlighter)
- * Release Version: 1.0.7.12 + * Release Version: 1.0.7.13 * CVS Revision Version: $Revision: 1.15.2.2 $
* Date Started: 2004/06/04
* Last Modified: $Date: 2006/07/22 11:30:31 $
diff --git a/inc/geshi/vhdl.php b/inc/geshi/vhdl.php index df9c3f13f..7b4cc8c10 100644 --- a/inc/geshi/vhdl.php +++ b/inc/geshi/vhdl.php @@ -4,7 +4,7 @@ * -------- * Author: Alexander 'E-Razor' Krause (admin@erazor-zone.de) * Copyright: (c) 2005 Alexander Krause - * Release Version: 1.0.7.12 + * Release Version: 1.0.7.13 * CVS Revision Version: $Revision: 1.13.2.3 $ * Date Started: 2005/06/15 * Last Modified: $Date: 2006/07/22 11:30:23 $ diff --git a/inc/geshi/visualfoxpro.php b/inc/geshi/visualfoxpro.php index f884086a5..458022367 100644 --- a/inc/geshi/visualfoxpro.php +++ b/inc/geshi/visualfoxpro.php @@ -4,7 +4,7 @@ * ----------------
* Author: Roberto Armellin (r.armellin@tin.it)
* Copyright: (c) 2004 Roberto Armellin, Nigel McNie (http://qbnz.com/highlighter/)
- * Release Version: 1.0.7.12 + * Release Version: 1.0.7.13 * CVS Revision Version: $Revision: 1.13.2.3 $
* Date Started: 2004/09/17
* Last Modified: 2004/09/18
diff --git a/inc/geshi/winbatch.php b/inc/geshi/winbatch.php index 3b555fa53..d039ebf0c 100644 --- a/inc/geshi/winbatch.php +++ b/inc/geshi/winbatch.php @@ -4,7 +4,7 @@ * ------------ * Author: Craig Storey (storey.craig@gmail.com) * Copyright: (c) 2004 Craig Storey (craig.xcottawa.ca) - * Release Version: 1.0.7.12 + * Release Version: 1.0.7.13 * CVS Revision Version: $Revision: 1.2.2.3 $ * Date Started: 2006/05/19 * Last Modified: $Date: 2006/07/22 11:30:32 $ diff --git a/inc/geshi/xml.php b/inc/geshi/xml.php index 40e66d7d0..2336f24ac 100644 --- a/inc/geshi/xml.php +++ b/inc/geshi/xml.php @@ -4,7 +4,7 @@ * ------- * Author: Nigel McNie (oracle.shinoda@gmail.com) * Copyright: (c) 2004 Nigel McNie (http://qbnz.com/highlighter/) - * Release Version: 1.0.7.12 + * Release Version: 1.0.7.13 * CVS Revision Version: $Revision: 1.18.2.3 $ * Date Started: 2004/09/01 * Last Modified: $Date: 2006/07/22 11:30:28 $ |