[commits] Horde branch caldav updated. c8cbc9d50b2b9e51150c4d112a6bfe79c2fe412d

Jan Schneider jan at horde.org
Wed May 1 11:22:20 UTC 2013


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

from: b47a83ec8abd8cf2c4b45a810c5e0ee74dad3e13

9b09c85 Remove implementation instructions for already implemented methods.
19d2a3c Shorter tab titles.
40099db Fix visibility.
879750c Consolidate error catching.
65fef37 Add mapping of client IDs to server IDs.
5501f43 Remove dummy method.
80b7341 Remove old class.
9388839 Add todo.
0f6aa90 Split out class for root folder.
29561e8 Sanity check.
41deb54 Fix undefined error.
2570494 Don't fall back to current time.
f28f4b7 Split collection and object ID mappings.
08f1844 Add task lists to CalDAV resources.
c8cbc9d Fix calculating creation and modification times.

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

commit 9b09c85c9f89a6ac9aa851b35a265c51c1a0d4ef
Author: Jan Schneider <jan at horde.org>
Date:   Thu Apr 18 14:11:09 2013 +0200

    Remove implementation instructions for already implemented methods.

 framework/Dav/lib/Horde/Dav/Calendar/Backend.php |   36 ----------------------
 1 files changed, 0 insertions(+), 36 deletions(-)

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

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

commit 19d2a3c44677a2c869ca99033022e0a675f85908
Author: Jan Schneider <jan at horde.org>
Date:   Mon Apr 22 18:07:17 2013 +0200

    Shorter tab titles.

 horde/config/conf.xml |   28 ++++++++++++++--------------
 1 files changed, 14 insertions(+), 14 deletions(-)

http://git.horde.org/horde-git/-/commit/19d2a3c44677a2c869ca99033022e0a675f85908

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

commit 40099dbd0dc59808254c43d2335c8cfa06970800
Author: Jan Schneider <jan at horde.org>
Date:   Fri Apr 26 11:21:09 2013 +0200

    Fix visibility.

 framework/Dav/vendor/sabre/dav/lib/Sabre/DAV/Client.php |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

http://git.horde.org/horde-git/-/commit/40099dbd0dc59808254c43d2335c8cfa06970800

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

commit 879750c0f22a3cf8f91d8a1a8100e0bf47b72a18
Author: Jan Schneider <jan at horde.org>
Date:   Fri Apr 26 11:33:57 2013 +0200

    Consolidate error catching.

 kronolith/lib/Driver/Ical.php |   35 ++++++++++++++++++-----------------
 1 files changed, 18 insertions(+), 17 deletions(-)

http://git.horde.org/horde-git/-/commit/879750c0f22a3cf8f91d8a1a8100e0bf47b72a18

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

commit 65fef374ab86a5b8bbb8fce62165e679d7bf6c1c
Author: Jan Schneider <jan at horde.org>
Date:   Fri Apr 26 12:23:38 2013 +0200

    Add mapping of client IDs to server IDs.

 framework/Core/lib/Horde/Core/Factory/DavStorage.php          |   44 +++
 framework/Core/lib/Horde/Registry.php                         |    1 +
 framework/Core/package.xml                                    |   19 +-
 framework/Dav/lib/Horde/Dav/Storage/Base.php                  |   70 ++++
 framework/Dav/lib/Horde/Dav/Storage/Sql.php                   |  153 +++++++++
 framework/Dav/migration/Horde/Dav/1_horde_dav_base_tables.php |   47 +++
 framework/Dav/package.xml                                     |   18 +-
 horde/config/conf.xml                                         |   15 +
 kronolith/lib/Application.php                                 |   59 +++-
 kronolith/lib/Driver.php                                      |   13 +-
 10 files changed, 423 insertions(+), 16 deletions(-)
 create mode 100644 framework/Core/lib/Horde/Core/Factory/DavStorage.php
 create mode 100644 framework/Dav/lib/Horde/Dav/Storage/Base.php
 create mode 100644 framework/Dav/lib/Horde/Dav/Storage/Sql.php
 create mode 100644 framework/Dav/migration/Horde/Dav/1_horde_dav_base_tables.php

http://git.horde.org/horde-git/-/commit/65fef374ab86a5b8bbb8fce62165e679d7bf6c1c

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

commit 5501f432194694f29c300daa67a91ff0204c8aa8
Author: Jan Schneider <jan at horde.org>
Date:   Fri Apr 26 12:25:18 2013 +0200

    Remove dummy method.

 framework/Dav/lib/Horde/Dav/Calendar/RootNode.php |   10 ----------
 1 files changed, 0 insertions(+), 10 deletions(-)

http://git.horde.org/horde-git/-/commit/5501f432194694f29c300daa67a91ff0204c8aa8

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

commit 80b73411cdff3aceb74bb3780f226236e9bff44b
Author: Jan Schneider <jan at horde.org>
Date:   Fri Apr 26 12:26:34 2013 +0200

    Remove old class.

 framework/Dav/lib/Horde/Dav/Auth/Backend/Horde.php |   55 --------------------
 framework/Dav/package.xml                          |   10 +---
 2 files changed, 2 insertions(+), 63 deletions(-)
 delete mode 100644 framework/Dav/lib/Horde/Dav/Auth/Backend/Horde.php

http://git.horde.org/horde-git/-/commit/80b73411cdff3aceb74bb3780f226236e9bff44b

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

commit 9388839651414687f49c8e8dffdb046781044637
Author: Jan Schneider <jan at horde.org>
Date:   Fri Apr 26 12:34:52 2013 +0200

    Add todo.

 framework/Dav/lib/Horde/Dav/Principals.php |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

http://git.horde.org/horde-git/-/commit/9388839651414687f49c8e8dffdb046781044637

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

commit 0f6aa9035f201b0cff8062ff8ac248df14d291ca
Author: Jan Schneider <jan at horde.org>
Date:   Fri Apr 26 12:51:18 2013 +0200

    Split out class for root folder.

 framework/Dav/lib/Horde/Dav/Collection.php     |   35 ---------
 framework/Dav/lib/Horde/Dav/RootCollection.php |   96 ++++++++++++++++++++++++
 framework/Dav/package.xml                      |    4 +-
 framework/Rpc/lib/Horde/Rpc/Webdav.php         |    7 +-
 4 files changed, 101 insertions(+), 41 deletions(-)
 create mode 100644 framework/Dav/lib/Horde/Dav/RootCollection.php

http://git.horde.org/horde-git/-/commit/0f6aa9035f201b0cff8062ff8ac248df14d291ca

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

commit 29561e8d5b81e3da6db8a810803b042de751553a
Author: Jan Schneider <jan at horde.org>
Date:   Wed May 1 12:07:54 2013 +0200

    Sanity check.

 nag/lib/Task.php |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

http://git.horde.org/horde-git/-/commit/29561e8d5b81e3da6db8a810803b042de751553a

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

commit 41deb548e693d7d4ddc2cd54a16b1256335a474e
Author: Jan Schneider <jan at horde.org>
Date:   Wed May 1 13:15:54 2013 +0200

    Fix undefined error.

 kronolith/lib/Driver/Ical.php |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

http://git.horde.org/horde-git/-/commit/41deb548e693d7d4ddc2cd54a16b1256335a474e

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

commit 2570494bca85b72ec5a116d1a7e96fb1d1040fd0
Author: Jan Schneider <jan at horde.org>
Date:   Wed May 1 13:17:29 2013 +0200

    Don't fall back to current time.
    
    If we use the current time as the last-modification time, the ETag will never
    match.

 kronolith/lib/Application.php |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

http://git.horde.org/horde-git/-/commit/2570494bca85b72ec5a116d1a7e96fb1d1040fd0

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

commit f28f4b7f5ab4447f0d5ab41d6e21a93919da4302
Author: Jan Schneider <jan at horde.org>
Date:   Wed May 1 13:20:31 2013 +0200

    Split collection and object ID mappings.

 framework/Dav/lib/Horde/Dav/Storage/Base.php                  |  116 +++++-
 framework/Dav/lib/Horde/Dav/Storage/Sql.php                   |  165 ++++++++-
 framework/Dav/migration/Horde/Dav/1_horde_dav_base_tables.php |   21 +-
 kronolith/lib/Application.php                                 |   64 ++--
 kronolith/lib/Driver.php                                      |    2 +-
 5 files changed, 302 insertions(+), 66 deletions(-)

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

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

commit 08f1844d2e99dd618234a6f4e9c85caa94e79b34
Author: Jan Schneider <jan at horde.org>
Date:   Wed May 1 13:21:24 2013 +0200

    Add task lists to CalDAV resources.

 framework/Dav/lib/Horde/Dav/Calendar/Backend.php |   80 ++++++---
 framework/Rpc/lib/Horde/Rpc/Webdav.php           |    2 +-
 nag/lib/Application.php                          |  225 ++++++++++++++++++++++
 nag/lib/Driver.php                               |    9 +
 4 files changed, 292 insertions(+), 24 deletions(-)

http://git.horde.org/horde-git/-/commit/08f1844d2e99dd618234a6f4e9c85caa94e79b34

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

commit c8cbc9d50b2b9e51150c4d112a6bfe79c2fe412d
Author: Jan Schneider <jan at horde.org>
Date:   Wed May 1 13:21:56 2013 +0200

    Fix calculating creation and modification times.

 nag/lib/Api.php |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

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




More information about the commits mailing list