[commits] Horde branch master updated. 2a2eb1293100be4f25103821312e8c07f5c4d8db

Gunnar Wrobel p at rdus.de
Thu Aug 30 18:01:36 UTC 2012


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

from: 8868edcf9fd18942017bf722bdbed788ad32b231

15ce2b3 Remember duplicates and allow to read them. Provide a reset() method.
51ba846 Allow to read the duplicate default folders. Reset the defaults before synchronizing.
b3d87e0 Obsolete.
e6b40f5 Single implementation => collapse.
09c835e Reset completely.
9b2afc7 Fix synchronization. Provide decent sync stamp. Allow to retrieve duplicate defaults. Adapt to List_Cache change.
1f21bc3 Always require a logger and a cache. Readd cached list queries. Adapt to List_Cache change.
2a2eb12 Adapt to config change.

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

commit 15ce2b3cab90b695dfe7eb50eae3a6ea1184b0bc
Author: Gunnar Wrobel <p at rdus.de>
Date:   Thu Aug 30 19:41:29 2012 +0200

    Remember duplicates and allow to read them. Provide a reset() method.

 .../lib/Horde/Kolab/Storage/List/Query/List/Defaults.php          |   32 +++
 .../Horde/Kolab/Storage/Unit/List/Query/List/DefaultsTest.php     |   47 +++++
 2 files changed, 79 insertions(+), 0 deletions(-)

http://git.horde.org/horde-git/-/commit/15ce2b3cab90b695dfe7eb50eae3a6ea1184b0bc

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

commit 51ba846eb4be21773f8d0fe894186878f16fc325
Author: Gunnar Wrobel <p at rdus.de>
Date:   Thu Aug 30 19:42:32 2012 +0200

    Allow to read the duplicate default folders. Reset the defaults before synchronizing.

 .../Horde/Kolab/Storage/List/Query/List/Cache/Synchronization.php |   11 +++
 .../Storage/Unit/List/Query/List/Cache/SynchronizationTest.php    |   15 ++++-
 2 files changed, 25 insertions(+), 1 deletions(-)

http://git.horde.org/horde-git/-/commit/51ba846eb4be21773f8d0fe894186878f16fc325

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

commit b3d87e04cb7aa92095722c4ee08978e6805ccad7
Author: Gunnar Wrobel <p at rdus.de>
Date:   Thu Aug 30 19:50:18 2012 +0200

    Obsolete.

 framework/Kolab_Storage/lib/Horde/Kolab/Storage/List/Query.php |   67 --------
 1 files changed, 0 insertions(+), 67 deletions(-)
 delete mode 100644 framework/Kolab_Storage/lib/Horde/Kolab/Storage/List/Query.php

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

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

commit e6b40f55e4986172419854f8424b4570e5cd42a7
Author: Gunnar Wrobel <p at rdus.de>
Date:   Thu Aug 30 19:55:11 2012 +0200

    Single implementation => collapse.

 framework/Kolab_Storage/lib/Horde/Kolab/Storage/List/Cache.php    |  278 +++-
 .../Kolab_Storage/lib/Horde/Kolab/Storage/List/Cache/Base.php     |  426 -----
 .../test/Horde/Kolab/Storage/ComponentTest/List/CacheTest.php     |   91 +-
 3 files changed, 334 insertions(+), 461 deletions(-)
 delete mode 100644 framework/Kolab_Storage/lib/Horde/Kolab/Storage/List/Cache/Base.php

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

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

commit 09c835e5b255f9648e82ce65a1653ec304472d20
Author: Gunnar Wrobel <p at rdus.de>
Date:   Thu Aug 30 19:55:50 2012 +0200

    Reset completely.

 .../lib/Horde/Kolab/Storage/List/Query/List/Defaults.php          |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

http://git.horde.org/horde-git/-/commit/09c835e5b255f9648e82ce65a1653ec304472d20

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

commit 9b2afc7240adac2d562ce28407f3a8586ce9e85b
Author: Gunnar Wrobel <p at rdus.de>
Date:   Thu Aug 30 19:57:34 2012 +0200

    Fix synchronization. Provide decent sync stamp. Allow to retrieve duplicate defaults. Adapt to List_Cache change.

 .../lib/Horde/Kolab/Storage/List/Query/List/Cache.php             |   14 ++-
 .../test/Horde/Kolab/Storage/Unit/List/Query/Acl/CacheTest.php    |    4 +-
 .../Horde/Kolab/Storage/Unit/List/Query/ActiveSync/CacheTest.php  |    4 +-
 .../test/Horde/Kolab/Storage/Unit/List/Query/List/CacheTest.php   |   32 ++++-
 .../test/Horde/Kolab/Storage/Unit/List/Query/Share/CacheTest.php  |    6 +-
 5 files changed, 50 insertions(+), 10 deletions(-)

http://git.horde.org/horde-git/-/commit/9b2afc7240adac2d562ce28407f3a8586ce9e85b

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

commit 1f21bc30ffbed5d246a3c043f7343847c02c3c5d
Author: Gunnar Wrobel <p at rdus.de>
Date:   Thu Aug 30 19:59:00 2012 +0200

    Always require a logger and a cache. Readd cached list queries. Adapt to List_Cache change.

 framework/Kolab_Storage/lib/Horde/Kolab/Storage/Base.php          |   31 +-
 framework/Kolab_Storage/lib/Horde/Kolab/Storage/Cache.php         |   41 +-
 framework/Kolab_Storage/lib/Horde/Kolab/Storage/Cached.php        |   50 -
 framework/Kolab_Storage/lib/Horde/Kolab/Storage/Factory.php       |   27 +-
 framework/Kolab_Storage/lib/Horde/Kolab/Storage/List/Tools.php    |  164 ++--
 framework/Kolab_Storage/package.xml                               |   14 +-
 framework/Kolab_Storage/test/Horde/Kolab/Storage/Autoload.php     |    1 -
 .../Kolab_Storage/test/Horde/Kolab/Storage/Stub/ListQuery.php     |   73 --
 framework/Kolab_Storage/test/Horde/Kolab/Storage/TestCase.php     |   18 +-
 .../Kolab_Storage/test/Horde/Kolab/Storage/Unit/CacheTest.php     |   70 --
 .../Kolab_Storage/test/Horde/Kolab/Storage/Unit/Data/BaseTest.php |   20 +-
 .../Kolab_Storage/test/Horde/Kolab/Storage/Unit/FactoryTest.php   |   31 +-
 .../test/Horde/Kolab/Storage/Unit/List/ToolsTest.php              |  216 ++++-
 13 files changed, 345 insertions(+), 411 deletions(-)
 delete mode 100644 framework/Kolab_Storage/test/Horde/Kolab/Storage/Stub/ListQuery.php

http://git.horde.org/horde-git/-/commit/1f21bc30ffbed5d246a3c043f7343847c02c3c5d

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

commit 2a2eb1293100be4f25103821312e8c07f5c4d8db
Author: Gunnar Wrobel <p at rdus.de>
Date:   Thu Aug 30 19:59:23 2012 +0200

    Adapt to config change.

 framework/Core/lib/Horde/Core/Factory/KolabStorage.php |   16 ++++++++++++++--
 framework/Share/test/Horde/Share/Kolab/MockTest.php    |   15 ++++++++++++++-
 framework/Share/test/Horde/Share/Kolab/UnitTest.php    |   15 ++++++++++++++-
 3 files changed, 42 insertions(+), 4 deletions(-)

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




More information about the commits mailing list