diff --git a/composer.json b/composer.json index 2ad9be68..8ef5e4df 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 b44d3163..697e526e 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 8b986ca6..951a2107 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 b2e81914..98fa76d9 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 dcb8821e..d9787e02 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 ff79a80c..1c0afbe3 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 c8dd7b2e..179687ab 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 f8d8093a..18d53032 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 4168dfd8..1d18fa6b 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 @@ require_once dirname(__FILE__) . '/DibiMsSql2005Reflector.php'; * - 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 @@ class DibiMsSql2005Driver extends DibiObject implements IDibiDriver, IDibiResult 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 38b34910..3eb24f09 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 36275588..9a243bea 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 @@ class DibiMsSqlDriver extends DibiObject implements IDibiDriver, IDibiResultDriv 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 d2ea9908..1ff29e66 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 c0101b34..7e0a7d24 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 32542c4c..93497b33 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 47860c9b..ce79fb37 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 b5d4edf5..8949f05c 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 52a585b8..e7592666 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 f17112f3..3409674c 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 fbf2d30a..29bb6cfc 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 e43f458f..a70fdb24 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 9a6d3b5b..e43fc844 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 53ee233e..16ddb553 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 5bb66f8b..7397abdf 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 11e1a208..b01b777b 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 73104aa6..96d57951 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 9736adde..bc8f813e 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 f4fd1c54..49772533 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 238cd6e2..e85bf3d0 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 7cbb498b..04ea86fd 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 0aeaef13..fd452f8b 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 7f29ad81..775899bf 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 1ce6f043..d5a39d64 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 cd97ba80..f68d389e 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 c5dfd7f4..cbfbab43 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 b02f7ae6..b4f75e6b 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 21fdc545..66ce49ec 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 8951461e..bc25aac4 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 40e8f3d2..078d36ba 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 bc862d1b..c59c379d 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 06b05221..b5e669da 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 f5d88904..31a5a25a 100644 --- a/examples/tracy-and-exceptions.php +++ b/examples/tracy-and-exceptions.php @@ -2,7 +2,7 @@
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.