[commits] Horde branch master updated. a4708e511e4e85abb35acbee1b9b3aa643bce99a

Gunnar Wrobel p at rdus.de
Mon Feb 21 23:47:28 UTC 2011


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

from: 3da7fa2594c84c8dde52aa3856cb9f399810fd07

a79461f Adapt to missing Horde_Mime::parseStructure()
a3cad94 Mark todos
566ea6f Placing this functionality in a basic query was incorrect. Merge it into the basic data handler.
9826776 Fold the query into the base data handler.
89ba94f Fix data loading.
836a17e Fix data loading.
ec2c63d Retrieving the message IDs must be supported by the folder stamps.
e7c63fc Return decorated data.
e0e88ed Add the getIdParameters() method. Save the cache data after a complete sync.
c42267a Allow a folder instance as first parameter as well.
05dcff5 Adapt the list id generation to the one used for the data id generation.
2143e2d Todos
a4708e5 Add the basic "data" toolset.

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

commit a79461fdaed3bfcd9fe2c920db45e233da0ac4d2
Author: Gunnar Wrobel <p at rdus.de>
Date:   Mon Feb 21 08:47:18 2011 +0100

    Adapt to missing Horde_Mime::parseStructure()

 framework/Kolab_Storage/test/Horde/Kolab/Storage/TestCase.php     |    4 +-
 .../test/Horde/Kolab/Storage/Unit/Data/Format/MimeTest.php        |    5 +-
 .../test/Horde/Kolab/Storage/Unit/Data/Parser/StructureTest.php   |   14 ++--
 .../test/Horde/Kolab/Storage/fixtures/bodystructure.ser           |    1 -
 .../Kolab_Storage/test/Horde/Kolab/Storage/fixtures/event.struct  |    2 +-
 5 files changed, 12 insertions(+), 14 deletions(-)
 delete mode 100644 framework/Kolab_Storage/test/Horde/Kolab/Storage/fixtures/bodystructure.ser

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

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

commit a3cad94d0a23774a9e33e8a97bb3d9a14494664b
Author: Gunnar Wrobel <p at rdus.de>
Date:   Mon Feb 21 08:47:51 2011 +0100

    Mark todos

 .../lib/Horde/Kolab/Storage/Data/Parser/Structure.php             |    1 +
 framework/Kolab_Storage/lib/Horde/Kolab/Storage/Driver/Imap.php   |    1 +
 2 files changed, 2 insertions(+), 0 deletions(-)

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

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

commit 566ea6f81ec4a440fed14abc5120e73dfa94da68
Author: Gunnar Wrobel <p at rdus.de>
Date:   Mon Feb 21 09:23:27 2011 +0100

    Placing this functionality in a basic query was incorrect. Merge it into the basic data handler.

 framework/Kolab_Storage/lib/Horde/Kolab/Storage/Data.php          |   80 ++++
 framework/Kolab_Storage/lib/Horde/Kolab/Storage/Data/Base.php     |  100 +++++
 .../Kolab_Storage/test/Horde/Kolab/Storage/Unit/Data/BaseTest.php |   95 ++++
 3 files changed, 275 insertions(+), 0 deletions(-)

http://git.horde.org/horde-git/-/commit/566ea6f81ec4a440fed14abc5120e73dfa94da68

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

commit 982677699e9814a29a25c05aa5dab180e6bc9a2a
Author: Gunnar Wrobel <p at rdus.de>
Date:   Mon Feb 21 10:12:18 2011 +0100

    Fold the query into the base data handler.

 .../lib/Horde/Kolab/Storage/Data/Decorator/Cache.php              |  295 +++++
 .../Kolab_Storage/lib/Horde/Kolab/Storage/Data/Query/Data.php     |   31 -
 .../lib/Horde/Kolab/Storage/Data/Query/Data/Cache.php             |  213 ---
 framework/Kolab_Storage/package.xml                               |   30 +-
 .../test/Horde/Kolab/Storage/Unit/Data/Decorator/CacheTest.php    |  190 +++
 .../test/Horde/Kolab/Storage/Unit/Data/Query/Data/CacheTest.php   |  122 --
 6 files changed, 496 insertions(+), 385 deletions(-)
 create mode 100644 framework/Kolab_Storage/lib/Horde/Kolab/Storage/Data/Decorator/Cache.php
 delete mode 100644 framework/Kolab_Storage/lib/Horde/Kolab/Storage/Data/Query/Data.php
 delete mode 100644 framework/Kolab_Storage/lib/Horde/Kolab/Storage/Data/Query/Data/Cache.php
 create mode 100644 framework/Kolab_Storage/test/Horde/Kolab/Storage/Unit/Data/Decorator/CacheTest.php
 delete mode 100644 framework/Kolab_Storage/test/Horde/Kolab/Storage/Unit/Data/Query/Data/CacheTest.php

http://git.horde.org/horde-git/-/commit/982677699e9814a29a25c05aa5dab180e6bc9a2a

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

commit 89ba94fe1eab567e6e944fa97813f41817d34f49
Author: Gunnar Wrobel <p at rdus.de>
Date:   Mon Feb 21 10:13:01 2011 +0100

    Fix data loading.

 framework/Kolab_Cli/lib/Horde/Kolab/Cli/Module/Format.php |    6 ++++--
 1 files changed, 4 insertions(+), 2 deletions(-)

http://git.horde.org/horde-git/-/commit/89ba94fe1eab567e6e944fa97813f41817d34f49

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

commit 836a17e683dcf8708d7b580e6f118ac8480a776f
Author: Gunnar Wrobel <p at rdus.de>
Date:   Mon Feb 21 10:13:36 2011 +0100

    Fix data loading.

 framework/Kolab_Cli/lib/Horde/Kolab/Cli/Module/Data.php |    8 ++------
 1 files changed, 2 insertions(+), 6 deletions(-)

http://git.horde.org/horde-git/-/commit/836a17e683dcf8708d7b580e6f118ac8480a776f

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

commit ec2c63d22f4f8d9e742ff95bd8d40faacd6c3c30
Author: Gunnar Wrobel <p at rdus.de>
Date:   Mon Feb 21 15:11:30 2011 +0100

    Retrieving the message IDs must be supported by the folder stamps.

 framework/Kolab_Storage/lib/Horde/Kolab/Storage/Folder/Stamp.php |    7 ++++++
 1 files changed, 7 insertions(+), 0 deletions(-)

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

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

commit e7c63fc724505f7e2847382f04752d15126b542b
Author: Gunnar Wrobel <p at rdus.de>
Date:   Mon Feb 21 17:41:37 2011 +0100

    Return decorated data.

 .../Kolab_Storage/lib/Horde/Kolab/Storage/Decorator/Cache.php     |    7 ++-
 framework/Kolab_Storage/test/Horde/Kolab/Storage/TestCase.php     |    2 +
 .../test/Horde/Kolab/Storage/Unit/Decorator/CacheTest.php         |   17 +++++
 3 files changed, 25 insertions(+), 1 deletions(-)

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

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

commit e0e88ed74aa4b872934de49858d730c856495a8b
Author: Gunnar Wrobel <p at rdus.de>
Date:   Mon Feb 21 18:19:23 2011 +0100

    Add the getIdParameters() method. Save the cache data after a complete sync.

 framework/Kolab_Storage/lib/Horde/Kolab/Storage/Data.php          |    7 ++
 framework/Kolab_Storage/lib/Horde/Kolab/Storage/Data/Base.php     |   17 +++-
 .../lib/Horde/Kolab/Storage/Data/Decorator/Cache.php              |   11 ++
 .../Kolab_Storage/test/Horde/Kolab/Storage/Unit/CacheTest.php     |   14 ++--
 .../Kolab_Storage/test/Horde/Kolab/Storage/Unit/Data/BaseTest.php |    2 +-
 .../test/Horde/Kolab/Storage/Unit/Data/Decorator/CacheTest.php    |   23 ++++-
 6 files changed, 62 insertions(+), 12 deletions(-)

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

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

commit c42267a85f0471c3633cc5fa5e7660d4c65e3fed
Author: Gunnar Wrobel <p at rdus.de>
Date:   Mon Feb 21 18:21:43 2011 +0100

    Allow a folder instance as first parameter as well.

 framework/Kolab_Storage/lib/Horde/Kolab/Storage/Base.php |   20 ++++++++++---
 1 files changed, 15 insertions(+), 5 deletions(-)

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

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

commit 05dcff57c57c180cca7ec6ef5d94d1ec8978b3c9
Author: Gunnar Wrobel <p at rdus.de>
Date:   Mon Feb 21 18:27:59 2011 +0100

    Adapt the list id generation to the one used for the data id generation.

 .../Kolab_Storage/lib/Horde/Kolab/Storage/Decorator/Cache.php     |    4 +-
 framework/Kolab_Storage/lib/Horde/Kolab/Storage/List.php          |   13 +-
 framework/Kolab_Storage/lib/Horde/Kolab/Storage/List/Base.php     |   43 ++-
 .../lib/Horde/Kolab/Storage/List/Decorator/Cache.php              |   22 +-
 .../Kolab_Storage/lib/Horde/Kolab/Storage/List/Decorator/Log.php  |   30 +-
 .../Kolab_Storage/lib/Horde/Kolab/Storage/Synchronization.php     |    2 +-
 .../test/Horde/Kolab/Storage/Unit/List/Decorator/CacheTest.php    |   95 ++++-
 .../test/Horde/Kolab/Storage/Unit/SynchronizationTest.php         |    2 +-
 8 files changed, 167 insertions(+), 44 deletions(-)

http://git.horde.org/horde-git/-/commit/05dcff57c57c180cca7ec6ef5d94d1ec8978b3c9

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

commit 2143e2d05541b6e45730bd837c08a4b3bd4f7188
Author: Gunnar Wrobel <p at rdus.de>
Date:   Mon Feb 21 18:28:31 2011 +0100

    Todos

 framework/Kolab_Storage/TODO                                   |    2 +-
 framework/Kolab_Storage/lib/Horde/Kolab/Storage/Cache/Data.php |    1 +
 2 files changed, 2 insertions(+), 1 deletions(-)

http://git.horde.org/horde-git/-/commit/2143e2d05541b6e45730bd837c08a4b3bd4f7188

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

commit a4708e511e4e85abb35acbee1b9b3aa643bce99a
Author: Gunnar Wrobel <p at rdus.de>
Date:   Mon Feb 21 18:29:01 2011 +0100

    Add the basic "data" toolset.

 framework/Kolab_Cli/lib/Horde/Kolab/Cli/Module/Data.php |   32 +++++++++++++++
 1 files changed, 32 insertions(+), 0 deletions(-)

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




More information about the commits mailing list