use hex codes

This commit is contained in:
Alexander M. Turek
2002-06-12 19:51:46 +00:00
parent 77bdcc16a5
commit 0a5eceab0d
2 changed files with 8 additions and 7 deletions

View File

@@ -10,6 +10,9 @@ $Source$
Bora Alioglu <bora@risc01.ktu.edu.tr>. Bora Alioglu <bora@risc01.ktu.edu.tr>.
* lang/german.inc.php3: Translated $strMissingBracket. * lang/german.inc.php3: Translated $strMissingBracket.
* lang/english.inc.php3: Reordered strings. * lang/english.inc.php3: Reordered strings.
* config.inc.php3:
- Use hex codes for colors;
- Removed a dublicate.
2002-06-12 Mike Beck <mikebeck@users.sourceforge.net> 2002-06-12 Mike Beck <mikebeck@users.sourceforge.net>
Syntaxcoloring for SQL - Statements Syntaxcoloring for SQL - Statements

View File

@@ -227,12 +227,11 @@ $cfg['DefaultDisplay'] = 'horizontal'; // default display direction (horizo
$cfg['RepeatCells'] = 100; // repeat header names every X cells? (0 = deactivate) $cfg['RepeatCells'] = 100; // repeat header names every X cells? (0 = deactivate)
$cfg['UseSyntaxColoring'] = TRUE; // use syntaxcoloring on output of SQL, might be a little slower $cfg['UseSyntaxColoring'] = TRUE; // use syntaxcoloring on output of SQL, might be a little slower
// Colors used for Syntaxcoloring of SQL Statements $cfg['colorFunctions'] = '#FF0000'; // Colors used for Syntaxcoloring of SQL Statements
$cfg['colorFunctions'] = 'red'; $cfg['colorKeywords'] = '#0000FF';
$cfg['colorKeywords'] = 'blue'; $cfg['colorStrings'] = '#008000';
$cfg['colorStrings'] = 'green';
$cfg['colorColType'] = '#FF9900'; $cfg['colorColType'] = '#FF9900';
$cfg['colorAdd'] = 'blue'; $cfg['colorAdd'] = '#0000FF';
/** /**
@@ -353,7 +352,6 @@ if($cfg['UseSyntaxColoring']) {
'ON', 'ON',
'JOIN', 'JOIN',
'BETWEEN', 'BETWEEN',
'BETWEEN',
'IN', 'IN',
'IF', 'IF',
'ELSE', 'ELSE',