[commits] Horde branch master updated. c4cb012ac4b9034d9e99e3e9e6396102da721523
Michael M Slusarz
slusarz at horde.org
Fri Apr 19 04:46:45 UTC 2013
The branch "master" has been updated.
The following is a summary of the commits.
from: 0ed76b5aa235e7e323bb6e89db0d7293e8812da0
5d5c40c not needed
5bedea2 Released Horde_Imap_Client-2.8.2
e57f022 Development mode for Horde_Imap_Client-2.8.3
8feb678 Released Horde_Mime-2.1.1
c9633e4 Development mode for Horde_Mime-2.1.2
edeec28 [mms] Abstract the backend storage into a separate driver for the Horde_Imap_Client_Cache class.
186cbb9 [mms] Add a Horde_Db based backend for storing cached IMAP/POP data.
05512ec Add debug information on the cache driver used.
c4cb012 No need for uppercase here
-----------------------------------------------------------------------
commit 5d5c40ce828e4b09999c56680c0639ff3f8b329a
Author: Michael M Slusarz <slusarz at horde.org>
Date: Thu Apr 18 17:42:33 2013 -0600
not needed
framework/Core/js/smartmobile.js | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
http://git.horde.org/horde-git/-/commit/5d5c40ce828e4b09999c56680c0639ff3f8b329a
-----------------------------------------------------------------------
commit 5bedea2c5a3d91b455e4a50d91541e868c0df295
Author: Michael M Slusarz <slusarz at horde.org>
Date: Thu Apr 18 21:06:40 2013 -0600
Released Horde_Imap_Client-2.8.2
framework/Imap_Client/package.xml | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
http://git.horde.org/horde-git/-/commit/5bedea2c5a3d91b455e4a50d91541e868c0df295
-----------------------------------------------------------------------
commit e57f02277bca68b9a997e994d108cce4a676fa73
Author: Michael M Slusarz <slusarz at horde.org>
Date: Thu Apr 18 21:06:40 2013 -0600
Development mode for Horde_Imap_Client-2.8.3
framework/Imap_Client/package.xml | 19 ++++++++++++++++---
1 files changed, 16 insertions(+), 3 deletions(-)
http://git.horde.org/horde-git/-/commit/e57f02277bca68b9a997e994d108cce4a676fa73
-----------------------------------------------------------------------
commit 8feb678e8ec9d131c74e2e92d148b8b2e4caaa6b
Author: Michael M Slusarz <slusarz at horde.org>
Date: Thu Apr 18 21:11:02 2013 -0600
Released Horde_Mime-2.1.1
framework/Mime/package.xml | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
http://git.horde.org/horde-git/-/commit/8feb678e8ec9d131c74e2e92d148b8b2e4caaa6b
-----------------------------------------------------------------------
commit c9633e45fa005d4b8525a37cf0a83586ba79b0af
Author: Michael M Slusarz <slusarz at horde.org>
Date: Thu Apr 18 21:11:02 2013 -0600
Development mode for Horde_Mime-2.1.2
framework/Mime/package.xml | 19 ++++++++++++++++---
1 files changed, 16 insertions(+), 3 deletions(-)
http://git.horde.org/horde-git/-/commit/c9633e45fa005d4b8525a37cf0a83586ba79b0af
-----------------------------------------------------------------------
commit edeec288ef8cf2b7c62af416d2144762332f68cb
Author: Michael M Slusarz <slusarz at horde.org>
Date: Thu Apr 18 21:20:01 2013 -0600
[mms] Abstract the backend storage into a separate driver for the Horde_Imap_Client_Cache class.
framework/Imap_Client/doc/Horde/Imap/Client/UPGRADING | 10 +
framework/Imap_Client/lib/Horde/Imap/Client/Base.php | 34 +-
framework/Imap_Client/lib/Horde/Imap/Client/Cache.php | 433 +----
framework/Imap_Client/lib/Horde/Imap/Client/Cache/Backend.php | 120 ++
.../Imap_Client/lib/Horde/Imap/Client/Cache/Backend/Cache.php | 470 +++++
.../Imap_Client/lib/Horde/Imap/Client/Cache/Backend/Null.php | 72 +
framework/Imap_Client/package.xml | 50 +-
7 files changed, 775 insertions(+), 414 deletions(-)
create mode 100644 framework/Imap_Client/lib/Horde/Imap/Client/Cache/Backend.php
create mode 100644 framework/Imap_Client/lib/Horde/Imap/Client/Cache/Backend/Cache.php
create mode 100644 framework/Imap_Client/lib/Horde/Imap/Client/Cache/Backend/Null.php
http://git.horde.org/horde-git/-/commit/edeec288ef8cf2b7c62af416d2144762332f68cb
-----------------------------------------------------------------------
commit 186cbb9520582244dcb5fffbd62902de0ca2d454
Author: Michael M Slusarz <slusarz at horde.org>
Date: Thu Apr 18 21:21:00 2013 -0600
[mms] Add a Horde_Db based backend for storing cached IMAP/POP data.
framework/Imap_Client/lib/Horde/Imap/Client/Cache/Backend/Db.php | 349 +++++
.../Horde/Imap/Client/1_horde_imap_client_base_tables.php | 99 ++
framework/Imap_Client/package.xml | 12 +-
framework/Imap_Client/test/Horde/Imap/Client/Cache/CacheTest.php | 284 ++++
framework/Imap_Client/test/Horde/Imap/Client/Cache/DbTest.php | 48 +
5 files changed, 789 insertions(+), 3 deletions(-)
create mode 100644 framework/Imap_Client/lib/Horde/Imap/Client/Cache/Backend/Db.php
create mode 100644 framework/Imap_Client/migration/Horde/Imap/Client/1_horde_imap_client_base_tables.php
create mode 100644 framework/Imap_Client/test/Horde/Imap/Client/Cache/CacheTest.php
create mode 100644 framework/Imap_Client/test/Horde/Imap/Client/Cache/DbTest.php
http://git.horde.org/horde-git/-/commit/186cbb9520582244dcb5fffbd62902de0ca2d454
-----------------------------------------------------------------------
commit 05512ec509067660ebaa432fd360adfb05496a65
Author: Michael M Slusarz <slusarz at horde.org>
Date: Thu Apr 18 22:31:00 2013 -0600
Add debug information on the cache driver used.
framework/Imap_Client/lib/Horde/Imap/Client/Cache.php | 10 ++++++----
1 files changed, 6 insertions(+), 4 deletions(-)
http://git.horde.org/horde-git/-/commit/05512ec509067660ebaa432fd360adfb05496a65
-----------------------------------------------------------------------
commit c4cb012ac4b9034d9e99e3e9e6396102da721523
Author: Michael M Slusarz <slusarz at horde.org>
Date: Thu Apr 18 22:46:04 2013 -0600
No need for uppercase here
framework/Imap_Client/lib/Horde/Imap/Client/Cache.php | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
http://git.horde.org/horde-git/-/commit/c4cb012ac4b9034d9e99e3e9e6396102da721523
More information about the commits
mailing list