[Pkg-owncloud-commits] [php-sabredav] 14/36: Merge branch 'master' into xml-rewrite2
David Prévot
taffit at moszumanska.debian.org
Tue Aug 11 13:35:23 UTC 2015
This is an automated email from the git hooks/post-receive script.
taffit pushed a commit to branch master
in repository php-sabredav.
commit 81a209935c63466dd7422b11928e1daaf9fda38f
Merge: 6d80f62 d19dad0
Author: Evert Pot <me at evertpot.com>
Date: Fri Jul 17 18:04:34 2015 -0400
Merge branch 'master' into xml-rewrite2
.gitignore | 3 +-
.travis.yml | 2 +-
CHANGELOG.md | 167 +++++++++-
CONTRIBUTING.md | 5 +-
README.md | 14 +-
bin/build.php | 4 +-
bin/migrateto20.php | 10 +-
bin/migrateto21.php | 8 +-
bin/{migrateto22.php => migrateto30.php} | 67 +++-
bin/naturalselection | 2 +-
composer.json | 15 +-
examples/addressbookserver.php | 6 +-
examples/calendarserver.php | 6 +-
examples/fileserver.php | 2 +-
examples/groupwareserver.php | 6 +-
examples/simplefsserver.php | 8 +-
examples/sql/mysql.addressbook.sql | 8 +-
examples/sql/mysql.calendars.sql | 16 +-
examples/sql/mysql.principals.sql | 5 +-
examples/sql/mysql.users.sql | 4 +-
examples/sql/pgsql.calendars.sql | 3 +-
examples/sql/pgsql.principals.sql | 3 +-
examples/sql/sqlite.principals.sql | 1 -
lib/CalDAV/Backend/AbstractBackend.php | 28 +-
lib/CalDAV/Backend/BackendInterface.php | 10 +-
lib/CalDAV/Backend/PDO.php | 153 +++++----
lib/CalDAV/Backend/SchedulingSupport.php | 2 +-
lib/CalDAV/Calendar.php | 33 +-
lib/CalDAV/CalendarHome.php | 36 +-
lib/CalDAV/CalendarObject.php | 13 +-
lib/CalDAV/CalendarQueryValidator.php | 28 +-
lib/CalDAV/CalendarRoot.php | 2 +-
lib/CalDAV/Exception/InvalidComponentType.php | 2 +-
lib/CalDAV/ICSExportPlugin.php | 87 +++--
lib/CalDAV/ICalendar.php | 1 -
lib/CalDAV/ICalendarObject.php | 1 +
lib/CalDAV/ICalendarObjectContainer.php | 2 +-
lib/CalDAV/Notifications/Collection.php | 2 +-
lib/CalDAV/Notifications/Node.php | 2 +-
lib/CalDAV/Notifications/Plugin.php | 16 +-
lib/CalDAV/Plugin.php | 152 ++++-----
lib/CalDAV/Principal/Collection.php | 3 +-
lib/CalDAV/Principal/ProxyRead.php | 1 +
lib/CalDAV/Principal/ProxyWrite.php | 3 +-
lib/CalDAV/Principal/User.php | 3 +-
lib/CalDAV/Schedule/IInbox.php | 2 +-
lib/CalDAV/Schedule/IMipPlugin.php | 11 +-
lib/CalDAV/Schedule/ISchedulingObject.php | 2 +-
lib/CalDAV/Schedule/Inbox.php | 21 +-
lib/CalDAV/Schedule/Outbox.php | 1 +
lib/CalDAV/Schedule/Plugin.php | 130 ++++----
lib/CalDAV/Schedule/SchedulingObject.php | 6 +-
lib/CalDAV/SharedCalendar.php | 2 +-
lib/CalDAV/SharingPlugin.php | 18 +-
lib/CalDAV/Subscriptions/Plugin.php | 13 +-
lib/CalDAV/Subscriptions/Subscription.php | 23 +-
lib/CalDAV/Xml/Filter/CalendarData.php | 17 +-
lib/CalDAV/Xml/Filter/CompFilter.php | 22 +-
lib/CalDAV/Xml/Filter/ParamFilter.php | 15 +-
lib/CalDAV/Xml/Filter/PropFilter.php | 24 +-
lib/CalDAV/Xml/Notification/Invite.php | 40 ++-
lib/CalDAV/Xml/Notification/InviteReply.php | 13 +-
.../Xml/Notification/NotificationInterface.php | 2 +-
lib/CalDAV/Xml/Notification/SystemStatus.php | 14 +-
lib/CalDAV/Xml/Property/AllowedSharingModes.php | 2 +-
lib/CalDAV/Xml/Property/EmailAddressSet.php | 2 +-
lib/CalDAV/Xml/Property/Invite.php | 22 +-
lib/CalDAV/Xml/Property/ScheduleCalendarTransp.php | 12 +-
.../Xml/Property/SupportedCalendarComponentSet.php | 6 +-
lib/CalDAV/Xml/Property/SupportedCalendarData.php | 5 +-
lib/CalDAV/Xml/Property/SupportedCollationSet.php | 2 +-
lib/CalDAV/Xml/Request/CalendarMultiGetReport.php | 12 +-
lib/CalDAV/Xml/Request/CalendarQueryReport.php | 16 +-
lib/CalDAV/Xml/Request/FreeBusyQueryReport.php | 8 +-
lib/CalDAV/Xml/Request/InviteReply.php | 19 +-
lib/CalDAV/Xml/Request/MkCalendar.php | 2 +-
lib/CalDAV/Xml/Request/Share.php | 19 +-
lib/CardDAV/AddressBook.php | 18 +-
.../{UserAddressBooks.php => AddressBookHome.php} | 36 +-
lib/CardDAV/AddressBookRoot.php | 4 +-
lib/CardDAV/Backend/PDO.php | 60 ++--
lib/CardDAV/Card.php | 10 +-
lib/CardDAV/ICard.php | 1 -
lib/CardDAV/Plugin.php | 189 ++++-------
lib/CardDAV/VCFExportPlugin.php | 58 +++-
lib/CardDAV/Xml/Filter/AddressData.php | 10 +-
lib/CardDAV/Xml/Filter/ParamFilter.php | 14 +-
lib/CardDAV/Xml/Filter/PropFilter.php | 25 +-
lib/CardDAV/Xml/Property/SupportedAddressData.php | 4 +-
lib/CardDAV/Xml/Property/SupportedCollationSet.php | 2 +-
.../Xml/Request/AddressBookMultiGetReport.php | 12 +-
lib/CardDAV/Xml/Request/AddressBookQueryReport.php | 30 +-
lib/DAV/Auth/Backend/AbstractBasic.php | 12 +-
lib/DAV/Auth/Backend/AbstractDigest.php | 11 +-
lib/DAV/Auth/Backend/Apache.php | 7 +-
lib/DAV/Auth/Backend/BackendInterface.php | 6 +-
lib/DAV/Auth/Backend/BasicCallBack.php | 6 +-
lib/DAV/Auth/Backend/File.php | 8 +-
lib/DAV/Auth/Backend/PDO.php | 4 +-
lib/DAV/Auth/Plugin.php | 22 +-
lib/DAV/Browser/GuessContentType.php | 13 +-
lib/DAV/Browser/HtmlOutput.php | 34 ++
lib/DAV/Browser/HtmlOutputHelper.php | 117 +++++++
lib/DAV/Browser/MapGetToPropFind.php | 11 +-
lib/DAV/Browser/Plugin.php | 335 +++++++++----------
lib/DAV/Browser/PropFindAll.php | 8 +-
lib/DAV/Client.php | 128 +++----
lib/DAV/Collection.php | 7 +-
lib/DAV/CorePlugin.php | 97 +++---
lib/DAV/Exception.php | 17 +-
lib/DAV/Exception/BadRequest.php | 4 +-
lib/DAV/Exception/Conflict.php | 4 +-
lib/DAV/Exception/ConflictingLock.php | 4 +-
lib/DAV/Exception/Forbidden.php | 4 +-
lib/DAV/Exception/InsufficientStorage.php | 4 +-
lib/DAV/Exception/InvalidResourceType.php | 4 +-
lib/DAV/Exception/InvalidSyncToken.php | 4 +-
lib/DAV/Exception/LockTokenMatchesRequestUri.php | 4 +-
lib/DAV/Exception/Locked.php | 7 +-
lib/DAV/Exception/MethodNotAllowed.php | 6 +-
lib/DAV/Exception/NotFound.php | 5 +-
lib/DAV/Exception/NotImplemented.php | 4 +-
lib/DAV/Exception/PreconditionFailed.php | 4 +-
lib/DAV/Exception/ReportNotSupported.php | 4 +-
lib/DAV/Exception/RequestedRangeNotSatisfiable.php | 1 -
lib/DAV/Exception/TooManyMatches.php | 4 +-
lib/DAV/Exception/UnsupportedMediaType.php | 4 +-
lib/DAV/FS/Directory.php | 10 +-
lib/DAV/FS/File.php | 7 +-
lib/DAV/FS/Node.php | 8 +-
lib/DAV/FSExt/Directory.php | 32 +-
lib/DAV/FSExt/File.php | 17 +-
lib/DAV/FSExt/Node.php | 226 -------------
lib/DAV/File.php | 1 -
lib/DAV/ICollection.php | 1 -
lib/DAV/IExtendedCollection.php | 25 +-
lib/DAV/IFile.php | 1 -
lib/DAV/IMoveTarget.php | 2 +-
lib/DAV/INode.php | 1 -
lib/DAV/IProperties.php | 1 -
lib/DAV/IQuota.php | 1 -
lib/DAV/Locks/Backend/AbstractBackend.php | 3 -
lib/DAV/Locks/Backend/BackendInterface.php | 5 +-
lib/DAV/Locks/Backend/File.php | 28 +-
lib/DAV/Locks/Backend/PDO.php | 35 +-
lib/DAV/Locks/LockInfo.php | 1 -
lib/DAV/Locks/Plugin.php | 97 +++---
lib/DAV/MkCol.php | 71 ++++
lib/DAV/Mount/Plugin.php | 13 +-
lib/DAV/Node.php | 7 +-
lib/DAV/PartialUpdate/IPatchSupport.php | 1 -
lib/DAV/PartialUpdate/Plugin.php | 27 +-
lib/DAV/PropFind.php | 27 +-
lib/DAV/PropPatch.php | 54 ++-
.../PropertyStorage/Backend/BackendInterface.php | 3 +
lib/DAV/PropertyStorage/Backend/PDO.php | 21 +-
lib/DAV/Server.php | 371 +++++++++------------
lib/DAV/ServerPlugin.php | 1 -
lib/DAV/SimpleCollection.php | 2 +-
lib/DAV/StringUtil.php | 16 +-
lib/DAV/Sync/ISyncCollection.php | 1 -
lib/DAV/Sync/Plugin.php | 18 +-
lib/DAV/TemporaryFileFilterPlugin.php | 50 +--
lib/DAV/Tree.php | 41 ++-
lib/DAV/UUIDUtil.php | 12 +-
lib/DAV/Version.php | 2 +-
lib/DAV/Xml/Element/Prop.php | 23 +-
lib/DAV/Xml/Element/Response.php | 14 +-
lib/DAV/Xml/Property/Complex.php | 12 +-
lib/DAV/Xml/Property/GetLastModified.php | 18 +-
lib/DAV/Xml/Property/Href.php | 47 ++-
lib/DAV/Xml/Property/LockDiscovery.php | 24 +-
lib/DAV/Xml/Property/ResourceType.php | 27 +-
lib/DAV/Xml/Property/SupportedLock.php | 8 +-
lib/DAV/Xml/Property/SupportedMethodSet.php | 34 +-
lib/DAV/Xml/Property/SupportedReportSet.php | 35 +-
lib/DAV/Xml/Request/Lock.php | 4 +-
lib/DAV/Xml/Request/MkCol.php | 2 +-
lib/DAV/Xml/Request/PropFind.php | 6 +-
lib/DAV/Xml/Request/PropPatch.php | 48 ++-
lib/DAV/Xml/Request/SyncCollectionReport.php | 12 +-
lib/DAV/Xml/Response/MultiStatus.php | 4 +-
lib/DAV/Xml/Service.php | 8 +-
lib/DAVACL/AbstractPrincipalCollection.php | 11 +-
lib/DAVACL/Exception/AceConflict.php | 4 +-
lib/DAVACL/Exception/NeedPrivileges.php | 19 +-
lib/DAVACL/Exception/NoAbstract.php | 4 +-
lib/DAVACL/Exception/NotRecognizedPrincipal.php | 4 +-
lib/DAVACL/Exception/NotSupportedPrivilege.php | 4 +-
lib/DAVACL/FS/Collection.php | 153 +++++++++
lib/DAVACL/{IACL.php => FS/File.php} | 73 +++-
lib/DAVACL/FS/HomeCollection.php | 188 +++++++++++
lib/DAVACL/IACL.php | 1 +
lib/DAVACL/Plugin.php | 215 ++++++------
lib/DAVACL/Principal.php | 4 +-
lib/DAVACL/PrincipalBackend/AbstractBackend.php | 4 +-
.../PrincipalBackend/CreatePrincipalSupport.php | 30 ++
lib/DAVACL/PrincipalBackend/PDO.php | 92 ++---
lib/DAVACL/PrincipalCollection.php | 120 ++++++-
lib/DAVACL/Xml/Property/Acl.php | 69 +++-
.../Xml/Property/CurrentUserPrivilegeSet.php | 32 +-
lib/DAVACL/Xml/Property/Principal.php | 39 ++-
lib/DAVACL/Xml/Property/SupportedPrivilegeSet.php | 53 ++-
lib/DAVACL/Xml/Request/ExpandPropertyReport.php | 4 +-
.../Xml/Request/PrincipalPropertySearchReport.php | 18 +-
.../Sabre/CalDAV/CalendarHomeSubscriptionsTest.php | 10 +-
tests/Sabre/CalDAV/CalendarHomeTest.php | 28 +-
tests/Sabre/CalDAV/ICSExportPluginTest.php | 2 +-
tests/Sabre/CalDAV/PluginTest.php | 48 +--
.../CalDAV/Xml/Notification/InviteReplyTest.php | 2 +-
tests/Sabre/CalDAV/Xml/Notification/InviteTest.php | 2 +-
.../CalDAV/Xml/Request/CalendarQueryReportTest.php | 90 ++---
tests/Sabre/CalDAV/Xml/Request/ShareTest.php | 86 +++++
...ddressBooksTest.php => AddressBookHomeTest.php} | 16 +-
tests/Sabre/CardDAV/AddressBookRootTest.php | 2 +-
tests/Sabre/CardDAV/PluginTest.php | 72 ----
tests/Sabre/CardDAV/VCFExportTest.php | 2 +-
tests/Sabre/DAV/Browser/PluginTest.php | 38 ++-
tests/Sabre/DAV/ClientTest.php | 13 +
tests/Sabre/DAV/FSExt/NodeTest.php | 191 -----------
tests/Sabre/DAV/HTTPPreferParsingTest.php | 111 +++---
tests/Sabre/DAV/ServerEventsTest.php | 29 ++
tests/Sabre/DAV/ServerMKCOLTest.php | 44 +--
tests/Sabre/DAV/ServerPropsTest.php | 170 ----------
tests/Sabre/DAV/ServerRangeTest.php | 10 +-
tests/Sabre/DAV/ServerSimpleTest.php | 12 +
tests/Sabre/DAV/Xml/Element/PropTest.php | 8 +-
tests/Sabre/DAV/Xml/Element/ResponseTest.php | 34 +-
tests/Sabre/DAV/Xml/Property/HrefTest.php | 50 ++-
tests/Sabre/DAV/Xml/Property/LastModifiedTest.php | 2 +-
tests/Sabre/DAV/Xml/Property/LockDiscoveryTest.php | 1 +
.../DAV/Xml/Property/SupportedMethodSetTest.php | 15 +-
.../DAV/Xml/Property/SupportedReportSetTest.php | 51 ++-
tests/Sabre/DAV/Xml/Request/PropFindTest.php | 1 -
tests/Sabre/DAV/Xml/Request/PropPatchTest.php | 47 +++
tests/Sabre/DAV/Xml/Request/SyncCollectionTest.php | 3 +-
tests/Sabre/DAVACL/FS/CollectionTest.php | 44 +++
tests/Sabre/DAVACL/FS/FileTest.php | 73 ++++
tests/Sabre/DAVACL/FS/HomeCollectionTest.php | 121 +++++++
.../DAVACL/PrincipalBackend/AbstractPDOTest.php | 4 -
tests/Sabre/DAVACL/PrincipalBackend/Mock.php | 69 ++--
.../DAVACL/PrincipalBackend/PDOSqliteTest.php | 6 +-
tests/Sabre/DAVACL/Xml/Property/ACLTest.php | 88 +++--
.../Xml/Property/CurrentUserPrivilegeSetTest.php | 24 +-
tests/Sabre/DAVACL/Xml/Property/PrincipalTest.php | 51 ++-
.../Xml/Property/SupportedPrivilegeSetTest.php | 41 ++-
246 files changed, 4183 insertions(+), 3070 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