[Pkg-owncloud-commits] [php-sabredav] 29/80: Merge branch 'master' into master

David Prévot taffit at moszumanska.debian.org
Thu Jan 7 02:56:22 UTC 2016


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

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

commit db8cb6359b52ed41d2b412461e2ae40850585611
Merge: 75f709c d4353c7
Author: vmire <vincent_257 at mireau.com>
Date:   Fri Nov 27 11:13:04 2015 +0100

    Merge branch 'master' into master

 .travis.yml                                        |   9 +-
 CHANGELOG.md                                       | 136 ++++++-
 README.md                                          |  18 +-
 bin/migrateto21.php                                |   8 +-
 composer.json                                      |  14 +-
 examples/addressbookserver.php                     |   2 +-
 examples/calendarserver.php                        |   2 +-
 examples/fileserver.php                            |   2 +-
 examples/groupwareserver.php                       |   2 +-
 examples/minimal.php                               |  20 +
 examples/simplefsserver.php                        | 123 ------
 examples/sql/mysql.addressbook.sql                 |   6 +-
 examples/sql/mysql.calendars.sql                   |  10 +-
 examples/sql/mysql.locks.sql                       |   3 +-
 examples/sql/mysql.principals.sql                  |   5 +-
 examples/sql/mysql.propertystorage.sql             |   3 +-
 examples/sql/mysql.users.sql                       |   2 +-
 lib/CalDAV/Backend/AbstractBackend.php             |   7 +-
 lib/CalDAV/Backend/PDO.php                         |   7 +-
 lib/CalDAV/Calendar.php                            |   1 +
 lib/CalDAV/CalendarQueryValidator.php              |  12 +-
 lib/CalDAV/ICSExportPlugin.php                     |   9 +-
 lib/CalDAV/Notifications/Plugin.php                |   2 +
 lib/CalDAV/Plugin.php                              |  41 +-
 lib/CalDAV/Schedule/IMipPlugin.php                 |   2 +-
 lib/CalDAV/Schedule/Inbox.php                      |  16 +-
 lib/CalDAV/Schedule/Plugin.php                     | 173 ++++++---
 lib/CalDAV/Subscriptions/Plugin.php                |   2 +
 lib/CalDAV/Xml/Notification/InviteReply.php        |   2 +
 .../Xml/Property/SupportedCalendarComponentSet.php |   7 +-
 lib/CardDAV/AddressBook.php                        |   1 +
 lib/CardDAV/Plugin.php                             |  35 +-
 lib/CardDAV/VCFExportPlugin.php                    |   7 +-
 lib/DAV/Auth/Backend/AbstractBasic.php             |   4 +-
 lib/DAV/Auth/Backend/AbstractDigest.php            |   4 +-
 lib/DAV/Auth/Backend/Apache.php                    |   2 +-
 lib/DAV/Auth/Backend/BackendInterface.php          |   2 +-
 lib/DAV/Auth/Plugin.php                            |  17 +
 lib/DAV/Browser/Plugin.php                         |  19 +-
 lib/DAV/Client.php                                 |   7 +
 lib/DAV/Collection.php                             |   2 +-
 lib/DAV/CorePlugin.php                             |  11 +-
 lib/DAV/IMultiGet.php                              |   1 +
 lib/DAV/Locks/Backend/PDO.php                      |   2 +-
 lib/DAV/Locks/Plugin.php                           |   1 +
 lib/DAV/Mount/Plugin.php                           |   1 +
 lib/DAV/PropPatch.php                              |   9 +-
 lib/DAV/PropertyStorage/Backend/PDO.php            |  19 +-
 lib/DAV/Server.php                                 |  35 +-
 lib/DAV/Sync/Plugin.php                            |   3 +-
 lib/DAV/Tree.php                                   |   4 +-
 lib/DAV/Version.php                                |   2 +-
 lib/DAV/Xml/Element/Prop.php                       |   1 +
 lib/DAV/Xml/Element/Response.php                   |  62 ++-
 lib/DAV/Xml/Property/Href.php                      |   2 +-
 lib/DAV/Xml/Request/PropPatch.php                  |   8 +-
 lib/DAV/Xml/Response/MultiStatus.php               |   1 +
 lib/DAV/Xml/Service.php                            |   1 -
 lib/DAVACL/AbstractPrincipalCollection.php         |   1 +
 lib/DAVACL/Xml/Property/Acl.php                    |   2 +-
 .../Xml/Property/CurrentUserPrivilegeSet.php       |   1 +
 tests/Sabre/CalDAV/CalendarQueryValidatorTest.php  |   3 +
 .../CalDAV/ExpandEventsDTSTARTandDTENDTest.php     |  45 ++-
 .../ExpandEventsDTSTARTandDTENDbyDayTest.php       |  47 ++-
 .../Sabre/CalDAV/ExpandEventsFloatingTimeTest.php  |  51 ++-
 tests/Sabre/CalDAV/GetEventsByTimerangeTest.php    |  66 ++--
 tests/Sabre/CalDAV/Issue203Test.php                |  57 ++-
 tests/Sabre/CalDAV/PluginTest.php                  | 423 +++++++++++----------
 .../Sabre/CalDAV/Schedule/FreeBusyRequestTest.php  | 248 ++++++++++--
 tests/Sabre/CalDAV/Schedule/InboxTest.php          |  55 ++-
 tests/Sabre/CalDAV/Schedule/PluginBasicTest.php    |   6 +-
 .../Sabre/CalDAV/Schedule/PluginPropertiesTest.php |  67 +++-
 .../Property/SupportedCalendarComponentSetTest.php | 107 ++++++
 .../CalDAV/Xml/Request/CalendarQueryReportTest.php |  14 +-
 tests/Sabre/DAV/ClientTest.php                     |   8 +
 tests/Sabre/DAV/HttpGetTest.php                    |  43 +--
 tests/Sabre/DAV/HttpHeadTest.php                   |  97 +++++
 tests/Sabre/DAV/HttpMoveTest.php                   | 119 ++++++
 tests/Sabre/DAV/HttpPutTest.php                    |   2 +-
 tests/Sabre/DAV/Locks/PluginTest.php               |  11 +-
 tests/Sabre/DAV/Mock/Collection.php                |  44 +--
 tests/Sabre/DAV/Mock/File.php                      |  24 +-
 tests/Sabre/DAV/Mock/PropertiesCollection.php      |  20 +-
 tests/Sabre/DAV/Mock/StreamingFile.php             |   4 +-
 tests/Sabre/DAV/ServerCopyMoveTest.php             |  68 ----
 tests/Sabre/DAV/Xml/Element/ResponseTest.php       | 131 +++++++
 tests/Sabre/DAV/Xml/Property/HrefTest.php          |  15 +
 tests/Sabre/DAV/Xml/Request/PropPatchTest.php      |  16 +-
 tests/Sabre/DAVServerTest.php                      |  35 +-
 89 files changed, 1852 insertions(+), 887 deletions(-)

-- 
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