From dfacb4844972c572137dddadca6d1ff1e23063a0 Mon Sep 17 00:00:00 2001 From: David Grudl Date: Wed, 5 Dec 2007 09:27:55 +0000 Subject: [PATCH] * fixed DibiPostgreDriver::insertId * changed URL to http://dibiphp.com --- dibi/dibi.php | 6 +++--- dibi/drivers/mssql.php | 6 +++--- dibi/drivers/mysql.php | 13 +++++++++---- dibi/drivers/mysqli.php | 13 +++++++++---- dibi/drivers/odbc.php | 6 +++--- dibi/drivers/oracle.php | 6 +++--- dibi/drivers/pdo.php | 6 +++--- dibi/drivers/postgre.php | 14 +++++++------- dibi/drivers/sqlite.php | 6 +++--- dibi/libs/DibiConnection.php | 6 +++--- dibi/libs/DibiDriverInterface.php | 6 +++--- dibi/libs/DibiException.php | 6 +++--- dibi/libs/DibiLogger.php | 6 +++--- dibi/libs/DibiResult.php | 6 +++--- dibi/libs/DibiResultIterator.php | 6 +++--- dibi/libs/DibiTranslator.php | 6 +++--- dibi/libs/DibiVariable.php | 6 +++--- dibi/libs/NClass.php | 10 +++++----- dibi/libs/NException.php | 10 +++++----- dibi/libs/NObject.php | 10 +++++----- examples/sample.mdb | Bin 274432 -> 274432 bytes examples/sample.sdb | Bin 6144 -> 6144 bytes icons/example.html | 2 +- readme.txt | 4 ++-- 24 files changed, 85 insertions(+), 75 deletions(-) diff --git a/dibi/dibi.php b/dibi/dibi.php index 8e14571a..926c4efb 100644 --- a/dibi/dibi.php +++ b/dibi/dibi.php @@ -9,13 +9,13 @@ * This source file is subject to the "dibi license" that is bundled * with this package in the file license.txt. * - * For more information please see http://php7.org/dibi/ + * For more information please see http://dibiphp.com/ * * @author David Grudl * @copyright Copyright (c) 2005, 2007 David Grudl - * @license http://php7.org/dibi/license dibi license + * @license http://dibiphp.com/license dibi license * @version 0.9 (Revision: $WCREV$, Date: $WCDATE$) - * @link http://php7.org/dibi/ + * @link http://dibiphp.com/ * @package dibi */ diff --git a/dibi/drivers/mssql.php b/dibi/drivers/mssql.php index c08b2ba1..1348406e 100644 --- a/dibi/drivers/mssql.php +++ b/dibi/drivers/mssql.php @@ -9,11 +9,11 @@ * This source file is subject to the "dibi license" that is bundled * with this package in the file license.txt. * - * For more information please see http://php7.org/dibi/ + * For more information please see http://dibiphp.com/ * * @copyright Copyright (c) 2005, 2007 David Grudl - * @license http://php7.org/dibi/license dibi license - * @link http://php7.org/dibi/ + * @license http://dibiphp.com/license dibi license + * @link http://dibiphp.com/ * @package dibi */ diff --git a/dibi/drivers/mysql.php b/dibi/drivers/mysql.php index 41b0a2e7..24c21b1e 100644 --- a/dibi/drivers/mysql.php +++ b/dibi/drivers/mysql.php @@ -9,11 +9,11 @@ * This source file is subject to the "dibi license" that is bundled * with this package in the file license.txt. * - * For more information please see http://php7.org/dibi/ + * For more information please see http://dibiphp.com/ * * @copyright Copyright (c) 2005, 2007 David Grudl - * @license http://php7.org/dibi/license dibi license - * @link http://php7.org/dibi/ + * @license http://dibiphp.com/license dibi license + * @link http://dibiphp.com/ * @package dibi */ @@ -32,6 +32,7 @@ * - 'charset' - character encoding to set * - 'unbuffered' - sends query without fetching and buffering the result rows automatically? * - 'options' - driver specific constants (MYSQL_*) + * - 'sqlmode' - see http://dev.mysql.com/doc/refman/5.0/en/server-sql-mode.html * - 'lazy' - if TRUE, connection will be established only when required * * @author David Grudl @@ -124,7 +125,7 @@ class DibiMySqlDriver extends NObject implements DibiDriverInterface // affects the character set used by mysql_real_escape_string() (was added in MySQL 5.0.7 and PHP 5.2.3) $ok = @mysql_set_charset($config['charset'], $this->connection); } - if (!$ok) $ok = @mysql_query("SET NAMES '" . $config['charset'] . "'", $this->connection); + if (!$ok) $ok = @mysql_query("SET NAMES '$config[charset]'", $this->connection); if (!$ok) $this->throwException(); } @@ -132,6 +133,10 @@ class DibiMySqlDriver extends NObject implements DibiDriverInterface @mysql_select_db($config['database'], $this->connection) or $this->throwException(); } + if (isset($config['sqlmode'])) { + if (!@mysql_query("SET sql_mode='$config[sqlmode]'", $this->connection)) $this->throwException(); + } + $this->buffered = empty($config['unbuffered']); } diff --git a/dibi/drivers/mysqli.php b/dibi/drivers/mysqli.php index ac165e76..b86c0052 100644 --- a/dibi/drivers/mysqli.php +++ b/dibi/drivers/mysqli.php @@ -9,11 +9,11 @@ * This source file is subject to the "dibi license" that is bundled * with this package in the file license.txt. * - * For more information please see http://php7.org/dibi/ + * For more information please see http://dibiphp.com/ * * @copyright Copyright (c) 2005, 2007 David Grudl - * @license http://php7.org/dibi/license dibi license - * @link http://php7.org/dibi/ + * @license http://dibiphp.com/license dibi license + * @link http://dibiphp.com/ * @package dibi */ @@ -32,6 +32,7 @@ * - 'charset' - character encoding to set * - 'unbuffered' - sends query without fetching and buffering the result rows automatically? * - 'options' - driver specific constants (MYSQLI_*) + * - 'sqlmode' - see http://dev.mysql.com/doc/refman/5.0/en/server-sql-mode.html * - 'lazy' - if TRUE, connection will be established only when required * * @author David Grudl @@ -109,10 +110,14 @@ class DibiMySqliDriver extends NObject implements DibiDriverInterface if (isset($config['charset'])) { // affects the character set used by mysql_real_escape_string() (was added in MySQL 5.0.7 and PHP 5.0.5) $ok = @mysqli_set_charset($this->connection, $config['charset']); - if (!$ok) $ok = @mysqli_query($this->connection, "SET NAMES '" . $config['charset'] . "'"); + if (!$ok) $ok = @mysqli_query($this->connection, "SET NAMES '$config[charset]'"); if (!$ok) $this->throwException(); } + if (isset($config['sqlmode'])) { + if (!@mysqli_query($this->connection, "SET sql_mode='$config[sqlmode]'")) $this->throwException(); + } + $this->buffered = empty($config['unbuffered']); } diff --git a/dibi/drivers/odbc.php b/dibi/drivers/odbc.php index 6666f16a..99662a33 100644 --- a/dibi/drivers/odbc.php +++ b/dibi/drivers/odbc.php @@ -9,11 +9,11 @@ * This source file is subject to the "dibi license" that is bundled * with this package in the file license.txt. * - * For more information please see http://php7.org/dibi/ + * For more information please see http://dibiphp.com/ * * @copyright Copyright (c) 2005, 2007 David Grudl - * @license http://php7.org/dibi/license dibi license - * @link http://php7.org/dibi/ + * @license http://dibiphp.com/license dibi license + * @link http://dibiphp.com/ * @package dibi */ diff --git a/dibi/drivers/oracle.php b/dibi/drivers/oracle.php index cc9a0d14..8bc796ea 100644 --- a/dibi/drivers/oracle.php +++ b/dibi/drivers/oracle.php @@ -9,11 +9,11 @@ * This source file is subject to the "dibi license" that is bundled * with this package in the file license.txt. * - * For more information please see http://php7.org/dibi/ + * For more information please see http://dibiphp.com/ * * @copyright Copyright (c) 2005, 2007 David Grudl - * @license http://php7.org/dibi/license dibi license - * @link http://php7.org/dibi/ + * @license http://dibiphp.com/license dibi license + * @link http://dibiphp.com/ * @package dibi */ diff --git a/dibi/drivers/pdo.php b/dibi/drivers/pdo.php index 29047913..bef6a453 100644 --- a/dibi/drivers/pdo.php +++ b/dibi/drivers/pdo.php @@ -9,11 +9,11 @@ * This source file is subject to the "dibi license" that is bundled * with this package in the file license.txt. * - * For more information please see http://php7.org/dibi/ + * For more information please see http://dibiphp.com/ * * @copyright Copyright (c) 2005, 2007 David Grudl - * @license http://php7.org/dibi/license dibi license - * @link http://php7.org/dibi/ + * @license http://dibiphp.com/license dibi license + * @link http://dibiphp.com/ * @package dibi */ diff --git a/dibi/drivers/postgre.php b/dibi/drivers/postgre.php index cf2c0528..19b3c48a 100644 --- a/dibi/drivers/postgre.php +++ b/dibi/drivers/postgre.php @@ -9,11 +9,11 @@ * This source file is subject to the "dibi license" that is bundled * with this package in the file license.txt. * - * For more information please see http://php7.org/dibi/ + * For more information please see http://dibiphp.com/ * * @copyright Copyright (c) 2005, 2007 David Grudl - * @license http://php7.org/dibi/license dibi license - * @link http://php7.org/dibi/ + * @license http://dibiphp.com/license dibi license + * @link http://dibiphp.com/ * @package dibi */ @@ -163,16 +163,16 @@ class DibiPostgreDriver extends NObject implements DibiDriverInterface { if ($sequence === NULL) { // PostgreSQL 8.1 is needed - $has = $this->query("SELECT LASTVAL() AS seq"); + $has = $this->query("SELECT LASTVAL()"); } else { - $has = $this->query("SELECT CURRVAL('$sequence') AS seq"); + $has = $this->query("SELECT CURRVAL('$sequence')"); } if (!$has) return FALSE; - $row = $this->fetch(); + $row = $this->fetch(FALSE); $this->free(); - return isset($row['seq']) ? $row['seq'] : FALSE; + return is_array($row) ? $row[0] : FALSE; } diff --git a/dibi/drivers/sqlite.php b/dibi/drivers/sqlite.php index 9c51659f..29ceb842 100644 --- a/dibi/drivers/sqlite.php +++ b/dibi/drivers/sqlite.php @@ -9,11 +9,11 @@ * This source file is subject to the "dibi license" that is bundled * with this package in the file license.txt. * - * For more information please see http://php7.org/dibi/ + * For more information please see http://dibiphp.com/ * * @copyright Copyright (c) 2005, 2007 David Grudl - * @license http://php7.org/dibi/license dibi license - * @link http://php7.org/dibi/ + * @license http://dibiphp.com/license dibi license + * @link http://dibiphp.com/ * @package dibi */ diff --git a/dibi/libs/DibiConnection.php b/dibi/libs/DibiConnection.php index 3aca8c9a..b25d7956 100644 --- a/dibi/libs/DibiConnection.php +++ b/dibi/libs/DibiConnection.php @@ -9,11 +9,11 @@ * This source file is subject to the "dibi license" that is bundled * with this package in the file license.txt. * - * For more information please see http://php7.org/dibi/ + * For more information please see http://dibiphp.com/ * * @copyright Copyright (c) 2005, 2007 David Grudl - * @license http://php7.org/dibi/license dibi license - * @link http://php7.org/dibi/ + * @license http://dibiphp.com/license dibi license + * @link http://dibiphp.com/ * @package dibi */ diff --git a/dibi/libs/DibiDriverInterface.php b/dibi/libs/DibiDriverInterface.php index 8cc620e5..ed97fcb7 100644 --- a/dibi/libs/DibiDriverInterface.php +++ b/dibi/libs/DibiDriverInterface.php @@ -9,11 +9,11 @@ * This source file is subject to the "dibi license" that is bundled * with this package in the file license.txt. * - * For more information please see http://php7.org/dibi/ + * For more information please see http://dibiphp.com/ * * @copyright Copyright (c) 2005, 2007 David Grudl - * @license http://php7.org/dibi/license dibi license - * @link http://php7.org/dibi/ + * @license http://dibiphp.com/license dibi license + * @link http://dibiphp.com/ * @package dibi */ diff --git a/dibi/libs/DibiException.php b/dibi/libs/DibiException.php index dfe2e2c9..1bb34ce9 100644 --- a/dibi/libs/DibiException.php +++ b/dibi/libs/DibiException.php @@ -9,11 +9,11 @@ * This source file is subject to the "dibi license" that is bundled * with this package in the file license.txt. * - * For more information please see http://php7.org/dibi/ + * For more information please see http://dibiphp.com/ * * @copyright Copyright (c) 2005, 2007 David Grudl - * @license http://php7.org/dibi/license dibi license - * @link http://php7.org/dibi/ + * @license http://dibiphp.com/license dibi license + * @link http://dibiphp.com/ * @package dibi */ diff --git a/dibi/libs/DibiLogger.php b/dibi/libs/DibiLogger.php index 374d271b..97cc2e66 100644 --- a/dibi/libs/DibiLogger.php +++ b/dibi/libs/DibiLogger.php @@ -9,11 +9,11 @@ * This source file is subject to the "dibi license" that is bundled * with this package in the file license.txt. * - * For more information please see http://php7.org/dibi/ + * For more information please see http://dibiphp.com/ * * @copyright Copyright (c) 2005, 2007 David Grudl - * @license http://php7.org/dibi/license dibi license - * @link http://php7.org/dibi/ + * @license http://dibiphp.com/license dibi license + * @link http://dibiphp.com/ * @package dibi */ diff --git a/dibi/libs/DibiResult.php b/dibi/libs/DibiResult.php index f3ed25db..3f63f28a 100644 --- a/dibi/libs/DibiResult.php +++ b/dibi/libs/DibiResult.php @@ -9,11 +9,11 @@ * This source file is subject to the "dibi license" that is bundled * with this package in the file license.txt. * - * For more information please see http://php7.org/dibi/ + * For more information please see http://dibiphp.com/ * * @copyright Copyright (c) 2005, 2007 David Grudl - * @license http://php7.org/dibi/license dibi license - * @link http://php7.org/dibi/ + * @license http://dibiphp.com/license dibi license + * @link http://dibiphp.com/ * @package dibi */ diff --git a/dibi/libs/DibiResultIterator.php b/dibi/libs/DibiResultIterator.php index cb226e6b..4ad206e5 100644 --- a/dibi/libs/DibiResultIterator.php +++ b/dibi/libs/DibiResultIterator.php @@ -9,11 +9,11 @@ * This source file is subject to the "dibi license" that is bundled * with this package in the file license.txt. * - * For more information please see http://php7.org/dibi/ + * For more information please see http://dibiphp.com/ * * @copyright Copyright (c) 2005, 2007 David Grudl - * @license http://php7.org/dibi/license dibi license - * @link http://php7.org/dibi/ + * @license http://dibiphp.com/license dibi license + * @link http://dibiphp.com/ * @package dibi */ diff --git a/dibi/libs/DibiTranslator.php b/dibi/libs/DibiTranslator.php index c4303a27..13eae7f6 100644 --- a/dibi/libs/DibiTranslator.php +++ b/dibi/libs/DibiTranslator.php @@ -9,11 +9,11 @@ * This source file is subject to the "dibi license" that is bundled * with this package in the file license.txt. * - * For more information please see http://php7.org/dibi/ + * For more information please see http://dibiphp.com/ * * @copyright Copyright (c) 2005, 2007 David Grudl - * @license http://php7.org/dibi/license dibi license - * @link http://php7.org/dibi/ + * @license http://dibiphp.com/license dibi license + * @link http://dibiphp.com/ * @package dibi */ diff --git a/dibi/libs/DibiVariable.php b/dibi/libs/DibiVariable.php index 4f02f7bb..8e29618a 100644 --- a/dibi/libs/DibiVariable.php +++ b/dibi/libs/DibiVariable.php @@ -9,11 +9,11 @@ * This source file is subject to the "dibi license" that is bundled * with this package in the file license.txt. * - * For more information please see http://php7.org/dibi/ + * For more information please see http://dibiphp.com/ * * @copyright Copyright (c) 2005, 2007 David Grudl - * @license http://php7.org/dibi/license dibi license - * @link http://php7.org/dibi/ + * @license http://dibiphp.com/license dibi license + * @link http://dibiphp.com/ * @package dibi */ diff --git a/dibi/libs/NClass.php b/dibi/libs/NClass.php index 46622cb0..6def7398 100644 --- a/dibi/libs/NClass.php +++ b/dibi/libs/NClass.php @@ -9,11 +9,11 @@ * This source file is subject to the "dibi license" that is bundled * with this package in the file license.txt. * - * For more information please see http://php7.org/dibi/ + * For more information please see http://dibiphp.com/ * * @copyright Copyright (c) 2004, 2007 David Grudl - * @license http://php7.org/nette/license Nette license - * @link http://php7.org/nette/ + * @license http://nettephp.com/license Nette license + * @link http://nettephp.com/ * @package Nette */ @@ -24,8 +24,8 @@ * * @author David Grudl * @copyright Copyright (c) 2004, 2007 David Grudl - * @license http://php7.org/nette/license Nette license - * @link http://php7.org/nette/ + * @license http://nettephp.com/license Nette license + * @link http://nettephp.com/ * @package Nette */ abstract class NClass diff --git a/dibi/libs/NException.php b/dibi/libs/NException.php index d27b6ca5..3dd7291f 100644 --- a/dibi/libs/NException.php +++ b/dibi/libs/NException.php @@ -9,11 +9,11 @@ * This source file is subject to the "dibi license" that is bundled * with this package in the file license.txt. * - * For more information please see http://php7.org/dibi/ + * For more information please see http://dibiphp.com/ * * @copyright Copyright (c) 2004, 2007 David Grudl - * @license http://php7.org/nette/license Nette license - * @link http://php7.org/nette/ + * @license http://nettephp.com/license Nette license + * @link http://nettephp.com/ * @package Nette */ @@ -24,8 +24,8 @@ * * @author David Grudl * @copyright Copyright (c) 2004, 2007 David Grudl - * @license http://php7.org/nette/license Nette license - * @link http://php7.org/nette/ + * @license http://nettephp.com/license Nette license + * @link http://nettephp.com/ * @package Nette */ class NException extends Exception diff --git a/dibi/libs/NObject.php b/dibi/libs/NObject.php index 54f95f7f..9ea33b4a 100644 --- a/dibi/libs/NObject.php +++ b/dibi/libs/NObject.php @@ -9,11 +9,11 @@ * This source file is subject to the "dibi license" that is bundled * with this package in the file license.txt. * - * For more information please see http://php7.org/dibi/ + * For more information please see http://dibiphp.com/ * * @copyright Copyright (c) 2004, 2007 David Grudl - * @license http://php7.org/nette/license Nette license - * @link http://php7.org/nette/ + * @license http://nettephp.com/license Nette license + * @link http://nettephp.com/ * @package Nette */ @@ -47,8 +47,8 @@ * * @author David Grudl * @copyright Copyright (c) 2004, 2007 David Grudl - * @license http://php7.org/nette/license Nette license - * @link http://php7.org/nette/ + * @license http://nettephp.com/license Nette license + * @link http://nettephp.com/ * @package Nette */ abstract class NObject diff --git a/examples/sample.mdb b/examples/sample.mdb index 554e6a69ddd1fc02228fa830b369b990bb1002f8..1185a92ee1914e3625045f07e3b9407c80042369 100644 GIT binary patch delta 7663 zcmeHLdu$X%7@wKl<7jPrca%QpgSHgpAV8sMp&-bWNJJ>dt7sZ|$|H(FS}c&jC36TU zBnBx|O8LLhtk+4~7|j zyWf1j`OVBX->mzp)qT~vZKdhKD0xlk;WhiRO!l({M3i!}r;ue+rFXJZ$mp1w53>7P zF_I1pcS`n|iSfOAAQXeN-)6ZAlMLzXOmoe+5myr8a;!b^H%Ifyq`^f*vO9KSMf%<` z84s$l7ROnFo=*QHO;H}>*fQu(L>M|Wi3s&lJ2p#~r>CapBK>g>Bm_K0(BX{S9cf=) zKYG1r{0#@QS%cn0OVCOvbxtHmQ*XXT>YUR4o3mN<_st4c<=l2io?9!l<}QwqM*qXF z8&xazp0jCC!iZZJZm|A~cKiml)Y6zH?P^M3c88j#LAAYkKKswY=2@(&Z60U(^xb1O zilo1qvlx(byGWXGXD(}c?o46T$^oUiM8h*OwF^_#@exlcgG;`o8B*=JvLXxQz`y z%!_1in=3T<7R&Sch<&6zZHZF9nSJ7km1~cXTPn^S7$*Rd$drYjybY5~m}XN=-o3ld zxNVo)*nA;{J+eFS3_xxY0VSg7rhTx;IpD>LAJS|SgxzY z>-45`6>oa$R^c1T8tkq85TD95p+h2iPOfl}WLfgy6rqq<^j@NPoFLUB~)oV#Uo?d;Bq?lYb5sC6O5AF@jtFMq0Tv+{ptjP&M z9LSLzgmR%vm#xtI5hjDixVwW;t*`vQR~qmIcp)-xnE-&=BYu=ELTOT4Mv^wx2t{ zjQ}=7;Z0`aKY$sX+U+F68CMB87B61=Rr2R>8d?chAtWC`W&kSyM&^cEa}Vcm$kn4U z5WuDo-VC&XH5Asyq7;f?G?E+f>A!oa#085>n;`g(NL0DMDxrV++46EGdZ>0C_(J1GA_GgHqV?XLgkSh{qKB_Wrv6%+2Me zepqN5c4$bSS3cix;QZz}M_j92TQ8MuF1vW;^dIHL3#ymj|Hb?0(fh3zTVhLozvi5G zJ~!*Xzz$S*WRd zLS+~XzyYNlm5PPOPVYQDc2atYb_3Y1h&OV8{I$*uf3O z&5|7hJ4p9~AsB)+AzWHRqmS+7dI$<1H!qh;V4-o-5ptPIE$nR@)TbtAmTmJxqB-CG?`ywad8e`ni)60Nv$oK{|X69v#Vmlj~v_H5}?H*snQ zD{D$K4Fkl#Y8W|qJs|@i69DEx1MJY72`$z-?r^rvtva4q46RilXzx$~a%5a!e|K)-RoO3oE%bApb-7<4^i=%jd#6k*-mWH6o_+M^ zYn}Z0_w2bIYpwg#ByE2ro7=q|xgD!LUH9@IYr2;3s=aHj<7jJ@bC&jJR|yBoewnQ; zKE0A(hECtcs|DStZufNSGLE!&dpL5Udj+rNp1GGc9YhZ$+DB)6{BliKiI#JA2EV-V z>=J>rpPj~=|8#aOM{eo4-Pv@|2l%Ir@5(8)L#9Bmcn z&eUWX(nt6B$zt@RH~Gnxxv?8G4*(|x&M&-ywwHyE`N^9ltbSdT@EO1-iTqiM6Ha`p zp&FL>tFcKnyb<=%%8-w88w1Pg2co3op(t@<*^SRCT^}X)wEO4?3ma*}G__+RW||%X zY~)g0X|Jw<8TPnuiy*WytE~-Cn(D}`w*_43(%G0D+UwuDW<=nk7 zN)~MrH+{}U-B9#GyH8)Rj=Z0@5SGBB@Gx#~Yw@oR0DzS=ndozP28*Ek2^_k=-=P=2_#j&!JwVBXGI75Wzq zq$ze;6A+i-F9PIbz6FQdcacw~I64lgaEZRfPxEyxL<$ryb?dL-w4=mc6D z(0{;NG~m_GhscAh)(qBO!w48g!nINiFd2yjytH2x-ySycP4qvr44|r&XLQ4o|z0K3AizR;_Ws4)qaRhjgWxu3Kgwhqx~~4PZJx8OI|K#M)wm;tm|U zxQ&7~S7J+U6W@I~o%TJnxCRriF={^E4tq|}KPuVaDj0^BdI2*D9DVFn5Nm1UPimu} z%~jYk(Z&=niH*zfs%SJz7>U%8>sO#3Z>E`g#k-_1?8s3HRwd*xx~E=QNh3bJ$E_6V z`|Fjw<;jzn*#L9U1y4x&=k+j24BA{9vk6*Lv|@|$b&czK7ozY17M`{eZG2^}DX8u_ ztUTf@gf*}U>cg)eR+hQKeP1d{8Eb0Ig0UD4oGPv*oFK9}?T-lcbJj~sPOU;N%o*1Kur%uoNSeritL{Fn20Z7#ZXYo0&5yxw%nVtxVr zHuh7QfmHlh22kl;<2}D`!@{bZ22x3hDr|6B zVpMFZlp_^CmK3VOh8-cK!u{G*;ZQ16VHYx4VpMFZOhqbwEElB;yU2NqRJdQ8Djd2n zRoLj4P>hOAl~SbQ$1;p6Z1hVgaRqU|HdQ#3Ocj={z=Eo9zcy9)iK`Y%Tooo_T&e?0 zqAHf(K|(7_Nfb#MM7Up@1o+wl53nMhF)7TaR|4Tz3atpSq%$Lp6GKqJ4Tp)%Z$g4B z|C%aH_?2Wap|tHdiF1XCjTqO9pd#(VJe}Z6S7Ili_!1H;=%Qva8(Erw?1W#5-57u% zKgme!@JL{XunX?&WN8gcQ(l9FEx!r5grL&j2gVO#E?Hui`LfZ3QX}z@3bS}7CixZg zVo)Dy-}IK1CL-iOiFp7S1d|)6zLO2w5!UAe!1Dg%QIJJbCM6aI; zhHX1z0Z9@IXf%Y`g(mE%r|>J5odvnfIg!u@6B?QwOYLzYMujAvCXlepHi>CWVJ6LD zfk_ezXy{Iiq7Q74GZA(|_?0BaIANa?0+I*|XrzQ$Dh_c-SooC)V;?YPCmicA{@MD# zc$hRXsS^Sk(23M%DEV^y6Mmao!@Y)*=`JWB)pyOS<`gsFyKx)FJvBDZS)o?N-idu3 zt{AUsbo@hjpP28N!~y%8T=h_)e6+p}nXi`vq~ ze#3@7`AdE!c2xt}3Ft!EvC+JjKz72f#11z#GfR@Rv!FpT`+Y2ZZ%vRL_Y06Mzck?~ q2hZVR>==KiV_}2QODj9>7MFIy;>UOZek=pVG4-q3T+|Npwbnl{us*~9 diff --git a/examples/sample.sdb b/examples/sample.sdb index 02f4cbe0843b5bef1aed122e85d82f0096541d37..7ab9393bb8fc4b7bd378e5703e7f9c99cadc5c7f 100644 GIT binary patch delta 61 zcmZoLXfT*y!&Jh%(e4B@3jhEB diff --git a/icons/example.html b/icons/example.html index 9ae47d54..80cfd835 100644 --- a/icons/example.html +++ b/icons/example.html @@ -1,2 +1,2 @@ -dibi powered diff --git a/readme.txt b/readme.txt index 8dc1bb63..9c4d75f7 100644 --- a/readme.txt +++ b/readme.txt @@ -21,7 +21,7 @@ Documentation and Examples Refer to the 'examples' directory for examples. Dibi documentation is available on the homepage: -http://php7.org/dibi/ +http://dibiphp.com @@ -38,4 +38,4 @@ whitespaces are removed. ----- For more information, visit the author's weblog (in czech language): -http://latrine.dgx.cz/ +http://latrine.dgx.cz