diff -r 199b9708f4a2 -r 854eecfada20 includes/debugger/debugConsole.config.php --- a/includes/debugger/debugConsole.config.php Sun Dec 02 16:00:56 2007 -0500 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,196 +0,0 @@ - - * @see - * @version 1.2.1 - * @package debugConsole_1.2.1 - */ - -/** - * config container for debugConsole - * - * @var array - */ -$_debugConsoleConfig = array(); - -/** - * use debugConsole - */ -$_debugConsoleConfig['active'] = TRUE; - -/** - * restrict access - */ -$_debugConsoleConfig['restrictions'] = array ( - 'restrictAccess' => FALSE, - 'allowedClientAdresses' => array('127.0.0.1') -); - -/** - * set timezone, used for PHP >= 5.1.x - */ -putenv ('TZ=America/New_York'); - -/** - * focus debugConsole at end of debug-run - */ -$_debugConsoleConfig['focus'] = TRUE; - - -/** - * logfile configuration - */ -$_debugConsoleConfig['logfile'] = array ( - 'enable' => FALSE, - 'path' => './', - 'filename' => 'log.txt', - 'disablePopup' => FALSE -); - -/** - * show or hide certain events - */ -$_debugConsoleConfig['filters'] = array ( - 'debug' => TRUE, - 'watches' => TRUE, - 'checkpoints' => TRUE, - 'timers' => TRUE, - 'php_notices' => TRUE, - 'php_warnings' => TRUE, - 'php_errors' => TRUE, - 'php_suggestions' => FALSE -); - -/** - * popup dimensions in px - */ -$_debugConsoleConfig['dimensions'] = array ( - 'width' => 300, - 'height' => 525 -); - -/** - * javascript snippets, do not touch! - */ -$_debugConsoleConfig['javascripts'] = array ( - 'openTag' => '', - 'openPopup' => 'debugConsole = window.open', - 'closePopup' => 'debugConsole.close()', - 'write' => 'debugConsole.document.write', - 'scroll' => 'debugConsole.scrollBy', - 'focus' => 'debugConsole.focus()' -); - -/** - * html snippets, do not touch! - */ -$_debugConsoleConfig['html'] = array ( - 'header' => ' - - - - debugConsole - - - - - ', - 'footer' => '' -); -?> \ No newline at end of file