The branch "imp_6_2" has been updated. The following is a summary of the commits.
from: 5ddae5d5995e0221bfc55ab3221ec47df9c84901 5610bf2 Done ed5b5e3 Move the more common boolean values to base class. b5f5698 This must be implemented in a driver, make abstract. cd5b772 phpdoc e41b8a3 Simplify 5ed6439 Log query before the error message and consistently log errors with the correct level. 7bf02c1 Binary notation is a subset of hex notation, so check it last. 86dc9b8 [mms] Add Horde_Cache_Storage_Memoryoverlay driver. 77db283 [mms] Cache permission results within a PHP access. c4207c7 Fix grep path 0d61b18 [jan] Fix setting DTEND in iCalendar data if event has a timezone (Bug #12693). 80b7aa3 Merge branch 'for_upstream' of git://github.com/sathieu/horde into sathieu-for_upstream ef021f6 [mms] Ensure that INBOX always appears in subscribed mailbox list when using a server that supports LIST-EXTENDED. 6580352 Merge branch 'master' into imp_6_2 ----------------------------------------------------------------------- commit 5610bf264249762828099de094538f8b4ef4ca7b Author: Jan Schneider <[email protected]> Date: Tue Sep 17 01:10:38 2013 +0200 Done framework/Db/lib/Horde/Db/Adapter/Base/Column.php | 2 -- 1 files changed, 0 insertions(+), 2 deletions(-) http://git.horde.org/horde-git/-/commit/5610bf264249762828099de094538f8b4ef4ca7b ----------------------------------------------------------------------- commit ed5b5e372f31dbd0248279450255949bd835861e Author: Jan Schneider <[email protected]> Date: Tue Sep 17 01:12:24 2013 +0200 Move the more common boolean values to base class. framework/Db/lib/Horde/Db/Adapter/Base/Schema.php | 4 +- framework/Db/lib/Horde/Db/Adapter/Mysql/Schema.php | 20 -------------- framework/Db/lib/Horde/Db/Adapter/Postgresql/Schema.php | 21 +++++++++++++++ framework/Db/lib/Horde/Db/Adapter/Sqlite/Schema.php | 20 -------------- 4 files changed, 23 insertions(+), 42 deletions(-) http://git.horde.org/horde-git/-/commit/ed5b5e372f31dbd0248279450255949bd835861e ----------------------------------------------------------------------- commit b5f569894fc203ff01ce19a6313d87a007bcee49 Author: Jan Schneider <[email protected]> Date: Tue Sep 17 01:12:57 2013 +0200 This must be implemented in a driver, make abstract. framework/Db/lib/Horde/Db/Adapter/Base/Schema.php | 5 +---- 1 files changed, 1 insertions(+), 4 deletions(-) http://git.horde.org/horde-git/-/commit/b5f569894fc203ff01ce19a6313d87a007bcee49 ----------------------------------------------------------------------- commit cd5b772f23605607e74552a9b978615e7d16df6b Author: Jan Schneider <[email protected]> Date: Tue Sep 17 01:13:13 2013 +0200 phpdoc framework/Db/lib/Horde/Db/Adapter/Base/Schema.php | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) http://git.horde.org/horde-git/-/commit/cd5b772f23605607e74552a9b978615e7d16df6b ----------------------------------------------------------------------- commit e41b8a3b4802fae674938ff839288c6c930c085b Author: Jan Schneider <[email protected]> Date: Tue Sep 17 01:13:24 2013 +0200 Simplify framework/Db/lib/Horde/Db/Adapter/Base/TableDefinition.php | 20 +++++++----- 1 files changed, 12 insertions(+), 8 deletions(-) http://git.horde.org/horde-git/-/commit/e41b8a3b4802fae674938ff839288c6c930c085b ----------------------------------------------------------------------- commit 5ed6439ae8b098dff9600faac580aa5113f758f7 Author: Jan Schneider <[email protected]> Date: Tue Sep 17 01:14:11 2013 +0200 Log query before the error message and consistently log errors with the correct level. framework/Db/lib/Horde/Db/Adapter/Mysql.php | 2 +- framework/Db/lib/Horde/Db/Adapter/Mysqli.php | 2 +- framework/Db/lib/Horde/Db/Adapter/Pdo/Base.php | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) http://git.horde.org/horde-git/-/commit/5ed6439ae8b098dff9600faac580aa5113f758f7 ----------------------------------------------------------------------- commit 7bf02c1c42fa19e6a95e1d424b2a628547b010a4 Author: Jan Schneider <[email protected]> Date: Tue Sep 17 01:15:06 2013 +0200 Binary notation is a subset of hex notation, so check it last. framework/Db/lib/Horde/Db/Adapter/Postgresql/Schema.php | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) http://git.horde.org/horde-git/-/commit/7bf02c1c42fa19e6a95e1d424b2a628547b010a4 ----------------------------------------------------------------------- commit 86dc9b80370975a340eadc2a84dd2a53207c681b Author: Michael M Slusarz <[email protected]> Date: Mon Sep 16 21:55:36 2013 -0600 [mms] Add Horde_Cache_Storage_Memoryoverlay driver. framework/Cache/lib/Horde/Cache/Storage/Memoryoverlay.php | 97 +++++++++++++ framework/Cache/package.xml | 19 ++-- 2 files changed, 107 insertions(+), 9 deletions(-) create mode 100644 framework/Cache/lib/Horde/Cache/Storage/Memoryoverlay.php http://git.horde.org/horde-git/-/commit/86dc9b80370975a340eadc2a84dd2a53207c681b ----------------------------------------------------------------------- commit 77db283e305009caeb2b5149a2303bbdbde7d8e2 Author: Michael M Slusarz <[email protected]> Date: Mon Sep 16 21:58:52 2013 -0600 [mms] Cache permission results within a PHP access. framework/Core/lib/Horde/Core/Factory/Perms.php | 4 +++- framework/Core/package.xml | 4 +++- 2 files changed, 6 insertions(+), 2 deletions(-) http://git.horde.org/horde-git/-/commit/77db283e305009caeb2b5149a2303bbdbde7d8e2 ----------------------------------------------------------------------- commit c4207c7d185b3d7d897f7232e7e7754f14bf2fc3 Author: Mathieu Parent <[email protected]> Date: Tue Sep 17 17:24:15 2013 +0200 Fix grep path grep is in /bin on UNICES (even on Fedora, via a symlink) horde/config/hooks.php.dist | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) http://git.horde.org/horde-git/-/commit/c4207c7d185b3d7d897f7232e7e7754f14bf2fc3 ----------------------------------------------------------------------- commit 0d61b18c55b5b2324874a99956952d3ebd571c29 Author: Jan Schneider <[email protected]> Date: Tue Sep 17 22:48:05 2013 +0200 [jan] Fix setting DTEND in iCalendar data if event has a timezone (Bug #12693). kronolith/docs/CHANGES | 1 + kronolith/lib/Event.php | 14 ++++++++++---- kronolith/package.xml | 2 ++ 3 files changed, 13 insertions(+), 4 deletions(-) http://git.horde.org/horde-git/-/commit/0d61b18c55b5b2324874a99956952d3ebd571c29 ----------------------------------------------------------------------- commit 80b7aa3f167787b9577b90b2abd6a2e6c5a3f3f1 Merge: 0d61b18 c4207c7 Author: Jan Schneider <[email protected]> Date: Wed Sep 18 00:16:32 2013 +0200 Merge branch 'for_upstream' of git://github.com/sathieu/horde into sathieu-for_upstream horde/config/hooks.php.dist | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) http://git.horde.org/horde-git/-/commit/80b7aa3f167787b9577b90b2abd6a2e6c5a3f3f1 ----------------------------------------------------------------------- commit ef021f698f355e28aab367c5a20456494025c96f Author: Michael M Slusarz <[email protected]> Date: Tue Sep 17 20:26:54 2013 -0600 [mms] Ensure that INBOX always appears in subscribed mailbox list when using a server that supports LIST-EXTENDED. framework/Imap_Client/lib/Horde/Imap/Client/Socket.php | 19 ++++++++++++--- framework/Imap_Client/package.xml | 4 +- 2 files changed, 17 insertions(+), 6 deletions(-) http://git.horde.org/horde-git/-/commit/ef021f698f355e28aab367c5a20456494025c96f ----------------------------------------------------------------------- commit 6580352fadd3aaa1deb362838e455b7a1a6af970 Merge: 5ddae5d ef021f6 Author: Michael M Slusarz <[email protected]> Date: Tue Sep 17 20:43:11 2013 -0600 Merge branch 'master' into imp_6_2 framework/Cache/lib/Horde/Cache/Storage/Memoryoverlay.php | 97 ++++++++++++ framework/Cache/package.xml | 19 ++- framework/Core/lib/Horde/Core/Factory/Perms.php | 4 +- framework/Core/package.xml | 4 +- framework/Db/lib/Horde/Db/Adapter/Base/Column.php | 2 - framework/Db/lib/Horde/Db/Adapter/Base/Schema.php | 11 +- framework/Db/lib/Horde/Db/Adapter/Base/TableDefinition.php | 20 ++- framework/Db/lib/Horde/Db/Adapter/Mysql.php | 2 +- framework/Db/lib/Horde/Db/Adapter/Mysql/Schema.php | 20 --- framework/Db/lib/Horde/Db/Adapter/Mysqli.php | 2 +- framework/Db/lib/Horde/Db/Adapter/Pdo/Base.php | 2 +- framework/Db/lib/Horde/Db/Adapter/Postgresql/Schema.php | 29 +++- framework/Db/lib/Horde/Db/Adapter/Sqlite/Schema.php | 20 --- framework/Imap_Client/lib/Horde/Imap/Client/Socket.php | 19 ++- framework/Imap_Client/package.xml | 4 +- horde/config/hooks.php.dist | 2 +- kronolith/docs/CHANGES | 1 + kronolith/lib/Event.php | 14 ++- kronolith/package.xml | 2 + 19 files changed, 189 insertions(+), 85 deletions(-) http://git.horde.org/horde-git/-/commit/6580352fadd3aaa1deb362838e455b7a1a6af970 -- commits mailing list Frequently Asked Questions: http://wiki.horde.org/FAQ To unsubscribe, mail: [email protected]
