[Pkg-owncloud-commits] [php-sabredav] 215/220: Merge tag 'upstream/3.2.0_alpha1'

David Prévot taffit at moszumanska.debian.org
Thu May 12 01:21:30 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 eb10223d4c61965bd3e11abab8ceefc552a43a67
Merge: 1789cb9 943cc0e
Author: David Prévot <taffit at debian.org>
Date:   Wed May 11 19:26:49 2016 -0400

    Merge tag 'upstream/3.2.0_alpha1'
    
    Upstream version 3.2.0~alpha1
    
    # gpg: Signature faite le mer. 11 mai 2016 19:26:49 AST
    # gpg:                avec la clef RSA 058C1CF944F6BD3C
    # gpg: Bonne signature de « David Prévot <david at tilapin.org> » [inconnu]
    # gpg:                 alias « David Prévot <davidp at altern.org> » [inconnu]
    # gpg:                 alias « David Prévot <davidp at no-log.org> » [inconnu]
    # gpg:                 alias « David Prévot <taffit at debian.org> » [inconnu]
    # gpg: Attention : cette clef n'est pas certifiée avec une signature de confiance.
    # gpg:             Rien n'indique que la signature appartient à son propriétaire.
    # Empreinte de clef principale : AE14 AD01 426D 2BFB 82EF  7E1E B82A 217A FDFE 09F2
    #    Empreinte de la sous-clef : 7875 4D07 BC09 5C74 48F7  8D66 058C 1CF9 44F6 BD3C

 .travis.yml                                        |  24 +-
 CHANGELOG.md                                       |  61 ++
 README.md                                          |  13 +-
 bin/migrateto17.php                                | 284 --------
 bin/migrateto21.php                                |   4 -
 bin/migrateto32.php                                | 268 ++++++++
 bin/naturalselection                               |   2 +-
 composer.json                                      |  12 +-
 examples/groupwareserver.php                       |  13 +-
 ...ysql.addressbook.sql => mysql.addressbooks.sql} |   0
 examples/sql/mysql.calendars.sql                   |  20 +-
 ...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 +-
 examples/sql/sqlite.calendars.sql                  |  20 +-
 lib/CalDAV/Backend/BackendInterface.php            |   6 +-
 lib/CalDAV/Backend/NotificationSupport.php         |  15 +
 lib/CalDAV/Backend/PDO.php                         | 377 +++++++++--
 lib/CalDAV/Backend/SharingSupport.php              | 225 +------
 lib/CalDAV/Backend/SimplePDO.php                   | 296 ++++++++
 lib/CalDAV/Calendar.php                            |  63 +-
 lib/CalDAV/CalendarHome.php                        |  64 +-
 lib/CalDAV/CalendarObject.php                      |  61 +-
 lib/CalDAV/ICSExportPlugin.php                     |  22 +-
 lib/CalDAV/IShareableCalendar.php                  |  48 --
 lib/CalDAV/ISharedCalendar.php                     |  28 +-
 lib/CalDAV/Notifications/Collection.php            |  76 +--
 lib/CalDAV/Notifications/Node.php                  |  76 +--
 lib/CalDAV/Plugin.php                              | 113 +++-
 lib/CalDAV/Schedule/Inbox.php                      |  64 +-
 lib/CalDAV/Schedule/Outbox.php                     |  69 +-
 lib/CalDAV/Schedule/Plugin.php                     | 107 ++-
 lib/CalDAV/Schedule/SchedulingObject.php           |  16 +-
 lib/CalDAV/ShareableCalendar.php                   |  72 --
 lib/CalDAV/SharedCalendar.php                      | 237 ++++---
 lib/CalDAV/SharingPlugin.php                       | 106 ++-
 lib/CalDAV/Subscriptions/Subscription.php          |  67 +-
 lib/CalDAV/Xml/Notification/Invite.php             |  11 +-
 lib/CalDAV/Xml/Notification/InviteReply.php        |   5 +-
 lib/CalDAV/Xml/Property/Invite.php                 | 209 ++----
 lib/CalDAV/Xml/Request/InviteReply.php             |  11 +-
 lib/CalDAV/Xml/Request/Share.php                   |  63 +-
 lib/CardDAV/AddressBook.php                        |  82 +--
 lib/CardDAV/AddressBookHome.php                    |  76 +--
 lib/CardDAV/Backend/BackendInterface.php           |   7 +-
 lib/CardDAV/Backend/PDO.php                        |   9 +-
 lib/CardDAV/Card.php                               |  53 +-
 lib/CardDAV/Plugin.php                             |  66 +-
 lib/CardDAV/VCFExportPlugin.php                    |  28 +-
 lib/DAV/Auth/Backend/AbstractDigest.php            |   6 +
 lib/DAV/Auth/Plugin.php                            | 126 +++-
 lib/DAV/Browser/Plugin.php                         |  13 +-
 lib/DAV/Browser/assets/sabredav.css                |   6 +-
 lib/DAV/Client.php                                 |  19 +-
 lib/DAV/CorePlugin.php                             |  40 +-
 lib/DAV/FS/Directory.php                           |   6 +-
 lib/DAV/File.php                                   |  20 +-
 lib/DAV/ICollection.php                            |   4 +-
 lib/DAV/IFile.php                                  |   2 +-
 lib/DAV/INode.php                                  |   5 +-
 lib/DAV/PropertyStorage/Backend/PDO.php            |  33 +-
 lib/DAV/Server.php                                 |  39 +-
 lib/DAV/Sharing/ISharedNode.php                    |  69 ++
 lib/DAV/Sharing/Plugin.php                         | 342 ++++++++++
 lib/DAV/Tree.php                                   |   2 +-
 lib/DAV/Version.php                                |   2 +-
 lib/DAV/Xml/Element/Sharee.php                     | 199 ++++++
 lib/DAV/Xml/Property/Href.php                      |  17 +-
 lib/DAV/Xml/Property/Invite.php                    |  70 ++
 lib/DAV/Xml/Property/LocalHref.php                 |  48 ++
 lib/DAV/Xml/Property/ShareAccess.php               | 143 ++++
 lib/DAV/Xml/Request/ShareResource.php              |  81 +++
 lib/DAVACL/{FS/File.php => ACLTrait.php}           |  59 +-
 lib/DAVACL/AbstractPrincipalCollection.php         |   2 +-
 lib/DAVACL/FS/Collection.php                       |  52 +-
 lib/DAVACL/FS/File.php                             |  49 +-
 lib/DAVACL/FS/HomeCollection.php                   |  72 +-
 lib/DAVACL/IACL.php                                |   1 -
 lib/DAVACL/Plugin.php                              | 612 +++++++++++++----
 lib/DAVACL/Principal.php                           |  71 +-
 lib/DAVACL/PrincipalBackend/PDO.php                |   2 +-
 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     | 624 +++++++++++++++--
 tests/Sabre/CalDAV/Backend/Mock.php                |  53 +-
 tests/Sabre/CalDAV/Backend/MockSharing.php         | 109 +--
 .../CalDAV/Backend/MockSubscriptionSupport.php     |   1 -
 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 ++++++++++++
 .../Sabre/CalDAV/CalendarHomeNotificationsTest.php |  12 +-
 .../CalDAV/CalendarHomeSharedCalendarsTest.php     |  53 +-
 .../Sabre/CalDAV/CalendarHomeSubscriptionsTest.php |  12 +-
 tests/Sabre/CalDAV/CalendarHomeTest.php            |  55 +-
 tests/Sabre/CalDAV/CalendarObjectTest.php          | 166 +++--
 tests/Sabre/CalDAV/CalendarQueryVAlarmTest.php     |  88 +--
 tests/Sabre/CalDAV/CalendarQueryValidatorTest.php  | 518 +++++++-------
 tests/Sabre/CalDAV/CalendarTest.php                |  97 +--
 .../Sabre/CalDAV/ExpandEventsDoubleEventsTest.php  |  37 +-
 tests/Sabre/CalDAV/FreeBusyReportTest.php          |  40 +-
 tests/Sabre/CalDAV/GetEventsByTimerangeTest.php    |   2 +-
 tests/Sabre/CalDAV/ICSExportPluginTest.php         | 747 +++++++--------------
 tests/Sabre/CalDAV/Issue166Test.php                |  32 +-
 tests/Sabre/CalDAV/Issue172Test.php                |  86 +--
 tests/Sabre/CalDAV/Issue205Test.php                |  39 +-
 tests/Sabre/CalDAV/Issue211Test.php                |  38 +-
 tests/Sabre/CalDAV/Issue220Test.php                |  36 +-
 tests/Sabre/CalDAV/Issue228Test.php                |  37 +-
 tests/Sabre/CalDAV/JCalTransformTest.php           |  39 +-
 .../Sabre/CalDAV/Notifications/CollectionTest.php  |  35 +-
 tests/Sabre/CalDAV/Notifications/NodeTest.php      |  25 +-
 tests/Sabre/CalDAV/Notifications/PluginTest.php    |  29 +-
 tests/Sabre/CalDAV/PluginTest.php                  |  13 +-
 tests/Sabre/CalDAV/Principal/CollectionTest.php    |   5 +-
 tests/Sabre/CalDAV/Principal/ProxyReadTest.php     |  19 +-
 tests/Sabre/CalDAV/Principal/ProxyWriteTest.php    |   5 +-
 tests/Sabre/CalDAV/Principal/UserTest.php          |  37 +-
 .../Sabre/CalDAV/Schedule/DeliverNewEventTest.php  |   5 +-
 .../Sabre/CalDAV/Schedule/FreeBusyRequestTest.php  |   3 +-
 tests/Sabre/CalDAV/Schedule/IMip/MockPlugin.php    |  12 +-
 tests/Sabre/CalDAV/Schedule/IMipPluginTest.php     |  18 +-
 tests/Sabre/CalDAV/Schedule/InboxTest.php          |  43 +-
 tests/Sabre/CalDAV/Schedule/OutboxPostTest.php     |  90 ++-
 tests/Sabre/CalDAV/Schedule/OutboxTest.php         |  73 +-
 .../PluginPropertiesWithSharedCalendarTest.php     |  34 +-
 .../Sabre/CalDAV/Schedule/ScheduleDeliverTest.php  |  74 +-
 .../Sabre/CalDAV/Schedule/SchedulingObjectTest.php | 180 +++--
 tests/Sabre/CalDAV/ShareableCalendarTest.php       |  60 --
 tests/Sabre/CalDAV/SharedCalendarTest.php          | 239 +++----
 tests/Sabre/CalDAV/SharingPluginTest.php           | 215 +++---
 tests/Sabre/CalDAV/Subscriptions/PluginTest.php    |   2 +-
 .../CalDAV/Subscriptions/SubscriptionTest.php      |  32 +-
 tests/Sabre/CalDAV/TestUtil.php                    |  65 +-
 tests/Sabre/CalDAV/ValidateICalTest.php            | 291 +++++---
 .../CalDAV/Xml/Notification/InviteReplyTest.php    |  67 +-
 tests/Sabre/CalDAV/Xml/Notification/InviteTest.php | 145 +---
 .../CalDAV/Xml/Notification/SystemStatusTest.php   |   9 +-
 .../Xml/Property/AllowedSharingModesTest.php       |   4 +-
 .../CalDAV/Xml/Property/EmailAddressSetTest.php    |   2 +-
 tests/Sabre/CalDAV/Xml/Property/InviteTest.php     | 152 ++---
 .../Property/SupportedCalendarComponentSetTest.php |   5 -
 tests/Sabre/CalDAV/Xml/Request/InviteReplyTest.php |   6 +-
 tests/Sabre/CalDAV/Xml/Request/ShareTest.php       |  45 +-
 tests/Sabre/CardDAV/AbstractPluginTest.php         |   6 +-
 tests/Sabre/CardDAV/AddressBookHomeTest.php        |  39 +-
 tests/Sabre/CardDAV/AddressBookQueryTest.php       | 126 ++--
 tests/Sabre/CardDAV/AddressBookTest.php            |  92 +--
 tests/Sabre/CardDAV/Backend/AbstractPDOTest.php    | 275 ++++----
 tests/Sabre/CardDAV/Backend/Mock.php               | 167 ++++-
 tests/Sabre/CardDAV/Backend/PDOMySQLTest.php       |  29 +-
 tests/Sabre/CardDAV/Backend/PDOPgSqlTest.php       |   9 +
 tests/Sabre/CardDAV/Backend/PDOSqliteTest.php      |  47 +-
 tests/Sabre/CardDAV/CardTest.php                   | 123 ++--
 tests/Sabre/CardDAV/IDirectoryTest.php             |   6 +-
 tests/Sabre/CardDAV/MultiGetTest.php               |  44 +-
 tests/Sabre/CardDAV/PluginTest.php                 |  17 +-
 tests/Sabre/CardDAV/SogoStripContentTypeTest.php   |  40 +-
 tests/Sabre/CardDAV/TestUtil.php                   |  14 +-
 tests/Sabre/CardDAV/VCFExportTest.php              |  73 +-
 tests/Sabre/CardDAV/ValidateFilterTest.php         | 128 ++--
 tests/Sabre/CardDAV/ValidateVCardTest.php          | 253 +++++--
 .../Xml/Property/SupportedAddressDataTest.php      |   2 +-
 .../Xml/Request/AddressBookQueryReportTest.php     |  63 +-
 tests/Sabre/DAV/AbstractServer.php                 |  12 +-
 tests/Sabre/DAV/Auth/Backend/AbstractBasicTest.php |  13 +-
 .../Sabre/DAV/Auth/Backend/AbstractBearerTest.php  |   9 +-
 .../Sabre/DAV/Auth/Backend/AbstractDigestTest.php  |  11 +-
 tests/Sabre/DAV/Auth/Backend/AbstractPDOTest.php   |  20 +-
 tests/Sabre/DAV/Auth/Backend/ApacheTest.php        |   1 -
 tests/Sabre/DAV/Auth/Backend/BasicCallBackTest.php |   8 +-
 tests/Sabre/DAV/Auth/Backend/FileTest.php          |  12 +-
 tests/Sabre/DAV/Auth/Backend/Mock.php              |   6 +-
 tests/Sabre/DAV/Auth/Backend/PDOMySQLTest.php      |  26 +-
 tests/Sabre/DAV/Auth/Backend/PDOPgSqlTest.php      |   9 +
 tests/Sabre/DAV/Auth/Backend/PDOSqliteTest.php     |  23 +-
 tests/Sabre/DAV/Auth/PluginTest.php                |  30 +-
 tests/Sabre/DAV/BasicNodeTest.php                  |  64 +-
 tests/Sabre/DAV/Browser/GuessContentTypeTest.php   |  44 +-
 tests/Sabre/DAV/Browser/MapGetToPropFindTest.php   |  16 +-
 tests/Sabre/DAV/Browser/PluginTest.php             |  54 +-
 tests/Sabre/DAV/ClientMock.php                     |   4 +-
 tests/Sabre/DAV/CorePluginTest.php                 |   2 -
 tests/Sabre/DAV/DbTestHelperTrait.php              | 140 ++++
 tests/Sabre/DAV/Exception/LockedTest.php           |   9 +-
 tests/Sabre/DAV/Exception/TooManyMatchesTest.php   |   7 +-
 tests/Sabre/DAV/ExceptionTest.php                  |   8 +-
 tests/Sabre/DAV/FSExt/FileTest.php                 |  18 +-
 tests/Sabre/DAV/FSExt/ServerTest.php               |  64 +-
 tests/Sabre/DAV/GetIfConditionsTest.php            | 294 ++++----
 tests/Sabre/DAV/HttpDeleteTest.php                 |  20 +-
 tests/Sabre/DAV/HttpGetTest.php                    |   2 +-
 tests/Sabre/DAV/HttpHeadTest.php                   |   4 +-
 tests/Sabre/DAV/HttpPutTest.php                    |  26 +-
 tests/Sabre/DAV/Issue33Test.php                    |  28 +-
 tests/Sabre/DAV/Locks/Backend/AbstractTest.php     |  40 +-
 tests/Sabre/DAV/Locks/Backend/Mock.php             |  20 +-
 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 +-
 tests/Sabre/DAV/Locks/MSWordTest.php               |  14 +-
 tests/Sabre/DAV/Locks/PluginTest.php               | 312 ++++-----
 tests/Sabre/DAV/Mock/SharedNode.php                | 125 ++++
 tests/Sabre/DAV/MockLogger.php                     |  36 +
 tests/Sabre/DAV/Mount/PluginTest.php               |  16 +-
 tests/Sabre/DAV/ObjectTreeTest.php                 |  48 +-
 tests/Sabre/DAV/PSR3Test.php                       |  87 +++
 tests/Sabre/DAV/PartialUpdate/FileMock.php         |   5 +-
 .../Sabre/DAV/PartialUpdate/SpecificationTest.php  |  44 +-
 tests/Sabre/DAV/PropPatchTest.php                  |  40 +-
 .../PropertyStorage/Backend/AbstractPDOTest.php    |  15 +-
 tests/Sabre/DAV/PropertyStorage/Backend/Mock.php   |  18 +-
 .../DAV/PropertyStorage/Backend/PDOMysqlTest.php   |  26 +-
 .../DAV/PropertyStorage/Backend/PDOPgSqlTest.php   |   9 +
 .../DAV/PropertyStorage/Backend/PDOSqliteTest.php  |  30 +-
 tests/Sabre/DAV/PropertyStorage/PluginTest.php     |   2 +-
 tests/Sabre/DAV/ServerMKCOLTest.php                | 192 +++---
 tests/Sabre/DAV/ServerPluginTest.php               |  29 +-
 tests/Sabre/DAV/ServerPreconditionTest.php         | 112 +--
 tests/Sabre/DAV/ServerPropsInfiniteDepthTest.php   |  63 +-
 tests/Sabre/DAV/ServerSimpleTest.php               |   2 +-
 tests/Sabre/DAV/ServerUpdatePropertiesTest.php     |  63 +-
 tests/Sabre/DAV/Sharing/PluginTest.php             | 190 ++++++
 tests/Sabre/DAV/Sharing/ShareResourceTest.php      | 210 ++++++
 tests/Sabre/DAV/SimpleFileTest.php                 |   2 +-
 tests/Sabre/DAV/StringUtilTest.php                 | 106 +--
 tests/Sabre/DAV/Sync/MockSyncCollection.php        |  26 +-
 tests/Sabre/DAV/Sync/PluginTest.php                |  37 +-
 tests/Sabre/DAV/SyncTokenPropertyTest.php          |   2 +-
 tests/Sabre/DAV/TemporaryFileFilterTest.php        |  70 +-
 tests/Sabre/DAV/TestPlugin.php                     |   7 +-
 tests/Sabre/DAV/TreeTest.php                       |  24 +-
 tests/Sabre/DAV/Xml/Element/ShareeTest.php         |  98 +++
 tests/Sabre/DAV/Xml/Property/HrefTest.php          |  29 -
 tests/Sabre/DAV/Xml/Property/InviteTest.php        |  76 +++
 tests/Sabre/DAV/Xml/Property/LocalHrefTest.php     |  69 ++
 tests/Sabre/DAV/Xml/Property/ShareAccessTest.php   |  53 ++
 tests/Sabre/DAV/Xml/Request/ShareResourceTest.php  |  75 +++
 tests/Sabre/DAVACL/ACLMethodTest.php               | 157 +++--
 .../Sabre/DAVACL/AclPrincipalPropSetReportTest.php |  69 ++
 tests/Sabre/DAVACL/AllowAccessTest.php             |  31 +-
 tests/Sabre/DAVACL/BlockAccessTest.php             |  19 +-
 tests/Sabre/DAVACL/Exception/AceConflictTest.php   |  14 +-
 .../Exception/NeedPrivilegesExceptionTest.php      |  30 +-
 tests/Sabre/DAVACL/Exception/NoAbstractTest.php    |  14 +-
 .../Exception/NotRecognizedPrincipalTest.php       |  14 +-
 .../DAVACL/Exception/NotSupportedPrivilegeTest.php |  14 +-
 tests/Sabre/DAVACL/ExpandPropertiesTest.php        | 206 +++---
 tests/Sabre/DAVACL/FS/HomeCollectionTest.php       |   9 +-
 tests/Sabre/DAVACL/MockACLNode.php                 |   3 +-
 tests/Sabre/DAVACL/MockPrincipal.php               |  10 +-
 tests/Sabre/DAVACL/PluginAdminTest.php             |  27 +-
 tests/Sabre/DAVACL/PluginPropertiesTest.php        |  90 +--
 tests/Sabre/DAVACL/PluginUpdatePropertiesTest.php  |  67 +-
 .../DAVACL/PrincipalBackend/AbstractPDOTest.php    | 117 ++--
 .../Sabre/DAVACL/PrincipalBackend/PDOMySQLTest.php |  43 +-
 .../Sabre/DAVACL/PrincipalBackend/PDOPgSqlTest.php |   9 +
 .../DAVACL/PrincipalBackend/PDOSqliteTest.php      |  40 +-
 tests/Sabre/DAVACL/PrincipalCollectionTest.php     |  16 +-
 tests/Sabre/DAVACL/PrincipalMatchTest.php          | 123 ++++
 tests/Sabre/DAVACL/PrincipalPropertySearchTest.php | 159 ++---
 .../DAVACL/PrincipalSearchPropertySetTest.php      |  53 +-
 tests/Sabre/DAVACL/PrincipalTest.php               | 150 ++---
 tests/Sabre/DAVACL/SimplePluginTest.php            | 286 ++++----
 .../Xml/Property/SupportedPrivilegeSetTest.php     |  35 +-
 .../Xml/Request/AclPrincipalPropSetReportTest.php  |  30 +
 .../Xml/Request/PrincipalMatchReportTest.php       |  51 ++
 tests/Sabre/DAVServerTest.php                      |  84 ++-
 tests/Sabre/TestUtil.php                           |  31 +-
 tests/bootstrap.php                                |  18 +-
 tests/{phpunit.xml => phpunit.xml.dist}            |  11 +-
 275 files changed, 10874 insertions(+), 7759 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