1
0
mirror of https://github.com/dg/dibi.git synced 2025-08-06 14:16:39 +02:00

modified SVN properties

This commit is contained in:
David Grudl
2008-07-17 03:51:29 +00:00
parent 7f0fa2e75e
commit c0bd3761de
45 changed files with 8225 additions and 8227 deletions

View File

@@ -8,11 +8,11 @@
* This source file is subject to the "Nette license" that is bundled * This source file is subject to the "Nette license" that is bundled
* with this package in the file license.txt. * with this package in the file license.txt.
* *
* For more information please see http://nettephp.com/ * For more information please see http://nettephp.com
* *
* @copyright Copyright (c) 2004, 2008 David Grudl * @copyright Copyright (c) 2004, 2008 David Grudl
* @license http://nettephp.com/license Nette license * @license http://nettephp.com/license Nette license
* @link http://nettephp.com/ * @link http://nettephp.com
* @category Nette * @category Nette
* @package Nette * @package Nette
*/ */
@@ -27,7 +27,6 @@
* @author David Grudl * @author David Grudl
* @copyright Copyright (c) 2004, 2008 David Grudl * @copyright Copyright (c) 2004, 2008 David Grudl
* @package Nette * @package Nette
* @version $Revision$ $Date$
*/ */
interface IDebuggable interface IDebuggable
{ {

View File

@@ -8,11 +8,11 @@
* This source file is subject to the "Nette license" that is bundled * This source file is subject to the "Nette license" that is bundled
* with this package in the file license.txt. * with this package in the file license.txt.
* *
* For more information please see http://nettephp.com/ * For more information please see http://nettephp.com
* *
* @copyright Copyright (c) 2004, 2008 David Grudl * @copyright Copyright (c) 2004, 2008 David Grudl
* @license http://nettephp.com/license Nette license * @license http://nettephp.com/license Nette license
* @link http://nettephp.com/ * @link http://nettephp.com
* @category Nette * @category Nette
* @package Nette * @package Nette
*/ */
@@ -59,7 +59,6 @@
* @author David Grudl * @author David Grudl
* @copyright Copyright (c) 2004, 2008 David Grudl * @copyright Copyright (c) 2004, 2008 David Grudl
* @package Nette * @package Nette
* @version $Revision$ $Date$
*/ */
abstract class Object abstract class Object
{ {

View File

@@ -9,14 +9,15 @@
* This source file is subject to the "dibi license" that is bundled * This source file is subject to the "dibi license" that is bundled
* with this package in the file license.txt. * with this package in the file license.txt.
* *
* For more information please see http://dibiphp.com/ * For more information please see http://dibiphp.com
* *
* @author David Grudl * @author David Grudl
* @copyright Copyright (c) 2005, 2008 David Grudl * @copyright Copyright (c) 2005, 2008 David Grudl
* @license http://dibiphp.com/license dibi license * @license http://dibiphp.com/license dibi license
* @version 0.9 (Revision: $WCREV$, Date: $WCDATE$) * @version 0.9 (Revision: $WCREV$, Date: $WCDATE$)
* @link http://dibiphp.com/ * @link http://dibiphp.com
* @package dibi * @package dibi
* @version $Id$
*/ */
@@ -89,7 +90,6 @@ require_once dirname(__FILE__) . '/libs/DibiFluent.php';
* @author David Grudl * @author David Grudl
* @copyright Copyright (c) 2005, 2008 David Grudl * @copyright Copyright (c) 2005, 2008 David Grudl
* @package dibi * @package dibi
* @version $Revision$ $Date$
*/ */
class dibi class dibi
{ {
@@ -112,7 +112,8 @@ class dibi
* dibi version * dibi version
*/ */
const const
VERSION = '0.9 (Revision: $WCREV$, Date: $WCDATE$)'; VERSION = '0.9',
REVISION = '$WCREV$ released on $WCDATE$';
/** /**
@@ -204,10 +205,6 @@ class dibi
*/ */
public static function connect($config = array(), $name = 0) public static function connect($config = array(), $name = 0)
{ {
if (class_exists(/*Nette::*/'Debug', FALSE)) {
/*Nette::*/Debug::addColophon(array(__CLASS__, 'getColophon'));
}
return self::$connection = self::$registry[$name] = new DibiConnection($config, $name); return self::$connection = self::$registry[$name] = new DibiConnection($config, $name);
} }
@@ -788,7 +785,7 @@ class dibi
. (dibi::$totalTime === NULL ? '' : ', elapsed time: ' . sprintf('%0.3f', dibi::$totalTime * 1000) . ' ms'), . (dibi::$totalTime === NULL ? '' : ', elapsed time: ' . sprintf('%0.3f', dibi::$totalTime * 1000) . ' ms'),
); );
if ($sender === 'bluescreen') { if ($sender === 'bluescreen') {
$arr[] = 'dibi version ' . dibi::VERSION; $arr[] = 'dibi ' . dibi::VERSION . ' (revision ' . dibi::REVISION . ')';
} }
return $arr; return $arr;
} }

View File

@@ -9,12 +9,13 @@
* This source file is subject to the "dibi license" that is bundled * This source file is subject to the "dibi license" that is bundled
* with this package in the file license.txt. * with this package in the file license.txt.
* *
* For more information please see http://dibiphp.com/ * For more information please see http://dibiphp.com
* *
* @copyright Copyright (c) 2005, 2008 David Grudl * @copyright Copyright (c) 2005, 2008 David Grudl
* @license http://dibiphp.com/license dibi license * @license http://dibiphp.com/license dibi license
* @link http://dibiphp.com/ * @link http://dibiphp.com
* @package dibi * @package dibi
* @version $Id$
*/ */
@@ -32,7 +33,6 @@
* @author David Grudl * @author David Grudl
* @copyright Copyright (c) 2005, 2008 David Grudl * @copyright Copyright (c) 2005, 2008 David Grudl
* @package dibi * @package dibi
* @version $Revision$ $Date$
*/ */
class DibiMsSqlDriver extends /*Nette::*/Object implements IDibiDriver class DibiMsSqlDriver extends /*Nette::*/Object implements IDibiDriver
{ {

View File

@@ -9,12 +9,13 @@
* This source file is subject to the "dibi license" that is bundled * This source file is subject to the "dibi license" that is bundled
* with this package in the file license.txt. * with this package in the file license.txt.
* *
* For more information please see http://dibiphp.com/ * For more information please see http://dibiphp.com
* *
* @copyright Copyright (c) 2005, 2008 David Grudl * @copyright Copyright (c) 2005, 2008 David Grudl
* @license http://dibiphp.com/license dibi license * @license http://dibiphp.com/license dibi license
* @link http://dibiphp.com/ * @link http://dibiphp.com
* @package dibi * @package dibi
* @version $Id$
*/ */
@@ -38,7 +39,6 @@
* @author David Grudl * @author David Grudl
* @copyright Copyright (c) 2005, 2008 David Grudl * @copyright Copyright (c) 2005, 2008 David Grudl
* @package dibi * @package dibi
* @version $Revision$ $Date$
*/ */
class DibiMySqlDriver extends /*Nette::*/Object implements IDibiDriver class DibiMySqlDriver extends /*Nette::*/Object implements IDibiDriver
{ {

View File

@@ -9,12 +9,13 @@
* This source file is subject to the "dibi license" that is bundled * This source file is subject to the "dibi license" that is bundled
* with this package in the file license.txt. * with this package in the file license.txt.
* *
* For more information please see http://dibiphp.com/ * For more information please see http://dibiphp.com
* *
* @copyright Copyright (c) 2005, 2008 David Grudl * @copyright Copyright (c) 2005, 2008 David Grudl
* @license http://dibiphp.com/license dibi license * @license http://dibiphp.com/license dibi license
* @link http://dibiphp.com/ * @link http://dibiphp.com
* @package dibi * @package dibi
* @version $Id$
*/ */
@@ -38,7 +39,6 @@
* @author David Grudl * @author David Grudl
* @copyright Copyright (c) 2005, 2008 David Grudl * @copyright Copyright (c) 2005, 2008 David Grudl
* @package dibi * @package dibi
* @version $Revision$ $Date$
*/ */
class DibiMySqliDriver extends /*Nette::*/Object implements IDibiDriver class DibiMySqliDriver extends /*Nette::*/Object implements IDibiDriver
{ {

View File

@@ -9,12 +9,13 @@
* This source file is subject to the "dibi license" that is bundled * This source file is subject to the "dibi license" that is bundled
* with this package in the file license.txt. * with this package in the file license.txt.
* *
* For more information please see http://dibiphp.com/ * For more information please see http://dibiphp.com
* *
* @copyright Copyright (c) 2005, 2008 David Grudl * @copyright Copyright (c) 2005, 2008 David Grudl
* @license http://dibiphp.com/license dibi license * @license http://dibiphp.com/license dibi license
* @link http://dibiphp.com/ * @link http://dibiphp.com
* @package dibi * @package dibi
* @version $Id$
*/ */
@@ -31,7 +32,6 @@
* @author David Grudl * @author David Grudl
* @copyright Copyright (c) 2005, 2008 David Grudl * @copyright Copyright (c) 2005, 2008 David Grudl
* @package dibi * @package dibi
* @version $Revision$ $Date$
*/ */
class DibiOdbcDriver extends /*Nette::*/Object implements IDibiDriver class DibiOdbcDriver extends /*Nette::*/Object implements IDibiDriver
{ {

View File

@@ -9,12 +9,13 @@
* This source file is subject to the "dibi license" that is bundled * This source file is subject to the "dibi license" that is bundled
* with this package in the file license.txt. * with this package in the file license.txt.
* *
* For more information please see http://dibiphp.com/ * For more information please see http://dibiphp.com
* *
* @copyright Copyright (c) 2005, 2008 David Grudl * @copyright Copyright (c) 2005, 2008 David Grudl
* @license http://dibiphp.com/license dibi license * @license http://dibiphp.com/license dibi license
* @link http://dibiphp.com/ * @link http://dibiphp.com
* @package dibi * @package dibi
* @version $Id$
*/ */
@@ -31,7 +32,6 @@
* @author David Grudl * @author David Grudl
* @copyright Copyright (c) 2005, 2008 David Grudl * @copyright Copyright (c) 2005, 2008 David Grudl
* @package dibi * @package dibi
* @version $Revision$ $Date$
*/ */
class DibiOracleDriver extends /*Nette::*/Object implements IDibiDriver class DibiOracleDriver extends /*Nette::*/Object implements IDibiDriver
{ {

View File

@@ -9,12 +9,13 @@
* This source file is subject to the "dibi license" that is bundled * This source file is subject to the "dibi license" that is bundled
* with this package in the file license.txt. * with this package in the file license.txt.
* *
* For more information please see http://dibiphp.com/ * For more information please see http://dibiphp.com
* *
* @copyright Copyright (c) 2005, 2008 David Grudl * @copyright Copyright (c) 2005, 2008 David Grudl
* @license http://dibiphp.com/license dibi license * @license http://dibiphp.com/license dibi license
* @link http://dibiphp.com/ * @link http://dibiphp.com
* @package dibi * @package dibi
* @version $Id$
*/ */
@@ -32,7 +33,6 @@
* @author David Grudl * @author David Grudl
* @copyright Copyright (c) 2005, 2008 David Grudl * @copyright Copyright (c) 2005, 2008 David Grudl
* @package dibi * @package dibi
* @version $Revision$ $Date$
*/ */
class DibiPdoDriver extends /*Nette::*/Object implements IDibiDriver class DibiPdoDriver extends /*Nette::*/Object implements IDibiDriver
{ {

View File

@@ -9,12 +9,13 @@
* This source file is subject to the "dibi license" that is bundled * This source file is subject to the "dibi license" that is bundled
* with this package in the file license.txt. * with this package in the file license.txt.
* *
* For more information please see http://dibiphp.com/ * For more information please see http://dibiphp.com
* *
* @copyright Copyright (c) 2005, 2008 David Grudl * @copyright Copyright (c) 2005, 2008 David Grudl
* @license http://dibiphp.com/license dibi license * @license http://dibiphp.com/license dibi license
* @link http://dibiphp.com/ * @link http://dibiphp.com
* @package dibi * @package dibi
* @version $Id$
*/ */
@@ -32,7 +33,6 @@
* @author David Grudl * @author David Grudl
* @copyright Copyright (c) 2005, 2008 David Grudl * @copyright Copyright (c) 2005, 2008 David Grudl
* @package dibi * @package dibi
* @version $Revision$ $Date$
*/ */
class DibiPostgreDriver extends /*Nette::*/Object implements IDibiDriver class DibiPostgreDriver extends /*Nette::*/Object implements IDibiDriver
{ {

View File

@@ -9,12 +9,13 @@
* This source file is subject to the "dibi license" that is bundled * This source file is subject to the "dibi license" that is bundled
* with this package in the file license.txt. * with this package in the file license.txt.
* *
* For more information please see http://dibiphp.com/ * For more information please see http://dibiphp.com
* *
* @copyright Copyright (c) 2005, 2008 David Grudl * @copyright Copyright (c) 2005, 2008 David Grudl
* @license http://dibiphp.com/license dibi license * @license http://dibiphp.com/license dibi license
* @link http://dibiphp.com/ * @link http://dibiphp.com
* @package dibi * @package dibi
* @version $Id$
*/ */
@@ -32,7 +33,6 @@
* @author David Grudl * @author David Grudl
* @copyright Copyright (c) 2005, 2008 David Grudl * @copyright Copyright (c) 2005, 2008 David Grudl
* @package dibi * @package dibi
* @version $Revision$ $Date$
*/ */
class DibiSqliteDriver extends /*Nette::*/Object implements IDibiDriver class DibiSqliteDriver extends /*Nette::*/Object implements IDibiDriver
{ {

View File

@@ -9,12 +9,13 @@
* This source file is subject to the "dibi license" that is bundled * This source file is subject to the "dibi license" that is bundled
* with this package in the file license.txt. * with this package in the file license.txt.
* *
* For more information please see http://dibiphp.com/ * For more information please see http://dibiphp.com
* *
* @copyright Copyright (c) 2005, 2008 David Grudl * @copyright Copyright (c) 2005, 2008 David Grudl
* @license http://dibiphp.com/license dibi license * @license http://dibiphp.com/license dibi license
* @link http://dibiphp.com/ * @link http://dibiphp.com
* @package dibi * @package dibi
* @version $Id$
*/ */
@@ -25,7 +26,6 @@
* @author David Grudl * @author David Grudl
* @copyright Copyright (c) 2005, 2008 David Grudl * @copyright Copyright (c) 2005, 2008 David Grudl
* @package dibi * @package dibi
* @version $Revision$ $Date$
*/ */
class DibiConnection extends /*Nette::*/Object class DibiConnection extends /*Nette::*/Object
{ {
@@ -64,6 +64,10 @@ class DibiConnection extends /*Nette::*/Object
*/ */
public function __construct($config, $name = NULL) public function __construct($config, $name = NULL)
{ {
if (class_exists(/*Nette::*/'Debug', FALSE)) {
/*Nette::*/Debug::addColophon(array('dibi', 'getColophon'));
}
// DSN string // DSN string
if (is_string($config)) { if (is_string($config)) {
parse_str($config, $config); parse_str($config, $config);

View File

@@ -9,12 +9,13 @@
* This source file is subject to the "dibi license" that is bundled * This source file is subject to the "dibi license" that is bundled
* with this package in the file license.txt. * with this package in the file license.txt.
* *
* For more information please see http://dibiphp.com/ * For more information please see http://dibiphp.com
* *
* @copyright Copyright (c) 2005, 2008 David Grudl * @copyright Copyright (c) 2005, 2008 David Grudl
* @license http://dibiphp.com/license dibi license * @license http://dibiphp.com/license dibi license
* @link http://dibiphp.com/ * @link http://dibiphp.com
* @package dibi * @package dibi
* @version $Id$
*/ */
@@ -25,7 +26,6 @@
* @author David Grudl * @author David Grudl
* @copyright Copyright (c) 2005, 2008 David Grudl * @copyright Copyright (c) 2005, 2008 David Grudl
* @package dibi * @package dibi
* @version $Revision$ $Date$
*/ */
class DibiDataSource extends /*Nette::*/Object implements IDataSource class DibiDataSource extends /*Nette::*/Object implements IDataSource
{ {

View File

@@ -9,12 +9,13 @@
* This source file is subject to the "dibi license" that is bundled * This source file is subject to the "dibi license" that is bundled
* with this package in the file license.txt. * with this package in the file license.txt.
* *
* For more information please see http://dibiphp.com/ * For more information please see http://dibiphp.com
* *
* @copyright Copyright (c) 2005, 2008 David Grudl * @copyright Copyright (c) 2005, 2008 David Grudl
* @license http://dibiphp.com/license dibi license * @license http://dibiphp.com/license dibi license
* @link http://dibiphp.com/ * @link http://dibiphp.com
* @package dibi * @package dibi
* @version $Id$
*/ */
@@ -25,7 +26,6 @@
* @author David Grudl * @author David Grudl
* @copyright Copyright (c) 2005, 2008 David Grudl * @copyright Copyright (c) 2005, 2008 David Grudl
* @package dibi * @package dibi
* @version $Revision$ $Date$
*/ */
class DibiException extends Exception class DibiException extends Exception
{ {
@@ -40,7 +40,6 @@ class DibiException extends Exception
* @author David Grudl * @author David Grudl
* @copyright Copyright (c) 2005, 2008 David Grudl * @copyright Copyright (c) 2005, 2008 David Grudl
* @package dibi * @package dibi
* @version $Revision$ $Date$
*/ */
class DibiDriverException extends DibiException implements /*Nette::*/IDebuggable class DibiDriverException extends DibiException implements /*Nette::*/IDebuggable
{ {

View File

@@ -9,12 +9,13 @@
* This source file is subject to the "dibi license" that is bundled * This source file is subject to the "dibi license" that is bundled
* with this package in the file license.txt. * with this package in the file license.txt.
* *
* For more information please see http://dibiphp.com/ * For more information please see http://dibiphp.com
* *
* @copyright Copyright (c) 2005, 2008 David Grudl * @copyright Copyright (c) 2005, 2008 David Grudl
* @license http://dibiphp.com/license dibi license * @license http://dibiphp.com/license dibi license
* @link http://dibiphp.com/ * @link http://dibiphp.com
* @package dibi * @package dibi
* @version $Id$
*/ */
@@ -25,7 +26,6 @@
* @author David Grudl * @author David Grudl
* @copyright Copyright (c) 2005, 2008 David Grudl * @copyright Copyright (c) 2005, 2008 David Grudl
* @package dibi * @package dibi
* @version $Revision$ $Date$
*/ */
class DibiFluent extends /*Nette::*/Object class DibiFluent extends /*Nette::*/Object
{ {

View File

@@ -9,12 +9,13 @@
* This source file is subject to the "dibi license" that is bundled * This source file is subject to the "dibi license" that is bundled
* with this package in the file license.txt. * with this package in the file license.txt.
* *
* For more information please see http://dibiphp.com/ * For more information please see http://dibiphp.com
* *
* @copyright Copyright (c) 2005, 2008 David Grudl * @copyright Copyright (c) 2005, 2008 David Grudl
* @license http://dibiphp.com/license dibi license * @license http://dibiphp.com/license dibi license
* @link http://dibiphp.com/ * @link http://dibiphp.com
* @package dibi * @package dibi
* @version $Id$
*/ */
@@ -25,7 +26,6 @@
* @author David Grudl * @author David Grudl
* @copyright Copyright (c) 2005, 2008 David Grudl * @copyright Copyright (c) 2005, 2008 David Grudl
* @package dibi * @package dibi
* @version $Revision$ $Date$
*/ */
final class DibiLogger extends /*Nette::*/Object final class DibiLogger extends /*Nette::*/Object
{ {

View File

@@ -9,12 +9,13 @@
* This source file is subject to the "dibi license" that is bundled * This source file is subject to the "dibi license" that is bundled
* with this package in the file license.txt. * with this package in the file license.txt.
* *
* For more information please see http://dibiphp.com/ * For more information please see http://dibiphp.com
* *
* @copyright Copyright (c) 2005, 2008 David Grudl * @copyright Copyright (c) 2005, 2008 David Grudl
* @license http://dibiphp.com/license dibi license * @license http://dibiphp.com/license dibi license
* @link http://dibiphp.com/ * @link http://dibiphp.com
* @package dibi * @package dibi
* @version $Id$
*/ */
@@ -39,7 +40,6 @@
* @author David Grudl * @author David Grudl
* @copyright Copyright (c) 2005, 2008 David Grudl * @copyright Copyright (c) 2005, 2008 David Grudl
* @package dibi * @package dibi
* @version $Revision$ $Date$
*/ */
class DibiResult extends /*Nette::*/Object implements IDataSource class DibiResult extends /*Nette::*/Object implements IDataSource
{ {

View File

@@ -9,12 +9,13 @@
* This source file is subject to the "dibi license" that is bundled * This source file is subject to the "dibi license" that is bundled
* with this package in the file license.txt. * with this package in the file license.txt.
* *
* For more information please see http://dibiphp.com/ * For more information please see http://dibiphp.com
* *
* @copyright Copyright (c) 2005, 2008 David Grudl * @copyright Copyright (c) 2005, 2008 David Grudl
* @license http://dibiphp.com/license dibi license * @license http://dibiphp.com/license dibi license
* @link http://dibiphp.com/ * @link http://dibiphp.com
* @package dibi * @package dibi
* @version $Id$
*/ */
@@ -24,7 +25,6 @@
* @author David Grudl * @author David Grudl
* @copyright Copyright (c) 2005, 2008 David Grudl * @copyright Copyright (c) 2005, 2008 David Grudl
* @package dibi * @package dibi
* @version $Revision$ $Date$
*/ */
abstract class DibiTable extends /*Nette::*/Object abstract class DibiTable extends /*Nette::*/Object
{ {

View File

@@ -9,12 +9,13 @@
* This source file is subject to the "dibi license" that is bundled * This source file is subject to the "dibi license" that is bundled
* with this package in the file license.txt. * with this package in the file license.txt.
* *
* For more information please see http://dibiphp.com/ * For more information please see http://dibiphp.com
* *
* @copyright Copyright (c) 2005, 2008 David Grudl * @copyright Copyright (c) 2005, 2008 David Grudl
* @license http://dibiphp.com/license dibi license * @license http://dibiphp.com/license dibi license
* @link http://dibiphp.com/ * @link http://dibiphp.com
* @package dibi * @package dibi
* @version $Id$
*/ */
@@ -25,7 +26,6 @@
* @author David Grudl * @author David Grudl
* @copyright Copyright (c) 2005, 2008 David Grudl * @copyright Copyright (c) 2005, 2008 David Grudl
* @package dibi * @package dibi
* @version $Revision$ $Date$
*/ */
final class DibiTranslator extends /*Nette::*/Object final class DibiTranslator extends /*Nette::*/Object
{ {

View File

@@ -9,12 +9,13 @@
* This source file is subject to the "dibi license" that is bundled * This source file is subject to the "dibi license" that is bundled
* with this package in the file license.txt. * with this package in the file license.txt.
* *
* For more information please see http://dibiphp.com/ * For more information please see http://dibiphp.com
* *
* @copyright Copyright (c) 2005, 2008 David Grudl * @copyright Copyright (c) 2005, 2008 David Grudl
* @license http://dibiphp.com/license dibi license * @license http://dibiphp.com/license dibi license
* @link http://dibiphp.com/ * @link http://dibiphp.com
* @package dibi * @package dibi
* @version $Id$
*/ */

View File

@@ -9,12 +9,13 @@
* This source file is subject to the "dibi license" that is bundled * This source file is subject to the "dibi license" that is bundled
* with this package in the file license.txt. * with this package in the file license.txt.
* *
* For more information please see http://dibiphp.com/ * For more information please see http://dibiphp.com
* *
* @copyright Copyright (c) 2005, 2008 David Grudl * @copyright Copyright (c) 2005, 2008 David Grudl
* @license http://dibiphp.com/license dibi license * @license http://dibiphp.com/license dibi license
* @link http://dibiphp.com/ * @link http://dibiphp.com
* @package dibi * @package dibi
* @version $Id$
*/ */
@@ -59,7 +60,6 @@ interface IDataSource extends Countable, IteratorAggregate
* @author David Grudl * @author David Grudl
* @copyright Copyright (c) 2005, 2008 David Grudl * @copyright Copyright (c) 2005, 2008 David Grudl
* @package dibi * @package dibi
* @version $Revision$ $Date$
*/ */
interface IDibiDriver interface IDibiDriver
{ {

View File

@@ -1,4 +1,3 @@
Dibi version 0.9 Dibi 0.9 (revision $WCREV$)
Revision: $WCREV$ Released on $WCDATE$
Date: $WCDATE$