diff --git a/composer.json b/composer.json index 2ad9be68f..8ef5e4dfc 100644 --- a/composer.json +++ b/composer.json @@ -7,7 +7,7 @@ "authors": [ { "name": "David Grudl", - "homepage": "http://davidgrudl.com" + "homepage": "https://davidgrudl.com" } ], "require": { diff --git a/contributing.md b/contributing.md index b44d31639..697e526ee 100644 --- a/contributing.md +++ b/contributing.md @@ -21,7 +21,7 @@ fits with the scope and aims of the project. It's up to *you* to make a strong case to convince the project's developers of the merits of this feature. We welcome **pull requests**. If you'd like to contribute, please take a moment -to [read the guidelines](http://nette.org/en/contributing) in order to make +to [read the guidelines](https://nette.org/en/contributing) in order to make the contribution process easy and effective for everyone involved. Thanks! diff --git a/dibi/bridges/Nette-2.1/DibiNette21Extension.php b/dibi/bridges/Nette-2.1/DibiNette21Extension.php index 8b986ca6b..951a21072 100644 --- a/dibi/bridges/Nette-2.1/DibiNette21Extension.php +++ b/dibi/bridges/Nette-2.1/DibiNette21Extension.php @@ -2,7 +2,7 @@ /** * This file is part of the "dibi" - smart database abstraction layer. - * Copyright (c) 2005 David Grudl (http://davidgrudl.com) + * Copyright (c) 2005 David Grudl (https://davidgrudl.com) */ diff --git a/dibi/bridges/Nette-2.1/DibiNettePanel.php b/dibi/bridges/Nette-2.1/DibiNettePanel.php index b2e81914f..98fa76d9a 100644 --- a/dibi/bridges/Nette-2.1/DibiNettePanel.php +++ b/dibi/bridges/Nette-2.1/DibiNettePanel.php @@ -2,7 +2,7 @@ /** * This file is part of the "dibi" - smart database abstraction layer. - * Copyright (c) 2005 David Grudl (http://davidgrudl.com) + * Copyright (c) 2005 David Grudl (https://davidgrudl.com) */ use Nette\Diagnostics\Debugger; diff --git a/dibi/bridges/Nette-2.2/DibiNette22Extension.php b/dibi/bridges/Nette-2.2/DibiNette22Extension.php index dcb8821ec..d9787e023 100644 --- a/dibi/bridges/Nette-2.2/DibiNette22Extension.php +++ b/dibi/bridges/Nette-2.2/DibiNette22Extension.php @@ -2,7 +2,7 @@ /** * This file is part of the "dibi" - smart database abstraction layer. - * Copyright (c) 2005 David Grudl (http://davidgrudl.com) + * Copyright (c) 2005 David Grudl (https://davidgrudl.com) */ namespace Dibi\Bridges\Nette; diff --git a/dibi/bridges/Tracy/Panel.php b/dibi/bridges/Tracy/Panel.php index ff79a80cf..1c0afbe38 100644 --- a/dibi/bridges/Tracy/Panel.php +++ b/dibi/bridges/Tracy/Panel.php @@ -2,7 +2,7 @@ /** * This file is part of the "dibi" - smart database abstraction layer. - * Copyright (c) 2005 David Grudl (http://davidgrudl.com) + * Copyright (c) 2005 David Grudl (https://davidgrudl.com) */ namespace Dibi\Bridges\Tracy; diff --git a/dibi/dibi.php b/dibi/dibi.php index c8dd7b2e8..179687ab5 100644 --- a/dibi/dibi.php +++ b/dibi/dibi.php @@ -3,7 +3,7 @@ /** * dibi - smart database abstraction layer (http://dibiphp.com) * - * Copyright (c) 2005, 2012 David Grudl (http://davidgrudl.com) + * Copyright (c) 2005, 2012 David Grudl (https://davidgrudl.com) */ diff --git a/dibi/drivers/DibiFirebirdDriver.php b/dibi/drivers/DibiFirebirdDriver.php index f8d8093a3..18d53032b 100644 --- a/dibi/drivers/DibiFirebirdDriver.php +++ b/dibi/drivers/DibiFirebirdDriver.php @@ -2,7 +2,7 @@ /** * This file is part of the "dibi" - smart database abstraction layer. - * Copyright (c) 2005 David Grudl (http://davidgrudl.com) + * Copyright (c) 2005 David Grudl (https://davidgrudl.com) */ diff --git a/dibi/drivers/DibiMsSql2005Driver.php b/dibi/drivers/DibiMsSql2005Driver.php index 4168dfd8d..1d18fa6bd 100644 --- a/dibi/drivers/DibiMsSql2005Driver.php +++ b/dibi/drivers/DibiMsSql2005Driver.php @@ -2,7 +2,7 @@ /** * This file is part of the "dibi" - smart database abstraction layer. - * Copyright (c) 2005 David Grudl (http://davidgrudl.com) + * Copyright (c) 2005 David Grudl (https://davidgrudl.com) */ @@ -17,7 +17,7 @@ * - username (or user) * - password (or pass) * - database => the database name to select - * - options (array) => connection options {@link http://msdn.microsoft.com/en-us/library/cc296161(SQL.90).aspx} + * - options (array) => connection options {@link https://msdn.microsoft.com/en-us/library/cc296161(SQL.90).aspx} * - charset => character encoding to set (default is UTF-8) * - resource (resource) => existing connection resource * - lazy, profiler, result, substitutes, ... => see DibiConnection options @@ -226,7 +226,7 @@ public function escape($value, $type) return "'" . str_replace("'", "''", $value) . "'"; case dibi::IDENTIFIER: - // @see http://msdn.microsoft.com/en-us/library/ms176027.aspx + // @see https://msdn.microsoft.com/en-us/library/ms176027.aspx return '[' . str_replace(']', ']]', $value) . ']'; case dibi::BOOL: diff --git a/dibi/drivers/DibiMsSql2005Reflector.php b/dibi/drivers/DibiMsSql2005Reflector.php index 38b349106..3eb24f097 100644 --- a/dibi/drivers/DibiMsSql2005Reflector.php +++ b/dibi/drivers/DibiMsSql2005Reflector.php @@ -2,7 +2,7 @@ /** * This file is part of the "dibi" - smart database abstraction layer. - * Copyright (c) 2005 David Grudl (http://davidgrudl.com) + * Copyright (c) 2005 David Grudl (https://davidgrudl.com) */ diff --git a/dibi/drivers/DibiMsSqlDriver.php b/dibi/drivers/DibiMsSqlDriver.php index 36275588a..9a243bea4 100644 --- a/dibi/drivers/DibiMsSqlDriver.php +++ b/dibi/drivers/DibiMsSqlDriver.php @@ -2,7 +2,7 @@ /** * This file is part of the "dibi" - smart database abstraction layer. - * Copyright (c) 2005 David Grudl (http://davidgrudl.com) + * Copyright (c) 2005 David Grudl (https://davidgrudl.com) */ require_once dirname(__FILE__) . '/DibiMsSqlReflector.php'; @@ -211,7 +211,7 @@ public function escape($value, $type) return "'" . str_replace("'", "''", $value) . "'"; case dibi::IDENTIFIER: - // @see http://msdn.microsoft.com/en-us/library/ms176027.aspx + // @see https://msdn.microsoft.com/en-us/library/ms176027.aspx return '[' . str_replace(array('[', ']'), array('[[', ']]'), $value) . ']'; case dibi::BOOL: diff --git a/dibi/drivers/DibiMsSqlReflector.php b/dibi/drivers/DibiMsSqlReflector.php index d2ea99086..1ff29e66a 100644 --- a/dibi/drivers/DibiMsSqlReflector.php +++ b/dibi/drivers/DibiMsSqlReflector.php @@ -3,7 +3,7 @@ /** * This file is part of the "dibi" - smart database abstraction layer. * - * Copyright (c) 2005, 2010 David Grudl (http://davidgrudl.com) + * Copyright (c) 2005, 2010 David Grudl (https://davidgrudl.com) * * @package dibi\drivers */ diff --git a/dibi/drivers/DibiMySqlDriver.php b/dibi/drivers/DibiMySqlDriver.php index c0101b348..7e0a7d248 100644 --- a/dibi/drivers/DibiMySqlDriver.php +++ b/dibi/drivers/DibiMySqlDriver.php @@ -2,7 +2,7 @@ /** * This file is part of the "dibi" - smart database abstraction layer. - * Copyright (c) 2005 David Grudl (http://davidgrudl.com) + * Copyright (c) 2005 David Grudl (https://davidgrudl.com) */ diff --git a/dibi/drivers/DibiMySqlReflector.php b/dibi/drivers/DibiMySqlReflector.php index 32542c4c6..93497b33f 100644 --- a/dibi/drivers/DibiMySqlReflector.php +++ b/dibi/drivers/DibiMySqlReflector.php @@ -2,7 +2,7 @@ /** * This file is part of the "dibi" - smart database abstraction layer. - * Copyright (c) 2005 David Grudl (http://davidgrudl.com) + * Copyright (c) 2005 David Grudl (https://davidgrudl.com) */ diff --git a/dibi/drivers/DibiMySqliDriver.php b/dibi/drivers/DibiMySqliDriver.php index 47860c9bf..ce79fb375 100644 --- a/dibi/drivers/DibiMySqliDriver.php +++ b/dibi/drivers/DibiMySqliDriver.php @@ -2,7 +2,7 @@ /** * This file is part of the "dibi" - smart database abstraction layer. - * Copyright (c) 2005 David Grudl (http://davidgrudl.com) + * Copyright (c) 2005 David Grudl (https://davidgrudl.com) */ diff --git a/dibi/drivers/DibiOdbcDriver.php b/dibi/drivers/DibiOdbcDriver.php index b5d4edf55..8949f05cf 100644 --- a/dibi/drivers/DibiOdbcDriver.php +++ b/dibi/drivers/DibiOdbcDriver.php @@ -2,7 +2,7 @@ /** * This file is part of the "dibi" - smart database abstraction layer. - * Copyright (c) 2005 David Grudl (http://davidgrudl.com) + * Copyright (c) 2005 David Grudl (https://davidgrudl.com) */ diff --git a/dibi/drivers/DibiOracleDriver.php b/dibi/drivers/DibiOracleDriver.php index 52a585b8f..e7592666c 100644 --- a/dibi/drivers/DibiOracleDriver.php +++ b/dibi/drivers/DibiOracleDriver.php @@ -2,7 +2,7 @@ /** * This file is part of the "dibi" - smart database abstraction layer. - * Copyright (c) 2005 David Grudl (http://davidgrudl.com) + * Copyright (c) 2005 David Grudl (https://davidgrudl.com) */ diff --git a/dibi/drivers/DibiPdoDriver.php b/dibi/drivers/DibiPdoDriver.php index f17112f36..3409674ce 100644 --- a/dibi/drivers/DibiPdoDriver.php +++ b/dibi/drivers/DibiPdoDriver.php @@ -2,7 +2,7 @@ /** * This file is part of the "dibi" - smart database abstraction layer. - * Copyright (c) 2005 David Grudl (http://davidgrudl.com) + * Copyright (c) 2005 David Grudl (https://davidgrudl.com) */ diff --git a/dibi/drivers/DibiPostgreDriver.php b/dibi/drivers/DibiPostgreDriver.php index fbf2d30ab..29bb6cfca 100644 --- a/dibi/drivers/DibiPostgreDriver.php +++ b/dibi/drivers/DibiPostgreDriver.php @@ -2,7 +2,7 @@ /** * This file is part of the "dibi" - smart database abstraction layer. - * Copyright (c) 2005 David Grudl (http://davidgrudl.com) + * Copyright (c) 2005 David Grudl (https://davidgrudl.com) */ diff --git a/dibi/drivers/DibiSqlite3Driver.php b/dibi/drivers/DibiSqlite3Driver.php index e43f458f4..a70fdb245 100644 --- a/dibi/drivers/DibiSqlite3Driver.php +++ b/dibi/drivers/DibiSqlite3Driver.php @@ -2,7 +2,7 @@ /** * This file is part of the "dibi" - smart database abstraction layer. - * Copyright (c) 2005 David Grudl (http://davidgrudl.com) + * Copyright (c) 2005 David Grudl (https://davidgrudl.com) */ diff --git a/dibi/drivers/DibiSqliteDriver.php b/dibi/drivers/DibiSqliteDriver.php index 9a6d3b5b9..e43fc8445 100644 --- a/dibi/drivers/DibiSqliteDriver.php +++ b/dibi/drivers/DibiSqliteDriver.php @@ -2,7 +2,7 @@ /** * This file is part of the "dibi" - smart database abstraction layer. - * Copyright (c) 2005 David Grudl (http://davidgrudl.com) + * Copyright (c) 2005 David Grudl (https://davidgrudl.com) */ diff --git a/dibi/drivers/DibiSqliteReflector.php b/dibi/drivers/DibiSqliteReflector.php index 53ee233ee..16ddb553c 100644 --- a/dibi/drivers/DibiSqliteReflector.php +++ b/dibi/drivers/DibiSqliteReflector.php @@ -2,7 +2,7 @@ /** * This file is part of the "dibi" - smart database abstraction layer. - * Copyright (c) 2005 David Grudl (http://davidgrudl.com) + * Copyright (c) 2005 David Grudl (https://davidgrudl.com) */ diff --git a/dibi/libs/Dibi.php b/dibi/libs/Dibi.php index 5bb66f8b2..7397abdf1 100644 --- a/dibi/libs/Dibi.php +++ b/dibi/libs/Dibi.php @@ -2,7 +2,7 @@ /** * This file is part of the "dibi" - smart database abstraction layer. - * Copyright (c) 2005 David Grudl (http://davidgrudl.com) + * Copyright (c) 2005 David Grudl (https://davidgrudl.com) */ diff --git a/dibi/libs/DibiConnection.php b/dibi/libs/DibiConnection.php index 11e1a2080..b01b777b1 100644 --- a/dibi/libs/DibiConnection.php +++ b/dibi/libs/DibiConnection.php @@ -2,7 +2,7 @@ /** * This file is part of the "dibi" - smart database abstraction layer. - * Copyright (c) 2005 David Grudl (http://davidgrudl.com) + * Copyright (c) 2005 David Grudl (https://davidgrudl.com) */ diff --git a/dibi/libs/DibiDataSource.php b/dibi/libs/DibiDataSource.php index 73104aa61..96d57951a 100644 --- a/dibi/libs/DibiDataSource.php +++ b/dibi/libs/DibiDataSource.php @@ -2,7 +2,7 @@ /** * This file is part of the "dibi" - smart database abstraction layer. - * Copyright (c) 2005 David Grudl (http://davidgrudl.com) + * Copyright (c) 2005 David Grudl (https://davidgrudl.com) */ diff --git a/dibi/libs/DibiDatabaseInfo.php b/dibi/libs/DibiDatabaseInfo.php index 9736adde9..bc8f813ef 100644 --- a/dibi/libs/DibiDatabaseInfo.php +++ b/dibi/libs/DibiDatabaseInfo.php @@ -2,7 +2,7 @@ /** * This file is part of the "dibi" - smart database abstraction layer. - * Copyright (c) 2005 David Grudl (http://davidgrudl.com) + * Copyright (c) 2005 David Grudl (https://davidgrudl.com) */ diff --git a/dibi/libs/DibiDateTime.php b/dibi/libs/DibiDateTime.php index f4fd1c54e..49772533a 100644 --- a/dibi/libs/DibiDateTime.php +++ b/dibi/libs/DibiDateTime.php @@ -2,7 +2,7 @@ /** * This file is part of the "dibi" - smart database abstraction layer. - * Copyright (c) 2005 David Grudl (http://davidgrudl.com) + * Copyright (c) 2005 David Grudl (https://davidgrudl.com) */ diff --git a/dibi/libs/DibiEvent.php b/dibi/libs/DibiEvent.php index 238cd6e21..e85bf3d04 100644 --- a/dibi/libs/DibiEvent.php +++ b/dibi/libs/DibiEvent.php @@ -2,7 +2,7 @@ /** * This file is part of the "dibi" - smart database abstraction layer. - * Copyright (c) 2005 David Grudl (http://davidgrudl.com) + * Copyright (c) 2005 David Grudl (https://davidgrudl.com) */ diff --git a/dibi/libs/DibiException.php b/dibi/libs/DibiException.php index 7cbb498b4..04ea86fdd 100644 --- a/dibi/libs/DibiException.php +++ b/dibi/libs/DibiException.php @@ -2,7 +2,7 @@ /** * This file is part of the "dibi" - smart database abstraction layer. - * Copyright (c) 2005 David Grudl (http://davidgrudl.com) + * Copyright (c) 2005 David Grudl (https://davidgrudl.com) */ diff --git a/dibi/libs/DibiFileLogger.php b/dibi/libs/DibiFileLogger.php index 0aeaef136..fd452f8b0 100644 --- a/dibi/libs/DibiFileLogger.php +++ b/dibi/libs/DibiFileLogger.php @@ -2,7 +2,7 @@ /** * This file is part of the "dibi" - smart database abstraction layer. - * Copyright (c) 2005 David Grudl (http://davidgrudl.com) + * Copyright (c) 2005 David Grudl (https://davidgrudl.com) */ diff --git a/dibi/libs/DibiFirePhpLogger.php b/dibi/libs/DibiFirePhpLogger.php index 7f29ad819..775899bf1 100644 --- a/dibi/libs/DibiFirePhpLogger.php +++ b/dibi/libs/DibiFirePhpLogger.php @@ -2,7 +2,7 @@ /** * This file is part of the "dibi" - smart database abstraction layer. - * Copyright (c) 2005 David Grudl (http://davidgrudl.com) + * Copyright (c) 2005 David Grudl (https://davidgrudl.com) */ diff --git a/dibi/libs/DibiFluent.php b/dibi/libs/DibiFluent.php index 1ce6f0439..d5a39d644 100644 --- a/dibi/libs/DibiFluent.php +++ b/dibi/libs/DibiFluent.php @@ -2,7 +2,7 @@ /** * This file is part of the "dibi" - smart database abstraction layer. - * Copyright (c) 2005 David Grudl (http://davidgrudl.com) + * Copyright (c) 2005 David Grudl (https://davidgrudl.com) */ diff --git a/dibi/libs/DibiHashMap.php b/dibi/libs/DibiHashMap.php index cd97ba80e..f68d389ea 100644 --- a/dibi/libs/DibiHashMap.php +++ b/dibi/libs/DibiHashMap.php @@ -2,7 +2,7 @@ /** * This file is part of the "dibi" - smart database abstraction layer. - * Copyright (c) 2005 David Grudl (http://davidgrudl.com) + * Copyright (c) 2005 David Grudl (https://davidgrudl.com) */ diff --git a/dibi/libs/DibiLiteral.php b/dibi/libs/DibiLiteral.php index c5dfd7f48..cbfbab43d 100644 --- a/dibi/libs/DibiLiteral.php +++ b/dibi/libs/DibiLiteral.php @@ -2,7 +2,7 @@ /** * This file is part of the "dibi" - smart database abstraction layer. - * Copyright (c) 2005 David Grudl (http://davidgrudl.com) + * Copyright (c) 2005 David Grudl (https://davidgrudl.com) */ diff --git a/dibi/libs/DibiObject.php b/dibi/libs/DibiObject.php index b02f7ae64..b4f75e6b5 100644 --- a/dibi/libs/DibiObject.php +++ b/dibi/libs/DibiObject.php @@ -2,14 +2,14 @@ /** * This file is part of the "dibi" - smart database abstraction layer. - * Copyright (c) 2005 David Grudl (http://davidgrudl.com) + * Copyright (c) 2005 David Grudl (https://davidgrudl.com) */ /** * DibiObject is the ultimate ancestor of all instantiable classes. * - * DibiObject is copy of Nette\Object from Nette Framework (http://nette.org). + * DibiObject is copy of Nette\Object from Nette Framework (https://nette.org). * * It defines some handful methods and enhances object core of PHP: * - access to undeclared members throws exceptions diff --git a/dibi/libs/DibiResult.php b/dibi/libs/DibiResult.php index 21fdc545e..66ce49ecc 100644 --- a/dibi/libs/DibiResult.php +++ b/dibi/libs/DibiResult.php @@ -2,7 +2,7 @@ /** * This file is part of the "dibi" - smart database abstraction layer. - * Copyright (c) 2005 David Grudl (http://davidgrudl.com) + * Copyright (c) 2005 David Grudl (https://davidgrudl.com) */ diff --git a/dibi/libs/DibiResultIterator.php b/dibi/libs/DibiResultIterator.php index 8951461e0..bc25aac49 100644 --- a/dibi/libs/DibiResultIterator.php +++ b/dibi/libs/DibiResultIterator.php @@ -2,7 +2,7 @@ /** * This file is part of the "dibi" - smart database abstraction layer. - * Copyright (c) 2005 David Grudl (http://davidgrudl.com) + * Copyright (c) 2005 David Grudl (https://davidgrudl.com) */ diff --git a/dibi/libs/DibiRow.php b/dibi/libs/DibiRow.php index 40e8f3d23..078d36bad 100644 --- a/dibi/libs/DibiRow.php +++ b/dibi/libs/DibiRow.php @@ -2,7 +2,7 @@ /** * This file is part of the "dibi" - smart database abstraction layer. - * Copyright (c) 2005 David Grudl (http://davidgrudl.com) + * Copyright (c) 2005 David Grudl (https://davidgrudl.com) */ diff --git a/dibi/libs/DibiTranslator.php b/dibi/libs/DibiTranslator.php index bc862d1b3..c59c379d3 100644 --- a/dibi/libs/DibiTranslator.php +++ b/dibi/libs/DibiTranslator.php @@ -2,7 +2,7 @@ /** * This file is part of the "dibi" - smart database abstraction layer. - * Copyright (c) 2005 David Grudl (http://davidgrudl.com) + * Copyright (c) 2005 David Grudl (https://davidgrudl.com) */ diff --git a/dibi/libs/interfaces.php b/dibi/libs/interfaces.php index 06b052219..b5e669da9 100644 --- a/dibi/libs/interfaces.php +++ b/dibi/libs/interfaces.php @@ -2,7 +2,7 @@ /** * This file is part of the "dibi" - smart database abstraction layer. - * Copyright (c) 2005 David Grudl (http://davidgrudl.com) + * Copyright (c) 2005 David Grudl (https://davidgrudl.com) */ diff --git a/examples/tracy-and-exceptions.php b/examples/tracy-and-exceptions.php index f5d88904a..31a5a25a3 100644 --- a/examples/tracy-and-exceptions.php +++ b/examples/tracy-and-exceptions.php @@ -2,7 +2,7 @@

Tracy & SQL Exceptions | dibi

-

Dibi can display and log exceptions via Tracy.

+

Dibi can display and log exceptions via Tracy.

Tracy | dibi -

Dibi can log queries and dump variables to the Tracy.

+

Dibi can log queries and dump variables to the Tracy.