use hex codes
This commit is contained in:
@@ -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
|
||||||
|
@@ -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,13 +352,12 @@ if($cfg['UseSyntaxColoring']) {
|
|||||||
'ON',
|
'ON',
|
||||||
'JOIN',
|
'JOIN',
|
||||||
'BETWEEN',
|
'BETWEEN',
|
||||||
'BETWEEN',
|
|
||||||
'IN',
|
'IN',
|
||||||
'IF',
|
'IF',
|
||||||
'ELSE',
|
'ELSE',
|
||||||
'SET'
|
'SET'
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
* Unset magic_quotes_runtime - do not change!
|
* Unset magic_quotes_runtime - do not change!
|
||||||
*/
|
*/
|
||||||
|
Reference in New Issue
Block a user