From 13b1a1322567521e4ba7a51d2f11aa5b4c24a3b6 Mon Sep 17 00:00:00 2001 From: knut <> Date: Thu, 14 Aug 2008 10:16:47 +0000 Subject: fixed #908 --- framework/Caching/TDbCache.php | 6 +- framework/I18N/core/MessageSource_gettext.php | 4 +- framework/Util/TLogRouter.php | 154 +++++++++++++------------- 3 files changed, 82 insertions(+), 82 deletions(-) (limited to 'framework') diff --git a/framework/Caching/TDbCache.php b/framework/Caching/TDbCache.php index 9c29daa0..2c2c863d 100644 --- a/framework/Caching/TDbCache.php +++ b/framework/Caching/TDbCache.php @@ -4,7 +4,7 @@ * * @author Qiang Xue * @link http://www.pradosoft.com/ - * @copyright Copyright © 2005-2008 PradoSoft + * @copyright Copyright © 2005-2008 PradoSoft * @license http://www.pradosoft.com/license/ * @version $Id$ * @package System.Caching @@ -146,7 +146,7 @@ class TDbCache extends TCache $db->createCommand($sql)->execute(); } else - throw TConfigurationException('db_cachetable_inexistent',$this->_cacheTable); + throw new TConfigurationException('db_cachetable_inexistent',$this->_cacheTable); } parent::init($config); @@ -392,4 +392,4 @@ class TDbCache extends TCache } } -?> +?> diff --git a/framework/I18N/core/MessageSource_gettext.php b/framework/I18N/core/MessageSource_gettext.php index dfcce621..5428e32b 100644 --- a/framework/I18N/core/MessageSource_gettext.php +++ b/framework/I18N/core/MessageSource_gettext.php @@ -450,8 +450,8 @@ class MessageSource_gettext extends MessageSource if($po->save() && $mo->save($mo_file)) return array($variant, $mo_file, $po_file); else - throw TException("Unable to create file $po_file and $mo_file"); + throw new TException("Unable to create file $po_file and $mo_file"); } } -?> +?> diff --git a/framework/Util/TLogRouter.php b/framework/Util/TLogRouter.php index 90f19534..5c755985 100644 --- a/framework/Util/TLogRouter.php +++ b/framework/Util/TLogRouter.php @@ -4,7 +4,7 @@ * * @author Qiang Xue * @link http://www.pradosoft.com/ - * @copyright Copyright © 2005-2008 PradoSoft + * @copyright Copyright © 2005-2008 PradoSoft * @license http://www.pradosoft.com/license/ * @version $Id$ * @package System.Util @@ -757,7 +757,7 @@ class TDbLogRoute extends TLogRoute if($this->_autoCreate) $this->createDbTable(); else - throw TConfigurationException('db_logtable_inexistent',$this->_logTable); + throw new TConfigurationException('db_logtable_inexistent',$this->_logTable); } parent::init($config); @@ -891,79 +891,79 @@ class TDbLogRoute extends TLogRoute } } - -/** - * TFirebugLogRoute class. - * - * TFirebugLogRoute prints selected log messages in the firebug log console. - * - * {@link http://www.getfirebug.com/ FireBug Website} - * - * @author Enrico Stahn , Christophe Boulain - * @version $Id$ - * @package System.Util - * @since 3.1.2 - */ -class TFirebugLogRoute extends TBrowserLogRoute -{ - protected function renderHeader () - { - $string = << -/*getFirebugLoggingFunction($log[1]); - $total = sprintf('%0.6f', $info['total']); - $delta = sprintf('%0.6f', $info['delta']); - $msg = trim($this->formatLogMessage($log[0],$log[1],$log[2],'')); - $msg = preg_replace('/\(line[^\)]+\)$/','',$msg); //remove line number info - $msg = "[{$total}] [{$delta}] ".$msg; // Add time spent and cumulated time spent - $string = $logfunc . '(\'' . addslashes($msg) . '\');' . "\n"; - - return $string; - } - - - protected function renderFooter () - { - $string = << - -EOD; - - return $string; - } - - protected function getFirebugLoggingFunction($level) - { - switch ($level) - { - case TLogger::DEBUG: - case TLogger::INFO: - case TLogger::NOTICE: - return 'console.log'; - case TLogger::WARNING: - return 'console.warn'; - case TLogger::ERROR: - case TLogger::ALERT: - case TLogger::FATAL: - return 'console.error'; - } - return 'console.log'; - } - + +/** + * TFirebugLogRoute class. + * + * TFirebugLogRoute prints selected log messages in the firebug log console. + * + * {@link http://www.getfirebug.com/ FireBug Website} + * + * @author Enrico Stahn , Christophe Boulain + * @version $Id$ + * @package System.Util + * @since 3.1.2 + */ +class TFirebugLogRoute extends TBrowserLogRoute +{ + protected function renderHeader () + { + $string = << +/*getFirebugLoggingFunction($log[1]); + $total = sprintf('%0.6f', $info['total']); + $delta = sprintf('%0.6f', $info['delta']); + $msg = trim($this->formatLogMessage($log[0],$log[1],$log[2],'')); + $msg = preg_replace('/\(line[^\)]+\)$/','',$msg); //remove line number info + $msg = "[{$total}] [{$delta}] ".$msg; // Add time spent and cumulated time spent + $string = $logfunc . '(\'' . addslashes($msg) . '\');' . "\n"; + + return $string; + } + + + protected function renderFooter () + { + $string = << + +EOD; + + return $string; + } + + protected function getFirebugLoggingFunction($level) + { + switch ($level) + { + case TLogger::DEBUG: + case TLogger::INFO: + case TLogger::NOTICE: + return 'console.log'; + case TLogger::WARNING: + return 'console.warn'; + case TLogger::ERROR: + case TLogger::ALERT: + case TLogger::FATAL: + return 'console.error'; + } + return 'console.log'; + } + } -?> +?> -- cgit v1.2.3