Home
last modified time | relevance | path

Searched refs:propFind (Results 26 – 49 of 49) sorted by relevance

12

/plugin/davcal/vendor/sabre/dav/tests/Sabre/CardDAV/
H A DPluginTest.php74 $propFind = new DAV\PropFind('addressbooks/user1/book1', [
79 $this->plugin->propFindEarly($propFind, $node);
83 $propFind->get($ns . 'supported-address-data')
87 $propFind->get($ns . 'supported-collation-set')
/plugin/davcal/vendor/sabre/dav/tests/Sabre/DAVACL/
H A DBlockAccessTest.php167 $propFind = new DAV\PropFind('testdir', [
174 $r = $this->server->emit('propFind', [$propFind, new DAV\SimpleCollection('testdir')]);
188 $this->assertEquals($expected, $propFind->getResultForMultiStatus());
195 $propFind = new DAV\PropFind('testdir', [
202 $r = $this->server->emit('propFind', [$propFind, new DAV\SimpleCollection('testdir')]);
/plugin/davcal/vendor/sabre/dav/lib/CardDAV/
H A DPlugin.php139 function propFindEarly(DAV\PropFind $propFind, DAV\INode $node) { argument
145 $propFind->handle($ns . 'max-resource-size', $this->maxResourceSize);
146 $propFind->handle($ns . 'supported-address-data', function() {
149 $propFind->handle($ns . 'supported-collation-set', function() {
156 $path = $propFind->getPath();
158 … $propFind->handle('{' . self::NS_CARDDAV . '}addressbook-home-set', function() use ($path) {
162 …if ($this->directories) $propFind->handle('{' . self::NS_CARDDAV . '}directory-gateway', function(…
173 $propFind->handle('{' . self::NS_CARDDAV . '}address-data', function() use ($node) {
662 function propFindLate(DAV\PropFind $propFind, DAV\INode $node) { argument
671 $contentType = $propFind->get('{DAV:}getcontenttype');
[all …]
/plugin/webdav/vendor/sabre/dav/lib/DAV/
H A DServer.php881 * @param PropFind $propFind
889 $newDepth = $propFind->getDepth();
890 $path = $propFind->getPath();
896 $propertyNames = $propFind->getRequestedProperties();
970 $propFind,
980 list($propFind, $node) = $propFindRequest;
981 $r = $this->getPropertiesByNode($propFind, $node);
984 $result['href'] = $propFind->getPath();
1024 $propFind = new PropFind($path, $propertyNames);
1053 * @param PropFind $propFind
[all …]
/plugin/davcal/vendor/sabre/dav/lib/DAV/
H A DServer.php840 * @param PropFind $propFind
845 $newDepth = $propFind->getDepth();
846 $path = $propFind->getPath();
853 $subPropFind = clone $propFind;
901 $propFind,
913 list($propFind, $node) = $propFindRequest;
914 $r = $this->getPropertiesByNode($propFind, $node);
917 $result['href'] = $propFind->getPath();
959 $propFind = new PropFind($path, $propertyNames);
988 * @param PropFind $propFind
[all …]
H A DClient.php195 function propFind($url, array $properties, $depth = 0) { function in Sabre\\DAV\\Client
/plugin/davcal/vendor/sabre/dav/tests/Sabre/CalDAV/Schedule/
H A DScheduleDeliverTest.php392 $this->server->on('propFind', function($propFind) {
393 $propFind->set('{' . Plugin::NS_CALDAV . '}schedule-inbox-URL', null, 403);
428 $this->server->on('propFind', function($propFind) {
429 $propFind->set('{' . Plugin::NS_CALDAV . '}calendar-home-set', null, 403);
463 $this->server->on('propFind', function($propFind) {
464 $propFind->set('{' . Plugin::NS_CALDAV . '}schedule-default-calendar-URL', null, 403);
/plugin/webdav/vendor/sabre/dav/lib/CardDAV/
H A DPlugin.php139 function propFindEarly(DAV\PropFind $propFind, DAV\INode $node) { argument
145 $propFind->handle($ns . 'max-resource-size', $this->maxResourceSize);
146 $propFind->handle($ns . 'supported-address-data', function() {
149 $propFind->handle($ns . 'supported-collation-set', function() {
156 $path = $propFind->getPath();
158 … $propFind->handle('{' . self::NS_CARDDAV . '}addressbook-home-set', function() use ($path) {
162 …if ($this->directories) $propFind->handle('{' . self::NS_CARDDAV . '}directory-gateway', function(…
173 $propFind->handle('{' . self::NS_CARDDAV . '}address-data', function() use ($node) {
718 function propFindLate(DAV\PropFind $propFind, DAV\INode $node) { argument
727 $contentType = $propFind->get('{DAV:}getcontenttype');
[all …]
/plugin/webdav/vendor/sabre/dav/lib/CalDAV/
H A DPlugin.php323 function propFind(DAV\PropFind $propFind, DAV\INode $node) { function in Sabre\\CalDAV\\Plugin
329 $propFind->handle($ns . 'max-resource-size', $this->maxResourceSize);
330 $propFind->handle($ns . 'supported-calendar-data', function() {
333 $propFind->handle($ns . 'supported-collation-set', function() {
343 … $propFind->handle('{' . self::NS_CALDAV . '}calendar-home-set', function() use ($principalUrl) {
352 … $propFind->handle('{' . self::NS_CALDAV . '}calendar-user-address-set', function() use ($node) {
375 … if ($propFind->getStatus($propRead) === 404 || $propFind->getStatus($propWrite) === 404) {
378 $membership = $aclPlugin->getPrincipalMembership($propFind->getPath());
400 $propFind->set($propRead, new LocalHref($readList));
401 $propFind->set($propWrite, new LocalHref($writeList));
[all …]
H A DSharingPlugin.php109 function propFindEarly(DAV\PropFind $propFind, DAV\INode $node) { argument
113 $propFind->handle('{' . Plugin::NS_CALENDARSERVER . '}invite', function() use ($node) {
158 function propFindLate(DAV\PropFind $propFind, DAV\INode $node) { argument
162 if ($rt = $propFind->get('{DAV:}resourcetype')) {
174 … $propFind->handle('{' . Plugin::NS_CALENDARSERVER . '}allowed-sharing-modes', function() {
/plugin/davcal/vendor/sabre/dav/lib/CalDAV/
H A DPlugin.php309 function propFind(DAV\PropFind $propFind, DAV\INode $node) { function in Sabre\\CalDAV\\Plugin
315 $propFind->handle($ns . 'max-resource-size', $this->maxResourceSize);
316 $propFind->handle($ns . 'supported-calendar-data', function() {
319 $propFind->handle($ns . 'supported-collation-set', function() {
329 … $propFind->handle('{' . self::NS_CALDAV . '}calendar-home-set', function() use ($principalUrl) {
337 … $propFind->handle('{' . self::NS_CALDAV . '}calendar-user-address-set', function() use ($node) {
360 … if ($propFind->getStatus($propRead) === 404 || $propFind->getStatus($propWrite) === 404) {
363 $membership = $aclPlugin->getPrincipalMembership($propFind->getPath());
385 $propFind->set($propRead, new Href($readList));
386 $propFind->set($propWrite, new Href($writeList));
[all …]
/plugin/davcal/vendor/sabre/dav/tests/Sabre/CalDAV/Notifications/
H A DPluginTest.php105 $propFind = new DAV\PropFind('calendars/user1/notifications', [
109 $this->plugin->propFind($propFind, $notification);
113 $propFind->get('{' . Plugin::NS_CALENDARSERVER . '}notificationtype')
/plugin/webdav/vendor/sabre/dav/lib/CalDAV/Schedule/
H A DPlugin.php200 * @param PropFind $propFind
204 function propFind(PropFind $propFind, INode $node) { function in Sabre\\CalDAV\\Schedule\\Plugin
212 …$propFind->handle('{' . self::NS_CALDAV . '}schedule-outbox-URL', function() use ($principalUrl, $…
224 …$propFind->handle('{' . self::NS_CALDAV . '}schedule-inbox-URL', function() use ($principalUrl, $c…
236 …$propFind->handle('{' . self::NS_CALDAV . '}schedule-default-calendar-URL', function() use ($princ…
279 $propFind->handle('{' . self::NS_CALDAV . '}calendar-user-type', function() {
288 …$propFind->handle('{http://calendarserver.org/ns/}calendar-availability', function() use ($propFin…
294 $propFind->getPath(),
303 $propFind->set(
/plugin/webdav/vendor/sabre/dav/lib/DAV/Locks/
H A DPlugin.php94 function propFind(DAV\PropFind $propFind, DAV\INode $node) { argument
96 $propFind->handle('{DAV:}supportedlock', function() {
99 $propFind->handle('{DAV:}lockdiscovery', function() use ($propFind) {
101 $this->getLocks($propFind->getPath())
/plugin/davcal/vendor/sabre/dav/lib/DAV/Locks/
H A DPlugin.php94 function propFind(DAV\PropFind $propFind, DAV\INode $node) { function in Sabre\\DAV\\Locks\\Plugin
96 $propFind->handle('{DAV:}supportedlock', function() {
99 $propFind->handle('{DAV:}lockdiscovery', function() use ($propFind) {
101 $this->getLocks($propFind->getPath())
/plugin/webdav/vendor/sabre/dav/lib/CalDAV/Notifications/
H A DPlugin.php70 $server->on('propFind', [$this, 'propFind']);
/plugin/davcal/vendor/sabre/dav/lib/CalDAV/Notifications/
H A DPlugin.php70 $server->on('propFind', [$this, 'propFind']);
/plugin/webdav/vendor/sabre/dav/lib/DAV/Sync/
H A DPlugin.php208 function propFind(DAV\PropFind $propFind, DAV\INode $node) { function in Sabre\\DAV\\Sync\\Plugin
210 $propFind->handle('{DAV:}sync-token', function() use ($node) {
/plugin/davcal/vendor/sabre/dav/lib/DAV/Sync/
H A DPlugin.php208 function propFind(DAV\PropFind $propFind, DAV\INode $node) { argument
210 $propFind->handle('{DAV:}sync-token', function() use ($node) {
/plugin/davcal/vendor/sabre/dav/lib/CalDAV/Schedule/
H A DPlugin.php196 * @param PropFind $propFind
200 function propFind(PropFind $propFind, INode $node) { function in Sabre\\CalDAV\\Schedule\\Plugin
208 …$propFind->handle('{' . self::NS_CALDAV . '}schedule-outbox-URL', function() use ($principalUrl, $…
217 …$propFind->handle('{' . self::NS_CALDAV . '}schedule-inbox-URL', function() use ($principalUrl, $c…
226 …$propFind->handle('{' . self::NS_CALDAV . '}schedule-default-calendar-URL', function() use ($princ…
255 $propFind->handle('{' . self::NS_CALDAV . '}calendar-user-type', function() {
/plugin/davcal/vendor/sabre/dav/tests/Sabre/DAV/Xml/Property/
H A DSupportedReportSetTest.php67 $this->server->on('propFind', function(DAV\PropFind $propFind, DAV\INode $node) {
68 if ($prop = $propFind->get('{DAV:}supported-report-set')) {
/plugin/davcal/vendor/sabre/dav/lib/DAV/Browser/
H A DPlugin.php337 $propFind = new PropFindAll($path);
338 $properties = $this->server->getPropertiesByNode($propFind, $node);
340 $properties = $propFind->getResultForMultiStatus()[200];
/plugin/webdav/vendor/sabre/dav/lib/DAV/Browser/
H A DPlugin.php337 $propFind = new PropFindAll($path);
338 $properties = $this->server->getPropertiesByNode($propFind, $node);
340 $properties = $propFind->getResultForMultiStatus()[200];
/plugin/webdav/vendor/sabre/dav/
H A DCHANGELOG.md185 * #608: When a HTTP error is triggered during `Client:propFind`, we're now

12