The branch "master" has been updated. The following is a summary of the commits.
from: 9f71f01eaf0e6b078d0967876fd3173034a5fade 4d0cfc8 [gwr] Fixed migrations for SQLite as database backend. dd11353 Switch to using Horde_Test. 8b60237 Fix incompatibilities with the interface of the parent class in a backward compatible way (removing type hints). 5cec6a4 Fix deleting events. Fix pass by reference. dea38df Changelog. 321002f [gwr] Fixed naming of the default calendar for the Kolab backend. 00ba61c [gwr] Fixed recurrence handling with the Kolab backend. 8732ae4 Optional. ----------------------------------------------------------------------- commit 4d0cfc8cd950525b3e5e1730b25c044cc70d4aa5 Author: Gunnar Wrobel <[email protected]> Date: Mon Dec 12 06:37:44 2011 +0100 [gwr] Fixed migrations for SQLite as database backend. This requires the newer Horde_Db-1.2.0 API. kronolith/docs/CHANGES | 1 + kronolith/migration/3_kronolith_upgrade_addallday.php | 2 +- kronolith/package.xml | 4 +++- 3 files changed, 5 insertions(+), 2 deletions(-) http://git.horde.org/horde-git/-/commit/4d0cfc8cd950525b3e5e1730b25c044cc70d4aa5 ----------------------------------------------------------------------- commit dd11353738ec0ea5067114d5eb80ae9ca526582e Author: Gunnar Wrobel <[email protected]> Date: Mon Dec 12 06:40:25 2011 +0100 Switch to using Horde_Test. kronolith/package.xml | 7 + kronolith/test/Kronolith/Autoload.php | 7 + kronolith/test/Kronolith/Integration/Driver/Base.php | 139 ++++ kronolith/test/Kronolith/Integration/Driver/KolabTest.php | 47 ++ kronolith/test/Kronolith/Integration/Driver/Sql/Base.php | 45 ++ .../test/Kronolith/Integration/Driver/Sql/Pdo/SqliteTest.php | 62 ++ kronolith/test/Kronolith/Stub/ShareFactory.php | 16 + kronolith/test/Kronolith/Stub/Tagger.php | 17 + kronolith/test/Kronolith/Stub/Types.php | 8 + kronolith/test/Kronolith/TestCase.php | 151 +++- kronolith/test/Kronolith/Unit/KolabTest.php | 83 --- 11 files changed, 461 insertions(+), 121 deletions(-) create mode 100644 kronolith/test/Kronolith/Integration/Driver/Base.php create mode 100644 kronolith/test/Kronolith/Integration/Driver/KolabTest.php create mode 100644 kronolith/test/Kronolith/Integration/Driver/Sql/Base.php create mode 100644 kronolith/test/Kronolith/Integration/Driver/Sql/Pdo/SqliteTest.php create mode 100644 kronolith/test/Kronolith/Stub/ShareFactory.php create mode 100644 kronolith/test/Kronolith/Stub/Tagger.php create mode 100644 kronolith/test/Kronolith/Stub/Types.php delete mode 100644 kronolith/test/Kronolith/Unit/KolabTest.php http://git.horde.org/horde-git/-/commit/dd11353738ec0ea5067114d5eb80ae9ca526582e ----------------------------------------------------------------------- commit 8b60237e8996423af49c6101bd525e2d05686b2a Author: Gunnar Wrobel <[email protected]> Date: Mon Dec 12 06:41:47 2011 +0100 Fix incompatibilities with the interface of the parent class in a backward compatible way (removing type hints). kronolith/lib/Driver/Sql.php | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) http://git.horde.org/horde-git/-/commit/8b60237e8996423af49c6101bd525e2d05686b2a ----------------------------------------------------------------------- commit 5cec6a4f1c4e2cdac952467a634cfbf9040f13bc Author: Gunnar Wrobel <[email protected]> Date: Mon Dec 12 06:44:21 2011 +0100 Fix deleting events. Fix pass by reference. kronolith/lib/Driver/Kolab.php | 38 +++++++++++++++++--------------------- 1 files changed, 17 insertions(+), 21 deletions(-) http://git.horde.org/horde-git/-/commit/5cec6a4f1c4e2cdac952467a634cfbf9040f13bc ----------------------------------------------------------------------- commit dea38df75bb0bb2d3a790bcc693b671e39042efa Author: Gunnar Wrobel <[email protected]> Date: Mon Dec 12 06:45:22 2011 +0100 Changelog. kronolith/docs/CHANGES | 1 + kronolith/package.xml | 2 ++ 2 files changed, 3 insertions(+), 0 deletions(-) http://git.horde.org/horde-git/-/commit/dea38df75bb0bb2d3a790bcc693b671e39042efa ----------------------------------------------------------------------- commit 321002f84a8741f85fb414f9ff41a28369c4f423 Author: Gunnar Wrobel <[email protected]> Date: Mon Dec 12 06:51:03 2011 +0100 [gwr] Fixed naming of the default calendar for the Kolab backend. kronolith/lib/Calendars/Base.php | 70 +++ kronolith/lib/Calendars/Default.php | 48 ++ kronolith/lib/Calendars/Kolab.php | 23 + kronolith/lib/Factory/Calendars.php | 69 +++ kronolith/lib/Kronolith.php | 13 +- kronolith/package.xml | 56 ++- kronolith/test/Kronolith/Integration/Kronolith/Base.php | 110 +++++ kronolith/test/Kronolith/Integration/Kronolith/KolabTest.php | 52 ++ kronolith/test/Kronolith/Integration/Kronolith/Sql/Base.php | 45 ++ .../test/Kronolith/Integration/Kronolith/Sql/Pdo/SqliteTest.php | 58 +++ 10 files changed, 529 insertions(+), 15 deletions(-) create mode 100644 kronolith/lib/Calendars/Base.php create mode 100644 kronolith/lib/Calendars/Default.php create mode 100644 kronolith/lib/Calendars/Kolab.php create mode 100644 kronolith/lib/Factory/Calendars.php create mode 100644 kronolith/test/Kronolith/Integration/Kronolith/Base.php create mode 100644 kronolith/test/Kronolith/Integration/Kronolith/KolabTest.php create mode 100644 kronolith/test/Kronolith/Integration/Kronolith/Sql/Base.php create mode 100644 kronolith/test/Kronolith/Integration/Kronolith/Sql/Pdo/SqliteTest.php http://git.horde.org/horde-git/-/commit/321002f84a8741f85fb414f9ff41a28369c4f423 ----------------------------------------------------------------------- commit 00ba61cac7fc9fb04df92f64e14e199e79852b4e Author: Gunnar Wrobel <[email protected]> Date: Mon Dec 12 06:51:57 2011 +0100 [gwr] Fixed recurrence handling with the Kolab backend. kronolith/docs/CHANGES | 2 + kronolith/lib/Event/Kolab.php | 46 ++++++++++++++++++++++++++++++++++++++-- kronolith/package.xml | 2 + 3 files changed, 47 insertions(+), 3 deletions(-) http://git.horde.org/horde-git/-/commit/00ba61cac7fc9fb04df92f64e14e199e79852b4e ----------------------------------------------------------------------- commit 8732ae48600f7827a4f733060e44714e02770a1f Author: Gunnar Wrobel <[email protected]> Date: Mon Dec 12 07:01:16 2011 +0100 Optional. kronolith/package.xml | 14 +++++++------- 1 files changed, 7 insertions(+), 7 deletions(-) http://git.horde.org/horde-git/-/commit/8732ae48600f7827a4f733060e44714e02770a1f __ commits mailing list Frequently Asked Questions: http://horde.org/faq/ To unsubscribe, mail: [email protected]
