Aleksander Machniak
2012-07-06 d239ee6df5ce530b7c978628919e6134e3e795d4
Add PDO to requirements, remove MDB2 package
1 files modified
46 files deleted
33746 ■■■■■ changed files
INSTALL 5 ●●●●● patch | view | raw | blame | history
program/lib/MDB2.php 4270 ●●●●● patch | view | raw | blame | history
program/lib/MDB2/Date.php 183 ●●●●● patch | view | raw | blame | history
program/lib/MDB2/Driver/Datatype/Common.php 1838 ●●●●● patch | view | raw | blame | history
program/lib/MDB2/Driver/Datatype/mssql.php 496 ●●●●● patch | view | raw | blame | history
program/lib/MDB2/Driver/Datatype/mysql.php 562 ●●●●● patch | view | raw | blame | history
program/lib/MDB2/Driver/Datatype/mysqli.php 599 ●●●●● patch | view | raw | blame | history
program/lib/MDB2/Driver/Datatype/pgsql.php 579 ●●●●● patch | view | raw | blame | history
program/lib/MDB2/Driver/Datatype/sqlite.php 418 ●●●●● patch | view | raw | blame | history
program/lib/MDB2/Driver/Datatype/sqlsrv.php 451 ●●●●● patch | view | raw | blame | history
program/lib/MDB2/Driver/Function/Common.php 293 ●●●●● patch | view | raw | blame | history
program/lib/MDB2/Driver/Function/mssql.php 193 ●●●●● patch | view | raw | blame | history
program/lib/MDB2/Driver/Function/mysql.php 136 ●●●●● patch | view | raw | blame | history
program/lib/MDB2/Driver/Function/mysqli.php 144 ●●●●● patch | view | raw | blame | history
program/lib/MDB2/Driver/Function/pgsql.php 115 ●●●●● patch | view | raw | blame | history
program/lib/MDB2/Driver/Function/sqlite.php 162 ●●●●● patch | view | raw | blame | history
program/lib/MDB2/Driver/Function/sqlsrv.php 189 ●●●●● patch | view | raw | blame | history
program/lib/MDB2/Driver/Manager/Common.php 1014 ●●●●● patch | view | raw | blame | history
program/lib/MDB2/Driver/Manager/mssql.php 1129 ●●●●● patch | view | raw | blame | history
program/lib/MDB2/Driver/Manager/mysql.php 1438 ●●●●● patch | view | raw | blame | history
program/lib/MDB2/Driver/Manager/mysqli.php 1438 ●●●●● patch | view | raw | blame | history
program/lib/MDB2/Driver/Manager/pgsql.php 948 ●●●●● patch | view | raw | blame | history
program/lib/MDB2/Driver/Manager/sqlite.php 1362 ●●●●● patch | view | raw | blame | history
program/lib/MDB2/Driver/Manager/sqlsrv.php 1383 ●●●●● patch | view | raw | blame | history
program/lib/MDB2/Driver/Native/Common.php 61 ●●●●● patch | view | raw | blame | history
program/lib/MDB2/Driver/Native/mssql.php 60 ●●●●● patch | view | raw | blame | history
program/lib/MDB2/Driver/Native/mysql.php 60 ●●●●● patch | view | raw | blame | history
program/lib/MDB2/Driver/Native/mysqli.php 60 ●●●●● patch | view | raw | blame | history
program/lib/MDB2/Driver/Native/pgsql.php 88 ●●●●● patch | view | raw | blame | history
program/lib/MDB2/Driver/Native/sqlite.php 60 ●●●●● patch | view | raw | blame | history
program/lib/MDB2/Driver/Native/sqlsrv.php 57 ●●●●● patch | view | raw | blame | history
program/lib/MDB2/Driver/Reverse/Common.php 517 ●●●●● patch | view | raw | blame | history
program/lib/MDB2/Driver/Reverse/mssql.php 653 ●●●●● patch | view | raw | blame | history
program/lib/MDB2/Driver/Reverse/mysql.php 546 ●●●●● patch | view | raw | blame | history
program/lib/MDB2/Driver/Reverse/mysqli.php 610 ●●●●● patch | view | raw | blame | history
program/lib/MDB2/Driver/Reverse/pgsql.php 574 ●●●●● patch | view | raw | blame | history
program/lib/MDB2/Driver/Reverse/sqlite.php 609 ●●●●● patch | view | raw | blame | history
program/lib/MDB2/Driver/Reverse/sqlsrv.php 653 ●●●●● patch | view | raw | blame | history
program/lib/MDB2/Driver/mssql.php 1172 ●●●●● patch | view | raw | blame | history
program/lib/MDB2/Driver/mysql.php 1709 ●●●●● patch | view | raw | blame | history
program/lib/MDB2/Driver/mysqli.php 1866 ●●●●● patch | view | raw | blame | history
program/lib/MDB2/Driver/pgsql.php 1548 ●●●●● patch | view | raw | blame | history
program/lib/MDB2/Driver/sqlite.php 1093 ●●●●● patch | view | raw | blame | history
program/lib/MDB2/Driver/sqlsrv.php 1161 ●●●●● patch | view | raw | blame | history
program/lib/MDB2/Extended.php 721 ●●●●● patch | view | raw | blame | history
program/lib/MDB2/Iterator.php 259 ●●●●● patch | view | raw | blame | history
program/lib/MDB2/LOB.php 264 ●●●●● patch | view | raw | blame | history
INSTALL
@@ -12,11 +12,10 @@
* The Apache, Lighttpd, Cherokee or Hiawatha web server
* .htaccess support allowing overrides for DirectoryIndex
* PHP Version 5.2.1 or greater including
   - PCRE, DOM, JSON, XML, Session, Sockets (required)
   - PDO, PCRE, DOM, JSON, XML, Session, Sockets (required)
   - libiconv (recommended)
   - mbstring, fileinfo, mcrypt (optional)
* PEAR packages distributed with Roundcube or external:
   - MDB2 2.5.0 or newer
   - Mail_Mime 1.8.1 or newer
   - Mail_mimeDecode 1.5.5 or newer
   - Net_SMTP 1.4.2 or newer
@@ -34,7 +33,7 @@
   - magic_quotes_sybase disabled
* PHP compiled with OpenSSL to connect to IMAPS and to use the spell checker
* A MySQL (4.0.8 or newer), PostgreSQL, MSSQL database engine
  or the SQLite extension for PHP
  or SQLite support in PHP
* One of the above databases with permission to create tables
* An SMTP server (recommended) or PHP configured for mail delivery
program/lib/MDB2.php
File was deleted
program/lib/MDB2/Date.php
File was deleted
program/lib/MDB2/Driver/Datatype/Common.php
File was deleted
program/lib/MDB2/Driver/Datatype/mssql.php
File was deleted
program/lib/MDB2/Driver/Datatype/mysql.php
File was deleted
program/lib/MDB2/Driver/Datatype/mysqli.php
File was deleted
program/lib/MDB2/Driver/Datatype/pgsql.php
File was deleted
program/lib/MDB2/Driver/Datatype/sqlite.php
File was deleted
program/lib/MDB2/Driver/Datatype/sqlsrv.php
File was deleted
program/lib/MDB2/Driver/Function/Common.php
File was deleted
program/lib/MDB2/Driver/Function/mssql.php
File was deleted
program/lib/MDB2/Driver/Function/mysql.php
File was deleted
program/lib/MDB2/Driver/Function/mysqli.php
File was deleted
program/lib/MDB2/Driver/Function/pgsql.php
File was deleted
program/lib/MDB2/Driver/Function/sqlite.php
File was deleted
program/lib/MDB2/Driver/Function/sqlsrv.php
File was deleted
program/lib/MDB2/Driver/Manager/Common.php
File was deleted
program/lib/MDB2/Driver/Manager/mssql.php
File was deleted
program/lib/MDB2/Driver/Manager/mysql.php
File was deleted
program/lib/MDB2/Driver/Manager/mysqli.php
File was deleted
program/lib/MDB2/Driver/Manager/pgsql.php
File was deleted
program/lib/MDB2/Driver/Manager/sqlite.php
File was deleted
program/lib/MDB2/Driver/Manager/sqlsrv.php
File was deleted
program/lib/MDB2/Driver/Native/Common.php
File was deleted
program/lib/MDB2/Driver/Native/mssql.php
File was deleted
program/lib/MDB2/Driver/Native/mysql.php
File was deleted
program/lib/MDB2/Driver/Native/mysqli.php
File was deleted
program/lib/MDB2/Driver/Native/pgsql.php
File was deleted
program/lib/MDB2/Driver/Native/sqlite.php
File was deleted
program/lib/MDB2/Driver/Native/sqlsrv.php
File was deleted
program/lib/MDB2/Driver/Reverse/Common.php
File was deleted
program/lib/MDB2/Driver/Reverse/mssql.php
File was deleted
program/lib/MDB2/Driver/Reverse/mysql.php
File was deleted
program/lib/MDB2/Driver/Reverse/mysqli.php
File was deleted
program/lib/MDB2/Driver/Reverse/pgsql.php
File was deleted
program/lib/MDB2/Driver/Reverse/sqlite.php
File was deleted
program/lib/MDB2/Driver/Reverse/sqlsrv.php
File was deleted
program/lib/MDB2/Driver/mssql.php
File was deleted
program/lib/MDB2/Driver/mysql.php
File was deleted
program/lib/MDB2/Driver/mysqli.php
File was deleted
program/lib/MDB2/Driver/pgsql.php
File was deleted
program/lib/MDB2/Driver/sqlite.php
File was deleted
program/lib/MDB2/Driver/sqlsrv.php
File was deleted
program/lib/MDB2/Extended.php
File was deleted
program/lib/MDB2/Iterator.php
File was deleted
program/lib/MDB2/LOB.php
File was deleted