[commits] Horde branch master updated. 3646b3ef7b408959f27fa8a3128d28831fb4a602
Michael M Slusarz
slusarz at horde.org
Wed Mar 5 06:48:19 UTC 2014
The branch "master" has been updated.
The following is a summary of the commits.
from: 1464d793ebd5c92c894b7dd5b07d10de762dedb9
4efb1b1 [mms] Add MongoDB driver.
fa012ff Add doc example
7156c45 For clarity, use constants to identify mongo field names
a38398a We should be checking framework level mongo drivers in Horde_Core, not horde
0f8d656 Fix mongo cache driver recognition in IMP
1964e53 Really no reason not to be compressing pages - with todays CPUs, overhead is inconsequential
c61cd66 [mms] The history driver can now be configured via conf.php.
bdbc3b4 [mms] Add a NoSQL driver for history storage.
3646b3e [mms] Support new configuration options for history storage.
Summary: http://github.com/horde/horde/compare/1464d793ebd5c92c894b7dd5b07d10de762dedb9...3646b3ef7b408959f27fa8a3128d28831fb4a602
-----------------------------------------------------------------------
commit 4efb1b1045be077602c173bcfa2bd8dfef27c39c
Author: Michael M Slusarz <slusarz at horde.org>
Date: Tue Mar 4 14:20:46 2014 -0700
[mms] Add MongoDB driver.
framework/History/lib/Horde/History/Mongo.php | 429 ++++++++++++++
framework/History/package.xml | 23 +-
framework/History/test/Horde/History/Mongo/MongoTest.php | 54 ++
framework/History/test/Horde/History/TestBase.php | 41 +-
framework/History/test/Horde/History/conf.php.dist | 1 +
5 files changed, 535 insertions(+), 13 deletions(-)
create mode 100644 framework/History/lib/Horde/History/Mongo.php
create mode 100644 framework/History/test/Horde/History/Mongo/MongoTest.php
http://github.com/horde/horde/commit/4efb1b1045be077602c173bcfa2bd8dfef27c39c
http://git.horde.org/horde-git/-/commit/4efb1b1045be077602c173bcfa2bd8dfef27c39c
-----------------------------------------------------------------------
commit fa012ffdb833e1a341152227fa99cfa7b625d922
Author: Michael M Slusarz <slusarz at horde.org>
Date: Tue Mar 4 22:24:26 2014 -0700
Add doc example
framework/Imap_Client/test/Horde/Imap/Client/conf.php.dist | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)
http://github.com/horde/horde/commit/fa012ffdb833e1a341152227fa99cfa7b625d922
http://git.horde.org/horde-git/-/commit/fa012ffdb833e1a341152227fa99cfa7b625d922
-----------------------------------------------------------------------
commit 7156c45c69893ff81648a273e0198cfabab4b850
Author: Michael M Slusarz <slusarz at horde.org>
Date: Tue Mar 4 22:35:48 2014 -0700
For clarity, use constants to identify mongo field names
.../Imap_Client/lib/Horde/Imap/Client/Cache/Backend/Mongo.php | 108 +++--
1 files changed, 63 insertions(+), 45 deletions(-)
http://github.com/horde/horde/commit/7156c45c69893ff81648a273e0198cfabab4b850
http://git.horde.org/horde-git/-/commit/7156c45c69893ff81648a273e0198cfabab4b850
-----------------------------------------------------------------------
commit a38398af73073fc05814f39ab163a875654d408f
Author: Michael M Slusarz <slusarz at horde.org>
Date: Tue Mar 4 23:19:24 2014 -0700
We should be checking framework level mongo drivers in Horde_Core, not horde
framework/Core/lib/Horde/Core/Nosql.php | 21 +++++++++++++-
horde/lib/Application.php | 47 -------------------------------
2 files changed, 20 insertions(+), 48 deletions(-)
http://github.com/horde/horde/commit/a38398af73073fc05814f39ab163a875654d408f
http://git.horde.org/horde-git/-/commit/a38398af73073fc05814f39ab163a875654d408f
-----------------------------------------------------------------------
commit 0f8d6569cc4ac84e7a06c180fec30dd6c02f8421
Author: Michael M Slusarz <slusarz at horde.org>
Date: Tue Mar 4 23:24:37 2014 -0700
Fix mongo cache driver recognition in IMP
imp/lib/Application.php | 15 ++++++++-------
imp/lib/Imap/Cache/Wrapper.php | 6 +++---
imp/lib/Imap/Config.php | 4 +---
3 files changed, 12 insertions(+), 13 deletions(-)
http://github.com/horde/horde/commit/0f8d6569cc4ac84e7a06c180fec30dd6c02f8421
http://git.horde.org/horde-git/-/commit/0f8d6569cc4ac84e7a06c180fec30dd6c02f8421
-----------------------------------------------------------------------
commit 1964e531d6835a5f609970f874b67cbed2becfd3
Author: Michael M Slusarz <slusarz at horde.org>
Date: Tue Mar 4 23:27:05 2014 -0700
Really no reason not to be compressing pages - with todays CPUs, overhead is inconsequential
horde/config/conf.xml | 9 +++------
1 files changed, 3 insertions(+), 6 deletions(-)
http://github.com/horde/horde/commit/1964e531d6835a5f609970f874b67cbed2becfd3
http://git.horde.org/horde-git/-/commit/1964e531d6835a5f609970f874b67cbed2becfd3
-----------------------------------------------------------------------
commit c61cd661db327557e01e2f0f87edb95510ecdd04
Author: Michael M Slusarz <slusarz at horde.org>
Date: Tue Mar 4 23:32:44 2014 -0700
[mms] The history driver can now be configured via conf.php.
horde/config/conf.xml | 20 ++++++++++++++++++++
horde/docs/CHANGES | 1 +
horde/docs/UPGRADING | 5 +++++
horde/package.xml | 1 +
4 files changed, 27 insertions(+), 0 deletions(-)
http://github.com/horde/horde/commit/c61cd661db327557e01e2f0f87edb95510ecdd04
http://git.horde.org/horde-git/-/commit/c61cd661db327557e01e2f0f87edb95510ecdd04
-----------------------------------------------------------------------
commit bdbc3b4dfdd30851d5d955992e4a5003ed6fd396
Author: Michael M Slusarz <slusarz at horde.org>
Date: Tue Mar 4 23:33:20 2014 -0700
[mms] Add a NoSQL driver for history storage.
horde/docs/CHANGES | 1 +
horde/package.xml | 1 +
2 files changed, 2 insertions(+), 0 deletions(-)
http://github.com/horde/horde/commit/bdbc3b4dfdd30851d5d955992e4a5003ed6fd396
http://git.horde.org/horde-git/-/commit/bdbc3b4dfdd30851d5d955992e4a5003ed6fd396
-----------------------------------------------------------------------
commit 3646b3ef7b408959f27fa8a3128d28831fb4a602
Author: Michael M Slusarz <slusarz at horde.org>
Date: Tue Mar 4 22:38:17 2014 -0700
[mms] Support new configuration options for history storage.
framework/Core/lib/Horde/Core/Factory/History.php | 70 +++++++++++++++++---
framework/Core/lib/Horde/Core/Nosql.php | 1 +
framework/Core/package.xml | 2 +
3 files changed, 62 insertions(+), 11 deletions(-)
http://github.com/horde/horde/commit/3646b3ef7b408959f27fa8a3128d28831fb4a602
http://git.horde.org/horde-git/-/commit/3646b3ef7b408959f27fa8a3128d28831fb4a602
More information about the commits
mailing list