summaryrefslogtreecommitdiff
path: root/inc/geshi/mysql.php
diff options
context:
space:
mode:
authorAndreas Gohr <andi@splitbrain.org>2006-07-23 22:32:32 +0200
committerAndreas Gohr <andi@splitbrain.org>2006-07-23 22:32:32 +0200
commit850d6bf6605add7df9c86492766d6427b48ef994 (patch)
tree8fee9520e2652ac723356e6abc6c70e1d9d2202f /inc/geshi/mysql.php
parentf29dc969d01ee203ff62ce2fd38ba3d7d66935a9 (diff)
downloadrpg-850d6bf6605add7df9c86492766d6427b48ef994.tar.gz
rpg-850d6bf6605add7df9c86492766d6427b48ef994.tar.bz2
GeSHi update to 1.0.7.12
darcs-hash:20060723203232-7ad00-a675d33962148272e5dd13ac2190ef259f8eaad2.gz
Diffstat (limited to 'inc/geshi/mysql.php')
-rw-r--r--inc/geshi/mysql.php19
1 files changed, 13 insertions, 6 deletions
diff --git a/inc/geshi/mysql.php b/inc/geshi/mysql.php
index 2c819c205..12b976c0a 100644
--- a/inc/geshi/mysql.php
+++ b/inc/geshi/mysql.php
@@ -4,10 +4,10 @@
* ---------
* Author: Carl F�rstenberg (azatoth@gmail.com)
* Copyright: (c) 2005 Carl F�rstenberg, Nigel McNie (http://qbnz.com/highlighter)
- * Release Version: 1.0.7.11
- * CVS Revision Version: $Revision: 1.12 $
+ * Release Version: 1.0.7.12
+ * CVS Revision Version: $Revision: 1.12.2.4 $
* Date Started: 2004/06/04
- * Last Modified: $Date: 2006/05/21 00:06:56 $
+ * Last Modified: $Date: 2006/07/22 11:30:29 $
*
* MySQL language file for GeSHi.
*
@@ -100,9 +100,13 @@ $language_data = array (
4 => array(
'MICROSECOND', 'SECOND', 'MINUTE', 'HOUR', 'DAY', 'WEEK', 'MONTH', 'QUARTER', 'YEAR', 'SECOND_MICROSECOND',
'MINUTE_MICROSECOND', 'MINUTE_SECOND', 'HOUR_MICROSECOND', 'HOUR_SECOND', 'HOUR_MINUTE', 'DAY_MICROSECOND',
- 'DAY_SECOND', 'DAY_MINUTE', 'DAY_HOUR', 'YEAR_MONTH',
- ),
+ 'DAY_SECOND', 'DAY_MINUTE', 'DAY_HOUR', 'YEAR_MONTH'
+ ),
+ 5 => array(
+ 'OR', 'XOR', 'AND', 'NOT', 'BETWEEN', 'IS', 'LIKE', 'REGEXP', 'IN', 'DIV',
+ 'MOD', 'BINARY', 'COLLATE', 'LIMIT', 'OFFSET'
),
+ ),
'SYMBOLS' => array(
':=',
'||', 'OR', 'XOR',
@@ -127,15 +131,18 @@ $language_data = array (
2 => false,
3 => false,
4 => false,
+ 5 => false
),
'STYLES' => array(
'KEYWORDS' => array(
1 => 'color: #993333; font-weight: bold;',
2 => 'color: #aa9933; font-weight: bold;',
3 => 'color: #aa3399; font-weight: bold;',
- 4 => 'color: #33aa99; font-weight: bold;',
+ 4 => 'color: #33aa99; font-weight: bold;',
+ 5 => 'color: #993333; font-weight: bold;'
),
'COMMENTS' => array(
+ 'MULTI' => 'color: #808080; font-style: italic;',
1 => 'color: #808080; font-style: italic;',
2 => 'color: #808080; font-style: italic;'
),