[commits] Horde branch master updated. ea45c7f96468a97a6f5f13d14becd3a50c5d14ce

Michael M Slusarz slusarz at horde.org
Tue Apr 23 07:00:47 UTC 2013


The branch "master" has been updated.
The following is a summary of the commits.

from: 7efe54beb27ebfdd43fde22a0db3cf3f5b17dc24

74e45a2 Hardcode database name into Horde_Mongo_Client
96fd5a1 SessionHandler storage objects do not support serialization
2e71afb Optimize cache set/update into single call
610f4a6 Build indexes for mongo db
6fc5dcd Allow cache mongo db collection name to be configured separately
142a574 [mms] Add MongoDB token backend.
084eca6 Support NoSQL drivers (mongo) for Token package
ea45c7f [mms] Convert unit tests to PHPUnit.

-----------------------------------------------------------------------

commit 74e45a2e9c244c036bae97c7c896f416ed7eb551
Author: Michael M Slusarz <slusarz at horde.org>
Date:   Mon Apr 22 22:41:06 2013 -0600

    Hardcode database name into Horde_Mongo_Client
    
    i.e. object passed to calling data can only modify that database.

 framework/Cache/lib/Horde/Cache/Storage/Mongo.php                 |    9 +-
 framework/Core/lib/Horde/Config.php                               |    9 +
 framework/Core/lib/Horde/Core/Factory/Nosql.php                   |    6 +-
 .../Imap_Client/lib/Horde/Imap/Client/Cache/Backend/Mongo.php     |   84 +++--
 framework/Imap_Client/test/Horde/Imap/Client/Cache/MongoTest.php  |    6 +-
 framework/Mongo/lib/Horde/Mongo/Client.php                        |   52 +++-
 6 files changed, 117 insertions(+), 49 deletions(-)

http://git.horde.org/horde-git/-/commit/74e45a2e9c244c036bae97c7c896f416ed7eb551

-----------------------------------------------------------------------

commit 96fd5a109344bb376011a16aad1dacdb45f3c3da
Author: Michael M Slusarz <slusarz at horde.org>
Date:   Mon Apr 22 23:13:47 2013 -0600

    SessionHandler storage objects do not support serialization

 framework/SessionHandler/lib/Horde/SessionHandler/Storage.php |    8 ++++++++
 1 files changed, 8 insertions(+), 0 deletions(-)

http://git.horde.org/horde-git/-/commit/96fd5a109344bb376011a16aad1dacdb45f3c3da

-----------------------------------------------------------------------

commit 2e71afbdaa11d4dcd22b2570016605f83f1774eb
Author: Michael M Slusarz <slusarz at horde.org>
Date:   Mon Apr 22 23:33:12 2013 -0600

    Optimize cache set/update into single call

 framework/Cache/lib/Horde/Cache/Storage/Mongo.php |    9 ++++++---
 1 files changed, 6 insertions(+), 3 deletions(-)

http://git.horde.org/horde-git/-/commit/2e71afbdaa11d4dcd22b2570016605f83f1774eb

-----------------------------------------------------------------------

commit 610f4a61a6451ac1505a4aa94db0389620c549ac
Author: Michael M Slusarz <slusarz at horde.org>
Date:   Mon Apr 22 23:44:40 2013 -0600

    Build indexes for mongo db

 framework/Cache/lib/Horde/Cache/Storage/Mongo.php                 |    2 +-
 .../Imap_Client/lib/Horde/Imap/Client/Cache/Backend/Mongo.php     |   18 +++++
 2 files changed, 19 insertions(+), 1 deletions(-)

http://git.horde.org/horde-git/-/commit/610f4a61a6451ac1505a4aa94db0389620c549ac

-----------------------------------------------------------------------

commit 6fc5dcda16193c917242d91d7d5f91b5798db6ff
Author: Michael M Slusarz <slusarz at horde.org>
Date:   Mon Apr 22 23:59:06 2013 -0600

    Allow cache mongo db collection name to be configured separately

 framework/Cache/lib/Horde/Cache/Storage/Mongo.php |   10 +++++-----
 1 files changed, 5 insertions(+), 5 deletions(-)

http://git.horde.org/horde-git/-/commit/6fc5dcda16193c917242d91d7d5f91b5798db6ff

-----------------------------------------------------------------------

commit 142a574869ac5e91cdd0137eaa6e8cab3d50ef85
Author: Michael M Slusarz <slusarz at horde.org>
Date:   Tue Apr 23 00:12:34 2013 -0600

    [mms] Add MongoDB token backend.

 framework/Token/lib/Horde/Token/Mongo.php            |  106 ++++++++++++++++++
 framework/Token/package.xml                          |   23 +++-
 framework/Token/test/Horde/Token/BackendTestCase.php |    4 +-
 framework/Token/test/Horde/Token/Unit/MongoTest.php  |   63 +++++++++++
 framework/Token/test/Horde/Token/conf.php.dist       |    5 +
 5 files changed, 194 insertions(+), 7 deletions(-)
 create mode 100644 framework/Token/lib/Horde/Token/Mongo.php
 create mode 100644 framework/Token/test/Horde/Token/Unit/MongoTest.php
 create mode 100644 framework/Token/test/Horde/Token/conf.php.dist

http://git.horde.org/horde-git/-/commit/142a574869ac5e91cdd0137eaa6e8cab3d50ef85

-----------------------------------------------------------------------

commit 084eca6f2eb58030ee02636c592acb475dcbe943
Author: Michael M Slusarz <slusarz at horde.org>
Date:   Tue Apr 23 00:16:25 2013 -0600

    Support NoSQL drivers (mongo) for Token package

 framework/Core/lib/Horde/Core/Factory/Token.php |   18 +++++++++++++++---
 horde/config/conf.xml                           |    5 +++++
 2 files changed, 20 insertions(+), 3 deletions(-)

http://git.horde.org/horde-git/-/commit/084eca6f2eb58030ee02636c592acb475dcbe943

-----------------------------------------------------------------------

commit ea45c7f96468a97a6f5f13d14becd3a50c5d14ce
Author: Michael M Slusarz <slusarz at horde.org>
Date:   Tue Apr 23 00:59:35 2013 -0600

    [mms] Convert unit tests to PHPUnit.

 framework/lz4/package.xml                      |   29 +++--
 framework/lz4/test/horde/lz4/AllTests.php      |    3 +
 framework/lz4/test/horde/lz4/UnitTest.php      |  173 ++++++++++++++++++++++++
 framework/lz4/test/horde/lz4/bootstrap.php     |    3 +
 framework/lz4/test/horde/lz4/fixtures/data.txt |   82 +++++++++++
 framework/lz4/test/horde/lz4/phpunit.xml       |    1 +
 framework/lz4/tests/001.phpt                   |   26 ----
 framework/lz4/tests/002.phpt                   |   38 -----
 framework/lz4/tests/003.phpt                   |   19 ---
 framework/lz4/tests/004.phpt                   |   19 ---
 framework/lz4/tests/005.phpt                   |   43 ------
 framework/lz4/tests/006.phpt                   |   26 ----
 framework/lz4/tests/007.phpt                   |   20 ---
 framework/lz4/tests/data.inc                   |   87 ------------
 14 files changed, 278 insertions(+), 291 deletions(-)
 create mode 100644 framework/lz4/test/horde/lz4/AllTests.php
 create mode 100644 framework/lz4/test/horde/lz4/UnitTest.php
 create mode 100644 framework/lz4/test/horde/lz4/bootstrap.php
 create mode 100644 framework/lz4/test/horde/lz4/fixtures/data.txt
 create mode 100644 framework/lz4/test/horde/lz4/phpunit.xml
 delete mode 100644 framework/lz4/tests/001.phpt
 delete mode 100644 framework/lz4/tests/002.phpt
 delete mode 100644 framework/lz4/tests/003.phpt
 delete mode 100644 framework/lz4/tests/004.phpt
 delete mode 100644 framework/lz4/tests/005.phpt
 delete mode 100644 framework/lz4/tests/006.phpt
 delete mode 100644 framework/lz4/tests/007.phpt
 delete mode 100644 framework/lz4/tests/data.inc

http://git.horde.org/horde-git/-/commit/ea45c7f96468a97a6f5f13d14becd3a50c5d14ce




More information about the commits mailing list