diff options
Diffstat (limited to '3dparty/Sabre.includes.php')
-rw-r--r-- | 3dparty/Sabre.includes.php | 126 |
1 files changed, 126 insertions, 0 deletions
diff --git a/3dparty/Sabre.includes.php b/3dparty/Sabre.includes.php new file mode 100644 index 00000000000..6b179e34fd8 --- /dev/null +++ b/3dparty/Sabre.includes.php @@ -0,0 +1,126 @@ +<?php + +/** + * Library include file + * + * This file contains all includes to the rest of the SabreDAV library + * Make sure the lib/ directory is in PHP's include_path + * + * @package Sabre + * @subpackage DAV + * @copyright Copyright (C) 2007-2011 Rooftop Solutions. All rights reserved. + * @author Evert Pot (http://www.rooftopsolutions.nl/) + * @license http://code.google.com/p/sabredav/wiki/License Modified BSD License + */ + +/* Utilities */ +include 'Sabre/HTTP/Util.php'; +include 'Sabre/HTTP/Response.php'; +include 'Sabre/HTTP/Request.php'; +include 'Sabre/HTTP/AbstractAuth.php'; +include 'Sabre/HTTP/BasicAuth.php'; +include 'Sabre/HTTP/DigestAuth.php'; +include 'Sabre/HTTP/AWSAuth.php'; + +/* Version */ +include 'Sabre/DAV/Version.php'; +include 'Sabre/HTTP/Version.php'; + +/* Exceptions */ +include 'Sabre/DAV/Exception.php'; +include 'Sabre/DAV/Exception/BadRequest.php'; +include 'Sabre/DAV/Exception/Conflict.php'; +include 'Sabre/DAV/Exception/FileNotFound.php'; +include 'Sabre/DAV/Exception/InsufficientStorage.php'; +include 'Sabre/DAV/Exception/Locked.php'; +include 'Sabre/DAV/Exception/LockTokenMatchesRequestUri.php'; +include 'Sabre/DAV/Exception/MethodNotAllowed.php'; +include 'Sabre/DAV/Exception/NotImplemented.php'; +include 'Sabre/DAV/Exception/Forbidden.php'; +include 'Sabre/DAV/Exception/PreconditionFailed.php'; +include 'Sabre/DAV/Exception/RequestedRangeNotSatisfiable.php'; +include 'Sabre/DAV/Exception/UnsupportedMediaType.php'; +include 'Sabre/DAV/Exception/NotAuthenticated.php'; + +include 'Sabre/DAV/Exception/ConflictingLock.php'; +include 'Sabre/DAV/Exception/ReportNotImplemented.php'; +include 'Sabre/DAV/Exception/InvalidResourceType.php'; + +/* Properties */ +include 'Sabre/DAV/Property.php'; +include 'Sabre/DAV/Property/GetLastModified.php'; +include 'Sabre/DAV/Property/ResourceType.php'; +include 'Sabre/DAV/Property/SupportedLock.php'; +include 'Sabre/DAV/Property/LockDiscovery.php'; +include 'Sabre/DAV/Property/IHref.php'; +include 'Sabre/DAV/Property/Href.php'; +include 'Sabre/DAV/Property/HrefList.php'; +include 'Sabre/DAV/Property/SupportedReportSet.php'; +include 'Sabre/DAV/Property/Response.php'; +include 'Sabre/DAV/Property/ResponseList.php'; + +/* Node interfaces */ +include 'Sabre/DAV/INode.php'; +include 'Sabre/DAV/IFile.php'; +include 'Sabre/DAV/ICollection.php'; +include 'Sabre/DAV/IProperties.php'; +include 'Sabre/DAV/ILockable.php'; +include 'Sabre/DAV/IQuota.php'; +include 'Sabre/DAV/IExtendedCollection.php'; + +/* Node abstract implementations */ +include 'Sabre/DAV/Node.php'; +include 'Sabre/DAV/File.php'; +include 'Sabre/DAV/Directory.php'; + +/* Utilities */ +include 'Sabre/DAV/SimpleDirectory.php'; +include 'Sabre/DAV/XMLUtil.php'; +include 'Sabre/DAV/URLUtil.php'; + +/* Filesystem implementation */ +include 'Sabre/DAV/FS/Node.php'; +include 'Sabre/DAV/FS/File.php'; +include 'Sabre/DAV/FS/Directory.php'; + +/* Advanced filesystem implementation */ +include 'Sabre/DAV/FSExt/Node.php'; +include 'Sabre/DAV/FSExt/File.php'; +include 'Sabre/DAV/FSExt/Directory.php'; + +/* Trees */ +include 'Sabre/DAV/Tree.php'; +include 'Sabre/DAV/ObjectTree.php'; +include 'Sabre/DAV/Tree/Filesystem.php'; + +/* Server */ +include 'Sabre/DAV/Server.php'; +include 'Sabre/DAV/ServerPlugin.php'; + +/* Browser */ +include 'Sabre/DAV/Browser/Plugin.php'; +include 'Sabre/DAV/Browser/MapGetToPropFind.php'; +include 'Sabre/DAV/Browser/GuessContentType.php'; + +/* Locks */ +include 'Sabre/DAV/Locks/LockInfo.php'; +include 'Sabre/DAV/Locks/Plugin.php'; +include 'Sabre/DAV/Locks/Backend/Abstract.php'; +include 'Sabre/DAV/Locks/Backend/FS.php'; +include 'Sabre/DAV/Locks/Backend/PDO.php'; + +/* Temporary File Filter plugin */ +include 'Sabre/DAV/TemporaryFileFilterPlugin.php'; + +/* Authentication plugin */ +include 'Sabre/DAV/Auth/Plugin.php'; +include 'Sabre/DAV/Auth/IBackend.php'; +include 'Sabre/DAV/Auth/Backend/AbstractDigest.php'; +include 'Sabre/DAV/Auth/Backend/AbstractBasic.php'; +include 'Sabre/DAV/Auth/Backend/File.php'; +include 'Sabre/DAV/Auth/Backend/PDO.php'; + +/* DavMount plugin */ +include 'Sabre/DAV/Mount/Plugin.php'; + + |