]> source.dussan.org Git - nextcloud-server.git/commitdiff
fixing file headers with copy right
authorThomas Müller <thomas.mueller@tmit.eu>
Sat, 5 May 2012 16:13:40 +0000 (18:13 +0200)
committerThomas Müller <thomas.mueller@tmit.eu>
Sat, 5 May 2012 16:13:40 +0000 (18:13 +0200)
lib/connector/sabre/auth.php
lib/connector/sabre/directory.php
lib/connector/sabre/file.php
lib/connector/sabre/locks.php
lib/connector/sabre/node.php

index 8964ef7d0de45d21ec55e47edf5d913486a6d70b..1c7a84f0f2a69c5b9a08c003a3d03b60a90483e6 100644 (file)
@@ -1,18 +1,26 @@
 <?php
+
 /**
- * HTTP Basic authentication backend class
+ * ownCloud
  *
- * This class can be used by authentication objects wishing to use HTTP Basic
- * Most of the digest logic is handled, implementors just need to worry about
- * the validateUserPass method.
+ * @author Jakob Sack
+ * @copyright 2011 Jakob Sack kde@jakobsack.de
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
+ * License as published by the Free Software Foundation; either
+ * version 3 of the License, or any later version.
+ *
+ * This library 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.
+ *
+ * You should have received a copy of the GNU Affero General Public
+ * License along with this library.  If not, see <http://www.gnu.org/licenses/>.
  *
- * @package Sabre
- * @subpackage DAV
- * @copyright Copyright (C) 2007-2011 Rooftop Solutions. All rights reserved.
- * @author James David Low (http://jameslow.com/)
- * @author Evert Pot (http://www.rooftopsolutions.nl/) 
- * @license http://code.google.com/p/sabredav/wiki/License Modified BSD License
  */
+
 class OC_Connector_Sabre_Auth extends Sabre_DAV_Auth_Backend_AbstractBasic {
        /**
         * Validates a username and password
index 912c8cd439a10b3a6b2b5f934c08ce875ba1a11a..935d3b0abe4a585acecc6c286d4c925b9853aa2e 100644 (file)
@@ -1,13 +1,26 @@
 <?php
+
 /**
- * Directory class 
- * 
- * @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
+ * ownCloud
+ *
+ * @author Jakob Sack
+ * @copyright 2011 Jakob Sack kde@jakobsack.de
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
+ * License as published by the Free Software Foundation; either
+ * version 3 of the License, or any later version.
+ *
+ * This library 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.
+ *
+ * You should have received a copy of the GNU Affero General Public
+ * License along with this library.  If not, see <http://www.gnu.org/licenses/>.
+ *
  */
+
 class OC_Connector_Sabre_Directory extends OC_Connector_Sabre_Node implements Sabre_DAV_ICollection, Sabre_DAV_IQuota {
 
        /**
index 98661dbb184a4f53f833f04b81521fdfbcd51615..f2efe0a5ac1df94420d7cd7cca94e49961013dbe 100644 (file)
@@ -1,13 +1,26 @@
 <?php
+
 /**
- * File class 
- * 
- * @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
+ * ownCloud
+ *
+ * @author Jakob Sack
+ * @copyright 2011 Jakob Sack kde@jakobsack.de
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
+ * License as published by the Free Software Foundation; either
+ * version 3 of the License, or any later version.
+ *
+ * This library 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.
+ *
+ * You should have received a copy of the GNU Affero General Public
+ * License along with this library.  If not, see <http://www.gnu.org/licenses/>.
+ *
  */
+
 class OC_Connector_Sabre_File extends OC_Connector_Sabre_Node implements Sabre_DAV_IFile {
 
        /**
index 7164d9a09c12b0fbf5dee90c33971f80abb921ad..94382e68a1a23981fa0d3368e412d6ae4047c276 100644 (file)
@@ -1,34 +1,26 @@
 <?php
+
 /**
- * The Lock manager allows you to handle all file-locks centrally.
+ * ownCloud
  *
- * This Lock Manager stores all its data in a database. You must pass a PDO
- * connection object in the constructor.
- * 
- * @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
- */
-/*
+ * @author Jakob Sack
+ * @copyright 2011 Jakob Sack kde@jakobsack.de
  *
- * The following SQL statement is just a help for developers and will not be
- * executed!
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
+ * License as published by the Free Software Foundation; either
+ * version 3 of the License, or any later version.
  *
- * CREATE TABLE locks (
- *   `id` INTEGER UNSIGNED NOT NULL PRIMARY KEY AUTO_INCREMENT,
- *   `userid` VARCHAR(200),
- *   `owner` VARCHAR(100),
- *   `timeout` INTEGER UNSIGNED,
- *   `created` INTEGER,
- *   `token` VARCHAR(100),
- *   `scope` TINYINT,
- *   `depth` TINYINT,
- *   `uri` text
- * );
+ * This library 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.
+ *
+ * You should have received a copy of the GNU Affero General Public
+ * License along with this library.  If not, see <http://www.gnu.org/licenses/>.
  *
  */
+
 class OC_Connector_Sabre_Locks extends Sabre_DAV_Locks_Backend_Abstract {
 
        /**
index 41acb48dfb6d741006663ed510c0385bdabe8ee9..a7d1de8b953e75aab2c1fa5b7557b0916ef52dcd 100644 (file)
@@ -1,28 +1,26 @@
 <?php
+
 /**
- * Base node-class 
+ * ownCloud
  *
- * The node class implements the method used by both the File and the Directory classes 
- * 
- * @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
- */
-/*
+ * @author Jakob Sack
+ * @copyright 2011 Jakob Sack kde@jakobsack.de
  *
- * The following SQL statement is just a help for developers and will not be
- * executed!
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
+ * License as published by the Free Software Foundation; either
+ * version 3 of the License, or any later version.
  *
- * CREATE TABLE IF NOT EXISTS `properties` (
- *   `userid` varchar(200) COLLATE utf8_unicode_ci NOT NULL,
- *   `propertypath` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
- *   `propertyname` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
- *   `propertyvalue` text COLLATE utf8_unicode_ci NOT NULL
- * ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
+ * This library 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.
+ *
+ * You should have received a copy of the GNU Affero General Public
+ * License along with this library.  If not, see <http://www.gnu.org/licenses/>.
  *
  */
+
 abstract class OC_Connector_Sabre_Node implements Sabre_DAV_INode, Sabre_DAV_IProperties {
 
        /**