diff options
Diffstat (limited to 'lib/private/connector/sabre/server.php')
-rw-r--r-- | lib/private/connector/sabre/server.php | 36 |
1 files changed, 16 insertions, 20 deletions
diff --git a/lib/private/connector/sabre/server.php b/lib/private/connector/sabre/server.php index a836af2a0b8..f17f46a81cf 100644 --- a/lib/private/connector/sabre/server.php +++ b/lib/private/connector/sabre/server.php @@ -1,30 +1,26 @@ <?php /** - * ownCloud / SabreDAV + * @author Andreas Fischer <bantu@owncloud.com> + * @author Jörn Friedrich Dreyer <jfd@butonic.de> + * @author scolebrook <scolebrook@mac.com> + * @author Thomas Müller <thomas.mueller@tmit.eu> + * @author Vincent Petry <pvince81@owncloud.com> * - * @author Markus Goetz + * @copyright Copyright (c) 2015, ownCloud, Inc. + * @license AGPL-3.0 * - * @copyright Copyright (C) 2007-2013 Rooftop Solutions. All rights reserved. - * @author Evert Pot (http://www.rooftopsolutions.nl/) - * @license http://code.google.com/p/sabredav/wiki/License Modified BSD License - */ - -/** - * Class OC_Connector_Sabre_Server - * - * This class reimplements some methods from @see \Sabre\DAV\Server. - * - * Basically we add handling of depth: infinity. - * - * The right way to handle this would have been to submit a patch to the upstream project - * and grab the corresponding version one merged. + * This code is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License, version 3, + * as published by the Free Software Foundation. * - * Due to time constrains and the limitations where we don't want to upgrade 3rdparty code in - * this stage of the release cycle we did choose this approach. + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. * - * For ownCloud 7 we will upgrade SabreDAV and submit the patch - if needed. + * You should have received a copy of the GNU Affero General Public License, version 3, + * along with this program. If not, see <http://www.gnu.org/licenses/> * - * @see \Sabre\DAV\Server */ class OC_Connector_Sabre_Server extends Sabre\DAV\Server { |