*** empty log message ***

This commit is contained in:
Sebastian Mendel
2006-04-26 14:09:29 +00:00
commit c0f3ec581a
1963 changed files with 13385 additions and 0 deletions

43
xp_basic/layout.inc.php Normal file
View File

@@ -0,0 +1,43 @@
<?php
$cfg['LeftWidth'] = 260; // left frame width
/* colors */
$cfg['LeftBgColor'] = '#6375D6'; // background color for the left frame
$cfg['RightBgColor'] = '#ffffff'; // background color for the right frame
$cfg['RightBgImage'] = ''; // path to a background image for the right frame
// (leave blank for no background image)
$cfg['LeftPointerColor'] = '#CCFFCC'; // color of the pointer in left frame
$cfg['Border'] = 0; // border width on tables
$cfg['ThBgcolor'] = '#EAE6D0'; // table header row colour
$cfg['BgcolorOne'] = '#EAE6D0'; // table data row colour
$cfg['BgcolorTwo'] = '#F8F8F1'; // table data row colour, alternate
$cfg['BrowsePointerColor'] = ''; // color of the pointer in browse mode
$cfg['BrowseMarkerColor'] = 'yellow'; // color of the marker (visually marks row
// by clicking on it) in browse mode
/**
* SQL Parser Settings
*/
$cfg['SQP']['fmtColor'] = array( // Syntax colouring data
'comment' => '#808000',
'comment_mysql' => '',
'comment_ansi' => '',
'comment_c' => '',
'digit' => '',
'digit_hex' => 'teal',
'digit_integer' => 'teal',
'digit_float' => 'aqua',
'punct' => 'fuchsia',
'alpha' => '',
'alpha_columnType' => '#FF9900',
'alpha_columnAttrib' => '#0000FF',
'alpha_reservedWord' => '#990099',
'alpha_functionName' => '#FF0000',
'alpha_identifier' => 'black',
'alpha_charset' => '#6495ed',
'alpha_variable' => '#800000',
'quote' => '#008000',
'quote_double' => '',
'quote_single' => '',
'quote_backtick' => ''
);
?>