[Pkg-owncloud-commits] [php-sabredav] 07/29: Merge branch 'master' of github.com:fruux/sabre-dav

David Prévot taffit at moszumanska.debian.org
Fri Jul 8 00:24:02 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 30253916f074c1fe6207b95d0669aad180389468
Merge: 045bee6 7239902
Author: Evert Pot <me at evertpot.com>
Date:   Fri May 20 23:25:42 2016 -0400

    Merge branch 'master' of github.com:fruux/sabre-dav

 .travis.yml                                        |  13 +-
 CHANGELOG.md                                       |  52 +-
 README.md                                          |   6 +
 bin/build.php                                      |   2 +-
 composer.json                                      |   2 +-
 ...ysql.addressbook.sql => mysql.addressbooks.sql} |   0
 examples/sql/mysql.calendars.sql                   |   3 +-
 ...gsql.addressbook.sql => pgsql.addressbooks.sql} |  10 +-
 examples/sql/pgsql.calendars.sql                   |  70 ++-
 examples/sql/pgsql.principals.sql                  |   8 -
 examples/sql/pgsql.propertystorage.sql             |   2 +-
 lib/CalDAV/Backend/PDO.php                         |  56 +-
 lib/CalDAV/Backend/SimplePDO.php                   |   2 +-
 lib/CalDAV/Calendar.php                            |  59 +-
 lib/CalDAV/CalendarHome.php                        |  52 +-
 lib/CalDAV/CalendarObject.php                      |  61 +--
 lib/CalDAV/ICSExportPlugin.php                     |  16 +-
 lib/CalDAV/Notifications/Collection.php            |  76 +--
 lib/CalDAV/Notifications/Node.php                  |  76 +--
 lib/CalDAV/Plugin.php                              |  19 +
 lib/CalDAV/Schedule/Inbox.php                      |  64 +--
 lib/CalDAV/Schedule/Outbox.php                     |  69 +--
 lib/CalDAV/Schedule/Plugin.php                     |  83 ++-
 lib/CalDAV/Schedule/SchedulingObject.php           |  16 +-
 lib/CalDAV/SharedCalendar.php                      |  22 -
 lib/CalDAV/Subscriptions/Subscription.php          |  63 +--
 lib/CardDAV/AddressBook.php                        |  82 +--
 lib/CardDAV/AddressBookHome.php                    |  76 +--
 lib/CardDAV/Backend/PDO.php                        |   9 +-
 lib/CardDAV/Card.php                               |  53 +-
 lib/CardDAV/VCFExportPlugin.php                    |  28 +-
 lib/DAV/Auth/Backend/AbstractDigest.php            |   6 +
 lib/DAV/Auth/Plugin.php                            | 104 +++-
 lib/DAV/Browser/Plugin.php                         |   6 +-
 lib/DAV/Client.php                                 |  19 +-
 lib/DAV/PropertyStorage/Backend/PDO.php            |  33 +-
 lib/DAV/Sharing/Plugin.php                         |  30 +-
 lib/DAV/Xml/Element/Sharee.php                     |   4 +-
 lib/DAV/Xml/Property/Invite.php                    |   2 +-
 lib/DAVACL/{FS/File.php => ACLTrait.php}           |  59 +-
 lib/DAVACL/FS/Collection.php                       |  48 +-
 lib/DAVACL/FS/File.php                             |  49 +-
 lib/DAVACL/FS/HomeCollection.php                   |  70 +--
 lib/DAVACL/IACL.php                                |   1 -
 lib/DAVACL/Plugin.php                              | 595 ++++++++++++++++-----
 lib/DAVACL/Principal.php                           |  71 +--
 lib/DAVACL/PrincipalCollection.php                 |  57 +-
 lib/DAVACL/Xml/Property/SupportedPrivilegeSet.php  |  20 +-
 .../Xml/Request/AclPrincipalPropSetReport.php      |  67 +++
 lib/DAVACL/Xml/Request/PrincipalMatchReport.php    | 107 ++++
 tests/Sabre/CalDAV/Backend/AbstractPDOTest.php     | 421 ++++++++++++++-
 tests/Sabre/CalDAV/Backend/PDOMySQLTest.php        |  32 +-
 tests/Sabre/CalDAV/Backend/PDOPgSqlTest.php        |   9 +
 tests/Sabre/CalDAV/Backend/PDOSqliteTest.php       |  30 +-
 tests/Sabre/CalDAV/Backend/SimplePDOTest.php       | 445 +++++++++++++++
 tests/Sabre/CalDAV/CalendarHomeTest.php            |   8 +-
 tests/Sabre/CalDAV/CalendarObjectTest.php          |  16 +-
 tests/Sabre/CalDAV/CalendarTest.php                |  13 +-
 tests/Sabre/CalDAV/ICSExportPluginTest.php         |  74 ++-
 .../Sabre/CalDAV/Notifications/CollectionTest.php  |  11 +-
 tests/Sabre/CalDAV/Notifications/NodeTest.php      |  11 +-
 tests/Sabre/CalDAV/Notifications/PluginTest.php    |   9 +-
 tests/Sabre/CalDAV/PluginTest.php                  |   9 +-
 tests/Sabre/CalDAV/Principal/UserTest.php          |   4 +-
 .../Sabre/CalDAV/Schedule/FreeBusyRequestTest.php  |   1 +
 tests/Sabre/CalDAV/Schedule/InboxTest.php          |  43 +-
 tests/Sabre/CalDAV/Schedule/OutboxTest.php         |  46 +-
 .../Sabre/CalDAV/Schedule/SchedulingObjectTest.php |  34 +-
 .../CalDAV/Subscriptions/SubscriptionTest.php      |  16 +-
 tests/Sabre/CardDAV/AddressBookHomeTest.php        |  11 +-
 tests/Sabre/CardDAV/AddressBookTest.php            |  56 +-
 tests/Sabre/CardDAV/Backend/AbstractPDOTest.php    |  48 +-
 tests/Sabre/CardDAV/Backend/PDOMySQLTest.php       |  28 +-
 tests/Sabre/CardDAV/Backend/PDOPgSqlTest.php       |   9 +
 tests/Sabre/CardDAV/Backend/PDOSqliteTest.php      |  46 +-
 tests/Sabre/CardDAV/CardTest.php                   |   9 +-
 tests/Sabre/CardDAV/VCFExportTest.php              |  43 ++
 tests/Sabre/DAV/Auth/Backend/AbstractPDOTest.php   |  14 +-
 tests/Sabre/DAV/Auth/Backend/PDOMySQLTest.php      |  26 +-
 tests/Sabre/DAV/Auth/Backend/PDOPgSqlTest.php      |   9 +
 tests/Sabre/DAV/Auth/Backend/PDOSqliteTest.php     |  21 +-
 tests/Sabre/DAV/Auth/PluginTest.php                |   2 -
 tests/Sabre/DAV/Browser/PluginTest.php             |   8 +-
 tests/Sabre/DAV/DbTestHelperTrait.php              | 140 +++++
 tests/Sabre/DAV/Locks/Backend/PDOMySQLTest.php     |  27 +-
 tests/Sabre/DAV/Locks/Backend/PDOPgSqlTest.php     |   9 +
 tests/Sabre/DAV/Locks/Backend/PDOSqliteTest.php    |   9 +
 tests/Sabre/DAV/Locks/Backend/PDOTest.php          |  21 +-
 .../PropertyStorage/Backend/AbstractPDOTest.php    |  13 +-
 .../DAV/PropertyStorage/Backend/PDOMysqlTest.php   |  23 +-
 .../DAV/PropertyStorage/Backend/PDOPgSqlTest.php   |   9 +
 .../DAV/PropertyStorage/Backend/PDOSqliteTest.php  |  29 +-
 tests/Sabre/DAV/Sharing/PluginTest.php             |   2 +-
 tests/Sabre/DAVACL/ACLMethodTest.php               |  18 +-
 .../Sabre/DAVACL/AclPrincipalPropSetReportTest.php |  69 +++
 tests/Sabre/DAVACL/AllowAccessTest.php             |  26 +-
 tests/Sabre/DAVACL/BlockAccessTest.php             |  12 +-
 tests/Sabre/DAVACL/ExpandPropertiesTest.php        |   4 +-
 tests/Sabre/DAVACL/FS/HomeCollectionTest.php       |   9 +-
 tests/Sabre/DAVACL/PluginPropertiesTest.php        |  16 +-
 tests/Sabre/DAVACL/PluginUpdatePropertiesTest.php  |  19 +-
 .../DAVACL/PrincipalBackend/AbstractPDOTest.php    |  28 +-
 .../Sabre/DAVACL/PrincipalBackend/PDOMySQLTest.php |  39 +-
 .../Sabre/DAVACL/PrincipalBackend/PDOPgSqlTest.php |   9 +
 .../DAVACL/PrincipalBackend/PDOSqliteTest.php      |  36 +-
 tests/Sabre/DAVACL/PrincipalMatchTest.php          | 123 +++++
 tests/Sabre/DAVACL/PrincipalPropertySearchTest.php |   1 +
 .../DAVACL/PrincipalSearchPropertySetTest.php      |   1 +
 tests/Sabre/DAVACL/PrincipalTest.php               |   6 +-
 tests/Sabre/DAVACL/SimplePluginTest.php            |  25 +-
 .../Xml/Property/SupportedPrivilegeSetTest.php     |  35 +-
 .../Xml/Request/AclPrincipalPropSetReportTest.php  |  30 ++
 .../Xml/Request/PrincipalMatchReportTest.php       |  51 ++
 tests/Sabre/DAVServerTest.php                      |  21 +-
 tests/Sabre/TestUtil.php                           |  13 +
 tests/bootstrap.php                                |   6 +-
 116 files changed, 2889 insertions(+), 2050 deletions(-)

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



More information about the Pkg-owncloud-commits mailing list