[Pkg-owncloud-commits] [php-sabredav] branch master updated (edd3a98 -> d83e37c)

David Prévot taffit at moszumanska.debian.org
Wed Oct 29 20:52:03 UTC 2014


This is an automated email from the git hooks/post-receive script.

taffit pushed a change to branch master
in repository php-sabredav.

      from  edd3a98   Update changelog for 2.1.0~alpha1-1 release
       new  356280e   Added HTTP tests.
       new  8115923   ATTENDEE may not exist in events.
       new  a2f1ba5   Drop useless executable bit
       new  a74a7fe   Merge pull request #532 from DavidPrevot/executable
       new  80ada83   phpcbf: Drop extra ending spaces
       new  ad1c56f   Merge pull request #530 from DavidPrevot/phpcbf
       new  458b7cc   Merge branch 'master' of github.com:fruux/sabre-dav
       new  05f4c18   Adding calendar-user-address-set to default principal property search.
       new  5474037   When returning calendar objects, the id and calendarid are no longer needed.
       new  4a2daba   This property was missing.
       new  44102fc   Migrated notifications-related functionality to its own plugin.
       new  f883dca   Merge pull request #534 from fruux/notifications-plugin
       new  09bc880   Optimizing getChild on the caldav calendar home.
       new  2342ada   Fixes suggested by SensioLabsInsight :)
       new  17fbd32   Another insight fix.
       new  90f0552   Typo.
       new  472438b   Incorrectly testing UUIDUtil.
       new  a409c06   Incorrect class reference. Needs test
       new  a179a4d   Deliver events to calendars that support VEVENT.
       new  e98e91f   Added a new calendarObjectChange event.
       new  8122fdd   Updated changelog.
       new  de4134a   Fixed docblocks.
       new  e155785   Merge pull request #538 from fruux/calendarObjectChangeEvent
       new  a23ac08   afterResponse event
       new  67ab2cc   unit test for afterResponse event
       new  39272eb   Merge pull request #539 from joserobleda/master
       new  9f54b0a   Updated changelog.
       new  d6f909b   Removed unneccessary early return in `afterResponse` event
       new  75c8f2b   Merge pull request #540 from staabm/patch-1
       new  e807c8d   Making all the tableName properties public
       new  ac40003   Added getCalendarObjectByUID to PDO backend.
       new  3a53506   Testing MOVE for property storage.
       new  61394a8   Removing SCHEDULE-STATUS in some cases.
       new  78c640c   Set release date.
       new  3730c6e   Version is alpha2
       new  e390d39   Preparing for release.
       new  8b9db51   Merge branch '2.0'
       new  93d8f34   Imported Upstream version 2.1.0~alpha2
       new  c9e02d0   Merge tag 'upstream/2.1.0_alpha2'
       new  7b6d7ae   Refresh patch header
       new  2c079f2   Revert "Drop useless executable bit"
       new  d83e37c   Update changelog for 2.1.0~alpha2-1 release

The 42 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 ChangeLog.md                                       |  29 +++-
 debian/changelog                                   |  10 ++
 debian/patches/0003-Increase-timeout.patch         |   2 +-
 debian/rules                                       |   4 -
 examples/sql/mysql.calendars.sql                   |   0
 lib/CalDAV/Backend/BackendInterface.php            |   2 -
 lib/CalDAV/Backend/PDO.php                         |  59 ++++++-
 lib/CalDAV/CalendarHome.php                        |  50 ++++--
 lib/CalDAV/CalendarObject.php                      |   5 +-
 lib/CalDAV/CalendarQueryParser.php                 |   2 -
 lib/CalDAV/Notifications/Plugin.php                | 162 ++++++++++++++++++++
 lib/CalDAV/Plugin.php                              | 132 +++++++---------
 lib/CalDAV/Schedule/IInbox.php                     |   2 +-
 lib/CalDAV/Schedule/ISchedulingObject.php          |   2 +-
 lib/CalDAV/Schedule/Plugin.php                     | 152 +++++++-----------
 lib/CalDAV/SharedCalendar.php                      |   2 -
 lib/CalDAV/UserCalendars.php                       |   2 +-
 lib/CardDAV/AddressBookQueryParser.php             |   2 -
 lib/CardDAV/Backend/PDO.php                        |  11 +-
 lib/DAV/Auth/Backend/BasicCallBack.php             |   1 -
 lib/DAV/Auth/Backend/PDO.php                       |   4 +-
 lib/DAV/Browser/Plugin.php                         |   2 +-
 lib/DAV/Client.php                                 |   7 -
 lib/DAV/Exception/InvalidSyncToken.php             |   4 +-
 lib/DAV/Locks/Backend/PDO.php                      |  14 +-
 lib/DAV/Locks/Plugin.php                           |   2 -
 lib/DAV/PartialUpdate/Plugin.php                   |   2 +-
 lib/DAV/Property/GetLastModified.php               |   1 -
 lib/DAV/Server.php                                 |   6 +-
 lib/DAV/Tree.php                                   |   2 +-
 lib/DAV/URLUtil.php                                |   8 +-
 lib/DAV/UUIDUtil.php                               |   2 +-
 lib/DAV/Version.php                                |   2 +-
 lib/DAVACL/AbstractPrincipalCollection.php         |  12 +-
 lib/DAVACL/Plugin.php                              |   5 +-
 lib/DAVACL/PrincipalBackend/PDO.php                |  18 ++-
 tests/Sabre/CalDAV/Backend/AbstractPDOTest.php     |  20 +++
 tests/Sabre/CalDAV/Backend/Mock.php                | 161 +------------------
 tests/Sabre/CalDAV/Backend/MockSharing.php         | 170 +++++++++++++++++++++
 .../Sabre/CalDAV/CalendarHomeNotificationsTest.php |  53 +++++++
 .../CalDAV/CalendarHomeSharedCalendarsTest.php     |   2 +-
 .../Sabre/CalDAV/CalendarHomeSubscriptionsTest.php |   4 +-
 tests/Sabre/CalDAV/CalendarObjectTest.php          |   2 +-
 .../Sabre/CalDAV/Notifications/CollectionTest.php  |   2 +-
 tests/Sabre/CalDAV/Notifications/NodeTest.php      |   2 +-
 tests/Sabre/CalDAV/Notifications/PluginTest.php    | 165 ++++++++++++++++++++
 tests/Sabre/CalDAV/PluginTest.php                  |  78 ----------
 .../Sabre/CalDAV/Schedule/ScheduleDeliverTest.php  |  18 ++-
 tests/Sabre/CalDAV/ShareableCalendarTest.php       |   6 +-
 tests/Sabre/CalDAV/SharedCalendarTest.php          |   2 +-
 tests/Sabre/DAV/Mock/File.php                      |  13 ++
 tests/Sabre/DAV/PropertyStorage/PluginTest.php     |  24 ++-
 tests/Sabre/DAV/ServerEventsTest.php               |  16 ++
 tests/Sabre/DAVServerTest.php                      |   9 ++
 tests/phpunit.xml                                  |   2 +-
 55 files changed, 944 insertions(+), 527 deletions(-)
 mode change 100755 => 100644 examples/sql/mysql.calendars.sql
 create mode 100644 lib/CalDAV/Notifications/Plugin.php
 create mode 100644 tests/Sabre/CalDAV/Backend/MockSharing.php
 create mode 100644 tests/Sabre/CalDAV/CalendarHomeNotificationsTest.php
 create mode 100644 tests/Sabre/CalDAV/Notifications/PluginTest.php

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-owncloud/php-sabredav.git



More information about the Pkg-owncloud-commits mailing list