[Pkg-owncloud-commits] [php-sabredav] 101/148: Merge pull request #602 from fruux/xml-rewrite2

David Prévot taffit at moszumanska.debian.org
Wed Apr 15 01:37: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 139372fd3e5888beeab7a061ab40d5c731cf1adf
Merge: 7284721 d869ff1
Author: Evert Pot <me at evertpot.com>
Date:   Wed Apr 1 02:03:46 2015 -0400

    Merge pull request #602 from fruux/xml-rewrite2
    
    Rewrite of the xml subsystem

 .travis.yml                                        |   2 +
 CHANGELOG.md                                       |   9 +-
 bin/migrateto22.php                                | 118 +++++
 composer.json                                      |   1 +
 examples/sql/mysql.propertystorage.sql             |   1 +
 examples/sql/pgsql.propertystorage.sql             |   1 +
 examples/sql/sqlite.propertystorage.sql            |   7 +-
 lib/CalDAV/Backend/NotificationSupport.php         |  11 +-
 lib/CalDAV/Backend/PDO.php                         |  12 +-
 lib/CalDAV/CalendarQueryParser.php                 | 299 ------------
 lib/CalDAV/Notifications/Node.php                  |   5 +-
 lib/CalDAV/Notifications/Plugin.php                |  23 +-
 lib/CalDAV/Plugin.php                              | 209 +++-----
 lib/CalDAV/Property/Invite.php                     | 228 ---------
 lib/CalDAV/Property/ScheduleCalendarTransp.php     | 103 ----
 .../Property/SupportedCalendarComponentSet.php     |  89 ----
 lib/CalDAV/Property/SupportedCalendarData.php      |  44 --
 lib/CalDAV/Property/SupportedCollationSet.php      |  45 --
 lib/CalDAV/Schedule/Plugin.php                     |   6 +-
 lib/CalDAV/SharingPlugin.php                       | 146 +-----
 lib/CalDAV/Subscriptions/Plugin.php                |  38 +-
 lib/CalDAV/Subscriptions/Subscription.php          |  25 +-
 lib/CalDAV/Xml/Filter/CalendarData.php             |  85 ++++
 lib/CalDAV/Xml/Filter/CompFilter.php               |  99 ++++
 lib/CalDAV/Xml/Filter/ParamFilter.php              |  83 ++++
 lib/CalDAV/Xml/Filter/PropFilter.php               |  98 ++++
 .../{Notifications => Xml}/Notification/Invite.php | 145 +++---
 .../Notification/InviteReply.php                   |  83 ++--
 .../Notification/NotificationInterface.php}        |  15 +-
 .../Notification/SystemStatus.php                  |  60 +--
 .../{ => Xml}/Property/AllowedSharingModes.php     |  41 +-
 lib/CalDAV/{ => Xml}/Property/EmailAddressSet.php  |  33 +-
 lib/CalDAV/Xml/Property/Invite.php                 | 252 ++++++++++
 lib/CalDAV/Xml/Property/ScheduleCalendarTransp.php | 140 ++++++
 .../Xml/Property/SupportedCalendarComponentSet.php | 124 +++++
 lib/CalDAV/Xml/Property/SupportedCalendarData.php  |  61 +++
 lib/CalDAV/Xml/Property/SupportedCollationSet.php  |  57 +++
 lib/CalDAV/Xml/Request/CalendarMultiGetReport.php  | 124 +++++
 lib/CalDAV/Xml/Request/CalendarQueryReport.php     | 139 ++++++
 lib/CalDAV/Xml/Request/FreeBusyQueryReport.php     |  91 ++++
 lib/CalDAV/Xml/Request/InviteReply.php             | 150 ++++++
 lib/CalDAV/Xml/Request/MkCalendar.php              |  79 +++
 lib/CalDAV/Xml/Request/Share.php                   | 115 +++++
 lib/CardDAV/AddressBookQueryParser.php             | 221 ---------
 lib/CardDAV/Plugin.php                             |  70 +--
 lib/CardDAV/Property/SupportedAddressData.php      |  73 ---
 lib/CardDAV/Property/SupportedCollationSet.php     |  45 --
 lib/CardDAV/Xml/Filter/AddressData.php             |  63 +++
 lib/CardDAV/Xml/Filter/ParamFilter.php             |  89 ++++
 lib/CardDAV/Xml/Filter/PropFilter.php              |  99 ++++
 lib/CardDAV/Xml/Property/SupportedAddressData.php  |  83 ++++
 lib/CardDAV/Xml/Property/SupportedCollationSet.php |  47 ++
 .../Xml/Request/AddressBookMultiGetReport.php      | 113 +++++
 lib/CardDAV/Xml/Request/AddressBookQueryReport.php | 192 ++++++++
 lib/DAV/Browser/Plugin.php                         |  49 +-
 lib/DAV/Browser/assets/sabredav.css                |   6 +
 lib/DAV/Client.php                                 |  18 +-
 lib/DAV/CorePlugin.php                             |  70 +--
 lib/DAV/Locks/Plugin.php                           | 112 ++---
 lib/DAV/PartialUpdate/Plugin.php                   |   4 +-
 lib/DAV/Property.php                               |  32 --
 lib/DAV/Property/GetLastModified.php               |  77 ---
 lib/DAV/Property/Href.php                          | 101 ----
 lib/DAV/Property/HrefList.php                      | 107 ----
 lib/DAV/Property/IHref.php                         |  25 -
 lib/DAV/Property/LockDiscovery.php                 |  94 ----
 lib/DAV/Property/ResourceType.php                  | 124 -----
 lib/DAV/Property/Response.php                      | 222 ---------
 lib/DAV/Property/ResponseList.php                  | 134 -----
 lib/DAV/Property/SupportedLock.php                 |  78 ---
 lib/DAV/Property/SupportedMethodSet.php            |  68 ---
 lib/DAV/PropertyInterface.php                      |  39 --
 lib/DAV/PropertyStorage/Backend/PDO.php            |  45 +-
 lib/DAV/Server.php                                 | 135 +-----
 lib/DAV/Sync/Plugin.php                            | 110 +----
 lib/DAV/TemporaryFileFilterPlugin.php              |  18 +-
 lib/DAV/XMLUtil.php                                | 194 --------
 lib/DAV/Xml/Element/Prop.php                       | 116 +++++
 lib/DAV/Xml/Element/Response.php                   | 195 ++++++++
 lib/DAV/Xml/Property/Complex.php                   |  91 ++++
 lib/DAV/Xml/Property/GetLastModified.php           | 112 +++++
 lib/DAV/Xml/Property/Href.php                      | 151 ++++++
 lib/DAV/Xml/Property/LockDiscovery.php             | 110 +++++
 lib/DAV/Xml/Property/ResourceType.php              | 103 ++++
 lib/DAV/Xml/Property/SupportedLock.php             |  56 +++
 lib/DAV/Xml/Property/SupportedMethodSet.php        | 102 ++++
 lib/DAV/{ => Xml}/Property/SupportedReportSet.php  |  67 +--
 lib/DAV/Xml/Request/Lock.php                       |  81 ++++
 lib/DAV/Xml/Request/MkCol.php                      |  82 ++++
 lib/DAV/Xml/Request/PropFind.php                   |  83 ++++
 lib/DAV/Xml/Request/PropPatch.php                  |  80 +++
 lib/DAV/Xml/Request/SyncCollectionReport.php       | 124 +++++
 lib/DAV/Xml/Response/MultiStatus.php               | 141 ++++++
 lib/DAV/Xml/Service.php                            |  48 ++
 lib/DAVACL/Plugin.php                              | 305 ++++--------
 lib/DAVACL/Property/Acl.php                        | 212 --------
 lib/DAVACL/Property/AclRestrictions.php            |  34 --
 lib/DAVACL/Property/CurrentUserPrivilegeSet.php    | 136 ------
 lib/DAVACL/Property/Principal.php                  | 164 -------
 lib/DAVACL/Property/SupportedPrivilegeSet.php      | 105 ----
 lib/DAVACL/Xml/Property/Acl.php                    | 236 +++++++++
 lib/DAVACL/Xml/Property/AclRestrictions.php        |  45 ++
 .../Xml/Property/CurrentUserPrivilegeSet.php       | 132 +++++
 lib/DAVACL/Xml/Property/Principal.php              | 165 +++++++
 lib/DAVACL/Xml/Property/SupportedPrivilegeSet.php  | 112 +++++
 lib/DAVACL/Xml/Request/ExpandPropertyReport.php    | 103 ++++
 .../Xml/Request/PrincipalPropertySearchReport.php  | 127 +++++
 .../Request/PrincipalSearchPropertySetReport.php   |  58 +++
 tests/Sabre/CalDAV/Backend/AbstractPDOTest.php     |  26 +-
 tests/Sabre/CalDAV/Backend/Mock.php                |   6 +-
 tests/Sabre/CalDAV/Backend/MockSharing.php         |  24 +-
 .../Sabre/CalDAV/CalendarHomeSubscriptionsTest.php |   6 +-
 tests/Sabre/CalDAV/CalendarQueryParserTest.php     | 540 ---------------------
 .../CalDAV/ExpandEventsDTSTARTandDTENDTest.php     |   6 +-
 tests/Sabre/CalDAV/FreeBusyReportTest.php          |  16 +-
 tests/Sabre/CalDAV/ICSExportPluginTest.php         |  47 +-
 tests/Sabre/CalDAV/JCalTransformTest.php           |  40 +-
 .../Sabre/CalDAV/Notifications/CollectionTest.php  |   2 +-
 tests/Sabre/CalDAV/Notifications/NodeTest.php      |  10 +-
 .../Notification/SystemStatusTest.php              |  61 ---
 tests/Sabre/CalDAV/Notifications/PluginTest.php    |  38 +-
 tests/Sabre/CalDAV/PluginTest.php                  | 364 +++++++-------
 .../CalDAV/Property/AllowedSharingModesTest.php    |  47 --
 .../Sabre/CalDAV/Property/EmailAddressSetTest.php  |  43 --
 .../CalDAV/Property/ScheduleCalendarTranspTest.php |  99 ----
 .../Property/SupportedCalendarComponentSetTest.php |  67 ---
 .../CalDAV/Property/SupportedCalendarDataTest.php  |  46 --
 .../CalDAV/Property/SupportedCollationSetTest.php  |  47 --
 .../Sabre/CalDAV/Schedule/FreeBusyRequestTest.php  |  30 +-
 tests/Sabre/CalDAV/Schedule/IMipPluginTest.php     |  10 +
 tests/Sabre/CalDAV/Schedule/PluginBasicTest.php    |  10 +
 .../Sabre/CalDAV/Schedule/PluginPropertiesTest.php |   6 +-
 .../PluginPropertiesWithSharedCalendarTest.php     |   8 +-
 tests/Sabre/CalDAV/SharingPluginTest.php           |  18 +-
 tests/Sabre/CalDAV/Subscriptions/PluginTest.php    |  11 +-
 .../CalDAV/Subscriptions/SubscriptionTest.php      |   2 +-
 tests/Sabre/CalDAV/ValidateICalTest.php            |  10 +-
 .../Notification/InviteReplyTest.php               |  47 +-
 .../Notification/InviteTest.php                    |  56 ++-
 .../CalDAV/Xml/Notification/SystemStatusTest.php   |  67 +++
 .../Xml/Property/AllowedSharingModesTest.php       |  38 ++
 .../CalDAV/Xml/Property/EmailAddressSetTest.php    |  40 ++
 .../Sabre/CalDAV/{ => Xml}/Property/InviteTest.php | 106 ++--
 .../Xml/Property/ScheduleCalendarTranspTest.php    | 118 +++++
 .../Xml/Property/SupportedCalendarDataTest.php     |  36 ++
 .../Xml/Property/SupportedCollationSetTest.php     |  37 ++
 .../CalDAV/Xml/Request/CalendarQueryReportTest.php | 367 ++++++++++++++
 tests/Sabre/CalDAV/Xml/Request/InviteReplyTest.php |  78 +++
 tests/Sabre/CardDAV/AddressBookQueryParserTest.php | 329 -------------
 tests/Sabre/CardDAV/PluginTest.php                 |  29 +-
 .../CardDAV/Property/SupportedAddressDataTest.php  |  46 --
 .../CardDAV/Property/SupportedCollationSetTest.php |  46 --
 .../Xml/Property/SupportedAddressDataTest.php      |  38 ++
 .../Xml/Property/SupportedCollationSetTest.php     |  38 ++
 .../Xml/Request/AddressBookQueryReportTest.php     | 302 ++++++++++++
 tests/Sabre/DAV/HTTPPreferParsingTest.php          |  36 +-
 tests/Sabre/DAV/HttpGetTest.php                    | 199 ++++++++
 tests/Sabre/DAV/HttpPutTest.php                    |  26 +-
 tests/Sabre/DAV/Locks/PluginTest.php               | 188 +++----
 tests/Sabre/DAV/Mock/Collection.php                |  14 +-
 tests/Sabre/DAV/Mock/File.php                      |  16 +-
 .../Sabre/DAV/Mock/{File.php => StreamingFile.php} |  83 +---
 tests/Sabre/DAV/PartialUpdate/PluginTest.php       |  81 ++--
 tests/Sabre/DAV/Property/GetLastModifiedTest.php   |  75 ---
 tests/Sabre/DAV/Property/HrefListTest.php          |  91 ----
 tests/Sabre/DAV/Property/HrefTest.php              | 119 -----
 tests/Sabre/DAV/Property/ResourceTypeTest.php      | 105 ----
 tests/Sabre/DAV/Property/ResponseListTest.php      |  19 -
 tests/Sabre/DAV/Property/ResponseTest.php          | 230 ---------
 .../PropertyStorage/Backend/AbstractPDOTest.php    |  43 ++
 tests/Sabre/DAV/PropertyStorage/PluginTest.php     |   9 +
 tests/Sabre/DAV/ServerMKCOLTest.php                |   4 +-
 tests/Sabre/DAV/ServerPluginTest.php               |  11 +-
 tests/Sabre/DAV/ServerPropsInfiniteDepthTest.php   |  26 +-
 tests/Sabre/DAV/ServerPropsTest.php                |  26 +-
 tests/Sabre/DAV/ServerSimpleTest.php               | 175 -------
 tests/Sabre/DAV/Sync/PluginTest.php                | 101 ++--
 tests/Sabre/DAV/SyncTokenPropertyTest.php          |   2 +-
 tests/Sabre/DAV/TemporaryFileFilterTest.php        |  83 +---
 tests/Sabre/DAV/XMLUtilTest.php                    | 284 -----------
 tests/Sabre/DAV/Xml/Element/PropTest.php           | 154 ++++++
 tests/Sabre/DAV/Xml/Element/ResponseTest.php       | 182 +++++++
 tests/Sabre/DAV/Xml/Property/HrefTest.php          |  91 ++++
 tests/Sabre/DAV/Xml/Property/LastModifiedTest.php  |  59 +++
 tests/Sabre/DAV/Xml/Property/LockDiscoveryTest.php |  85 ++++
 .../{ => Xml}/Property/SupportedMethodSetTest.php  |  11 +-
 .../{ => Xml}/Property/SupportedReportSetTest.php  |   0
 tests/Sabre/DAV/Xml/Request/PropFindTest.php       |  49 ++
 tests/Sabre/DAV/Xml/Request/SyncCollectionTest.php |  95 ++++
 tests/Sabre/DAV/Xml/XmlTest.php                    |  41 ++
 tests/Sabre/DAVACL/ExpandPropertiesTest.php        |   6 +-
 tests/Sabre/DAVACL/PluginPropertiesTest.php        |  37 +-
 tests/Sabre/DAVACL/PluginUpdatePropertiesTest.php  |  40 +-
 tests/Sabre/DAVACL/PrincipalPropertySearchTest.php |   4 +-
 .../Sabre/DAVACL/Property/ACLRestrictionsTest.php  |  36 --
 .../Property/CurrentUserPrivilegeSetTest.php       |  67 ---
 .../DAVACL/Property/SupportedPrivilegeSetTest.php  | 107 ----
 tests/Sabre/DAVACL/SimplePluginTest.php            |   5 +
 tests/Sabre/DAVACL/{ => Xml}/Property/ACLTest.php  | 130 ++---
 .../DAVACL/Xml/Property/AclRestrictionsTest.php    |  30 ++
 .../Xml/Property/CurrentUserPrivilegeSetTest.php   |  68 +++
 .../DAVACL/{ => Xml}/Property/PrincipalTest.php    |  99 ++--
 .../Xml/Property/SupportedPrivilegeSetTest.php     |  85 ++++
 tests/bootstrap.php                                |   1 -
 204 files changed, 9150 insertions(+), 7965 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