Skip to content

Commit

Permalink
used https
Browse files Browse the repository at this point in the history
  • Loading branch information
dg committed Oct 6, 2015
1 parent f06425b commit 9ad5028
Show file tree
Hide file tree
Showing 44 changed files with 49 additions and 49 deletions.
2 changes: 1 addition & 1 deletion composer.json
Expand Up @@ -7,7 +7,7 @@
"authors": [
{
"name": "David Grudl",
"homepage": "http://davidgrudl.com"
"homepage": "https://davidgrudl.com"
}
],
"require": {
Expand Down
2 changes: 1 addition & 1 deletion contributing.md
Expand Up @@ -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!
2 changes: 1 addition & 1 deletion dibi/bridges/Nette-2.1/DibiNette21Extension.php
Expand Up @@ -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)
*/


Expand Down
2 changes: 1 addition & 1 deletion dibi/bridges/Nette-2.1/DibiNettePanel.php
Expand Up @@ -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;
Expand Down
2 changes: 1 addition & 1 deletion dibi/bridges/Nette-2.2/DibiNette22Extension.php
Expand Up @@ -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;
Expand Down
2 changes: 1 addition & 1 deletion dibi/bridges/Tracy/Panel.php
Expand Up @@ -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;
Expand Down
2 changes: 1 addition & 1 deletion dibi/dibi.php
Expand Up @@ -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)
*/


Expand Down
2 changes: 1 addition & 1 deletion dibi/drivers/DibiFirebirdDriver.php
Expand Up @@ -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)
*/


Expand Down
6 changes: 3 additions & 3 deletions dibi/drivers/DibiMsSql2005Driver.php
Expand Up @@ -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)
*/


Expand All @@ -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
Expand Down Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion dibi/drivers/DibiMsSql2005Reflector.php
Expand Up @@ -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)
*/


Expand Down
4 changes: 2 additions & 2 deletions dibi/drivers/DibiMsSqlDriver.php
Expand Up @@ -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';
Expand Down Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion dibi/drivers/DibiMsSqlReflector.php
Expand Up @@ -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
*/
Expand Down
2 changes: 1 addition & 1 deletion dibi/drivers/DibiMySqlDriver.php
Expand Up @@ -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)
*/


Expand Down
2 changes: 1 addition & 1 deletion dibi/drivers/DibiMySqlReflector.php
Expand Up @@ -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)
*/


Expand Down
2 changes: 1 addition & 1 deletion dibi/drivers/DibiMySqliDriver.php
Expand Up @@ -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)
*/


Expand Down
2 changes: 1 addition & 1 deletion dibi/drivers/DibiOdbcDriver.php
Expand Up @@ -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)
*/


Expand Down
2 changes: 1 addition & 1 deletion dibi/drivers/DibiOracleDriver.php
Expand Up @@ -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)
*/


Expand Down
2 changes: 1 addition & 1 deletion dibi/drivers/DibiPdoDriver.php
Expand Up @@ -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)
*/


Expand Down
2 changes: 1 addition & 1 deletion dibi/drivers/DibiPostgreDriver.php
Expand Up @@ -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)
*/


Expand Down
2 changes: 1 addition & 1 deletion dibi/drivers/DibiSqlite3Driver.php
Expand Up @@ -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)
*/


Expand Down
2 changes: 1 addition & 1 deletion dibi/drivers/DibiSqliteDriver.php
Expand Up @@ -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)
*/


Expand Down
2 changes: 1 addition & 1 deletion dibi/drivers/DibiSqliteReflector.php
Expand Up @@ -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)
*/


Expand Down
2 changes: 1 addition & 1 deletion dibi/libs/Dibi.php
Expand Up @@ -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)
*/


Expand Down
2 changes: 1 addition & 1 deletion dibi/libs/DibiConnection.php
Expand Up @@ -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)
*/


Expand Down
2 changes: 1 addition & 1 deletion dibi/libs/DibiDataSource.php
Expand Up @@ -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)
*/


Expand Down
2 changes: 1 addition & 1 deletion dibi/libs/DibiDatabaseInfo.php
Expand Up @@ -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)
*/


Expand Down
2 changes: 1 addition & 1 deletion dibi/libs/DibiDateTime.php
Expand Up @@ -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)
*/


Expand Down
2 changes: 1 addition & 1 deletion dibi/libs/DibiEvent.php
Expand Up @@ -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)
*/


Expand Down
2 changes: 1 addition & 1 deletion dibi/libs/DibiException.php
Expand Up @@ -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)
*/


Expand Down
2 changes: 1 addition & 1 deletion dibi/libs/DibiFileLogger.php
Expand Up @@ -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)
*/


Expand Down
2 changes: 1 addition & 1 deletion dibi/libs/DibiFirePhpLogger.php
Expand Up @@ -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)
*/


Expand Down
2 changes: 1 addition & 1 deletion dibi/libs/DibiFluent.php
Expand Up @@ -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)
*/


Expand Down
2 changes: 1 addition & 1 deletion dibi/libs/DibiHashMap.php
Expand Up @@ -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)
*/


Expand Down
2 changes: 1 addition & 1 deletion dibi/libs/DibiLiteral.php
Expand Up @@ -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)
*/


Expand Down
4 changes: 2 additions & 2 deletions dibi/libs/DibiObject.php
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion dibi/libs/DibiResult.php
Expand Up @@ -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)
*/


Expand Down
2 changes: 1 addition & 1 deletion dibi/libs/DibiResultIterator.php
Expand Up @@ -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)
*/


Expand Down
2 changes: 1 addition & 1 deletion dibi/libs/DibiRow.php
Expand Up @@ -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)
*/


Expand Down
2 changes: 1 addition & 1 deletion dibi/libs/DibiTranslator.php
Expand Up @@ -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)
*/


Expand Down
2 changes: 1 addition & 1 deletion dibi/libs/interfaces.php
Expand Up @@ -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)
*/


Expand Down

0 comments on commit 9ad5028

Please sign in to comment.