Home
last modified time | relevance | path

Searched refs:DAV (Results 76 – 100 of 556) sorted by relevance

12345678910>>...23

/plugin/webdav/vendor/sabre/dav/lib/DAVACL/Exception/
H A DNoAbstract.php5 use Sabre\DAV; alias
15 class NoAbstract extends DAV\Exception\PreconditionFailed {
22 * @param DAV\Server $server
26 function serialize(DAV\Server $server, \DOMElement $errorNode) {
H A DNotRecognizedPrincipal.php5 use Sabre\DAV; alias
15 class NotRecognizedPrincipal extends DAV\Exception\PreconditionFailed {
22 * @param DAV\Server $server
26 function serialize(DAV\Server $server, \DOMElement $errorNode) {
/plugin/davcal/vendor/sabre/dav/lib/DAVACL/Exception/
H A DAceConflict.php5 use Sabre\DAV; alias
15 class AceConflict extends DAV\Exception\Conflict {
22 * @param DAV\Server $server
26 function serialize(DAV\Server $server, \DOMElement $errorNode) {
H A DNoAbstract.php5 use Sabre\DAV; alias
15 class NoAbstract extends DAV\Exception\PreconditionFailed {
22 * @param DAV\Server $server
26 function serialize(DAV\Server $server, \DOMElement $errorNode) {
H A DNotRecognizedPrincipal.php5 use Sabre\DAV; alias
15 class NotRecognizedPrincipal extends DAV\Exception\PreconditionFailed {
22 * @param DAV\Server $server
26 function serialize(DAV\Server $server, \DOMElement $errorNode) {
H A DNotSupportedPrivilege.php5 use Sabre\DAV; alias
15 class NotSupportedPrivilege extends DAV\Exception\PreconditionFailed {
22 * @param DAV\Server $server
26 function serialize(DAV\Server $server, \DOMElement $errorNode) {
/plugin/webdav/vendor/sabre/dav/lib/DAV/PropertyStorage/
H A DPlugin.php3 namespace Sabre\DAV\PropertyStorage;
5 use Sabre\DAV\INode;
6 use Sabre\DAV\PropFind;
7 use Sabre\DAV\PropPatch;
8 use Sabre\DAV\Server;
9 use Sabre\DAV\ServerPlugin;
/plugin/davcal/vendor/sabre/dav/lib/DAV/PropertyStorage/
H A DPlugin.php3 namespace Sabre\DAV\PropertyStorage;
5 use Sabre\DAV\Server;
6 use Sabre\DAV\ServerPlugin;
7 use Sabre\DAV\PropPatch;
8 use Sabre\DAV\PropFind;
9 use Sabre\DAV\INode;
/plugin/davcal/vendor/sabre/dav/lib/DAV/Auth/
H A DPlugin.php3 namespace Sabre\DAV\Auth;
8 use Sabre\DAV\Exception\NotAuthenticated;
9 use Sabre\DAV\Server;
10 use Sabre\DAV\ServerPlugin;
158 … throw new \Sabre\DAV\Exception('No authentication backends were configured on this server.');
169 …throw new \Sabre\DAV\Exception('The authentication backend did not return a correct value from the…
/plugin/davcal/vendor/sabre/dav/tests/Sabre/CalDAV/Notifications/
H A DPluginTest.php5 use Sabre\DAV; alias
36 $root = new DAV\SimpleCollection('root');
40 $this->server = new DAV\Server($root);
54 $authBackend = new DAV\Auth\Backend\Mock();
56 $authPlugin = new DAV\Auth\Plugin($authBackend, 'SabreDAV');
93 $this->assertTrue($prop instanceof DAV\Xml\Property\Href);
105 $propFind = new DAV\PropFind('calendars/user1/notifications', [
126 $server = new DAV\Server([$notification]);
156 $server = new DAV\Server();
/plugin/davcal/vendor/sabre/dav/tests/Sabre/DAV/Locks/Backend/
H A DAbstractTest.php3 namespace Sabre\DAV\Locks\Backend;
5 use Sabre\DAV; alias
29 $lock = new DAV\Locks\LockInfo();
53 $lock = new DAV\Locks\LockInfo();
57 $lock->depth = DAV\Server::DEPTH_INFINITY;
78 $lock = new DAV\Locks\LockInfo();
97 $lock = new DAV\Locks\LockInfo();
124 $lock = new DAV\Locks\LockInfo();
152 $lock = new DAV\Locks\LockInfo();
177 $lock = new DAV\Locks\LockInfo();
/plugin/webdav/vendor/sabre/dav/lib/CalDAV/Exception/
H A DInvalidComponentType.php6 use Sabre\DAV; alias
15 class InvalidComponentType extends DAV\Exception\Forbidden {
22 * @param DAV\Server $server
26 function serialize(DAV\Server $server, \DOMElement $errorNode) {
/plugin/davcal/vendor/sabre/dav/lib/CalDAV/Exception/
H A DInvalidComponentType.php5 use Sabre\DAV; alias
15 class InvalidComponentType extends DAV\Exception\Forbidden {
22 * @param DAV\Server $server
26 function serialize(DAV\Server $server, \DOMElement $errorNode) {
/plugin/davcal/vendor/sabre/dav/tests/Sabre/CalDAV/
H A DICSExportPluginTest.php5 use Sabre\DAV; alias
24 $s = new DAV\Server();
47 $s = new DAV\Server($tree);
95 $s = new DAV\Server($tree);
133 $s = new DAV\Server();
159 $s = new DAV\Server($tree);
197 $s = new DAV\Server($tree);
202 $s->addPlugin(new DAV\Auth\Plugin(new DAV\Auth\Backend\Mock(),'SabreDAV'));
252 $s = new DAV\Server($tree);
288 $s = new DAV\Server($tree);
[all …]
/plugin/webdav/vendor/sabre/dav/lib/DAV/Exception/
H A DConflictingLock.php3 namespace Sabre\DAV\Exception;
5 use Sabre\DAV; alias
22 * @param DAV\Server $server
26 function serialize(DAV\Server $server, \DOMElement $errorNode) {
/plugin/davcal/vendor/sabre/dav/lib/DAV/Exception/
H A DConflictingLock.php3 namespace Sabre\DAV\Exception;
5 use Sabre\DAV; alias
22 * @param DAV\Server $server
26 function serialize(DAV\Server $server, \DOMElement $errorNode) {
/plugin/webdav/_test/lib/
H A DDAVServerTest.php3 use Sabre\DAV; alias
5 use dokuwiki\plugin\webdav\core\DAV\Collection;
21 $this->server = new DAV\Server(new DAV\SimpleCollection('root', [
22 new DAV\SimpleCollection('wiki', $wiki_collections),
/plugin/davcal/vendor/sabre/dav/lib/CalDAV/
H A DCalendar.php5 use Sabre\DAV; alias
7 use Sabre\DAV\PropPatch;
19 class Calendar implements ICalendar, DAV\IProperties, DAV\Sync\ISyncCollection, DAV\IMultiGet {
109 if (!$obj) throw new DAV\Exception\NotFound('Calendar object not found');
181 …throw new DAV\Exception\MethodNotAllowed('Creating collections in calendar objects is not allowed'…
223 throw new DAV\Exception\MethodNotAllowed('Renaming calendars is not yet supported');
373 throw new DAV\Exception\MethodNotAllowed('Changing ACL is not yet supported');
/plugin/webdav/vendor/sabre/dav/lib/DAV/Xml/Property/
H A DSupportedReportSet.php3 namespace Sabre\DAV\Xml\Property;
5 use Sabre\DAV; alias
6 use Sabre\DAV\Browser\HtmlOutput;
7 use Sabre\DAV\Browser\HtmlOutputHelper;
66 throw new DAV\Exception('Reportname must be in clark-notation');
/plugin/davcal/vendor/sabre/dav/lib/DAV/Xml/Property/
H A DSupportedReportSet.php3 namespace Sabre\DAV\Xml\Property;
5 use Sabre\DAV; alias
6 use Sabre\DAV\Browser\HtmlOutput;
7 use Sabre\DAV\Browser\HtmlOutputHelper;
66 throw new DAV\Exception('Reportname must be in clark-notation');
/plugin/davcal/vendor/sabre/dav/lib/DAVACL/FS/
H A DCollection.php5 use Sabre\DAV\FSExt\Directory as BaseCollection;
7 use Sabre\DAV\Exception\Forbidden;
8 use Sabre\DAV\Exception\NotFound;
55 * @throws DAV\Exception\NotFound
56 * @return DAV\INode
/plugin/davcal/vendor/sabre/dav/bin/
H A Dsabredav.php42 use Sabre\DAV; alias
45 $root = new DAV\FS\Directory(getcwd());
48 $server = new DAV\Server($root);
51 $server->addPlugin(new DAV\Browser\Plugin());
/plugin/davcal/vendor/sabre/dav/tests/Sabre/CalDAV/Backend/
H A DAbstractPDOTest.php6 use Sabre\DAV; alias
7 use Sabre\DAV\PropPatch;
123 '{DAV:}displayname' => 'myCalendar',
133 '{DAV:}yourmom' => 403,
134 '{DAV:}displayname' => 424,
147 '{DAV:}displayname' => 'Hello!',
800 $propPatch = new DAV\PropPatch([
803 '{DAV:}unknown' => 'foo',
810 '{DAV:}unknown' => 403,
811 '{DAV:}displayname' => 424,
[all …]
/plugin/webdav/vendor/sabre/dav/lib/DAV/Auth/
H A DPlugin.php3 namespace Sabre\DAV\Auth;
5 use Sabre\DAV\Exception\NotAuthenticated;
6 use Sabre\DAV\Server;
7 use Sabre\DAV\ServerPlugin;
194 … throw new \Sabre\DAV\Exception('No authentication backends were configured on this server.');
205 …throw new \Sabre\DAV\Exception('The authentication backend did not return a correct value from the…
/plugin/davcal/vendor/sabre/dav/tests/Sabre/DAV/Browser/
H A DMapGetToPropFindTest.php3 namespace Sabre\DAV\Browser;
5 use Sabre\DAV; alias
10 class MapGetToPropFindTest extends DAV\AbstractServer {
33 'X-Sabre-Version' => [DAV\Version::VERSION],

12345678910>>...23