diff options
author | Lukas Reschke <lukas@owncloud.com> | 2016-03-01 17:25:15 +0100 |
---|---|---|
committer | Lukas Reschke <lukas@owncloud.com> | 2016-03-01 17:25:15 +0100 |
commit | 933f60e3147ad872acf3211dc826ebf528434681 (patch) | |
tree | 3317c0a60a335c084957a0b74589fcfae4cc76ef /apps/dav/lib/caldav | |
parent | 900dcf6594d51f603b1a863020363987ed7ab003 (diff) | |
download | nextcloud-server-933f60e3147ad872acf3211dc826ebf528434681.tar.gz nextcloud-server-933f60e3147ad872acf3211dc826ebf528434681.zip |
Update author information
Probably nice for the people that contributed to 9.0 to see themselves in the AUTHORS file :)
Diffstat (limited to 'apps/dav/lib/caldav')
-rw-r--r-- | apps/dav/lib/caldav/caldavbackend.php | 1 | ||||
-rw-r--r-- | apps/dav/lib/caldav/calendar.php | 20 | ||||
-rw-r--r-- | apps/dav/lib/caldav/calendarhome.php | 20 | ||||
-rw-r--r-- | apps/dav/lib/caldav/calendarroot.php | 20 |
4 files changed, 58 insertions, 3 deletions
diff --git a/apps/dav/lib/caldav/caldavbackend.php b/apps/dav/lib/caldav/caldavbackend.php index 70dbccb8745..24376718019 100644 --- a/apps/dav/lib/caldav/caldavbackend.php +++ b/apps/dav/lib/caldav/caldavbackend.php @@ -1,5 +1,6 @@ <?php /** + * @author Joas Schilling <nickvergessen@owncloud.com> * @author Scrutinizer Auto-Fixer <auto-fixer@scrutinizer-ci.com> * @author Thomas Müller <thomas.mueller@tmit.eu> * diff --git a/apps/dav/lib/caldav/calendar.php b/apps/dav/lib/caldav/calendar.php index 6b34d570eb3..c9e210f8590 100644 --- a/apps/dav/lib/caldav/calendar.php +++ b/apps/dav/lib/caldav/calendar.php @@ -1,5 +1,23 @@ <?php - +/** + * @author Thomas Müller <thomas.mueller@tmit.eu> + * + * @copyright Copyright (c) 2016, ownCloud, Inc. + * @license AGPL-3.0 + * + * 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. + * + * 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. + * + * 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/> + * + */ namespace OCA\DAV\CalDAV; use OCA\DAV\DAV\Sharing\IShareable; diff --git a/apps/dav/lib/caldav/calendarhome.php b/apps/dav/lib/caldav/calendarhome.php index 7f98dfb94e0..9baf2a6e429 100644 --- a/apps/dav/lib/caldav/calendarhome.php +++ b/apps/dav/lib/caldav/calendarhome.php @@ -1,5 +1,23 @@ <?php - +/** + * @author Thomas Müller <thomas.mueller@tmit.eu> + * + * @copyright Copyright (c) 2016, ownCloud, Inc. + * @license AGPL-3.0 + * + * 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. + * + * 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. + * + * 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/> + * + */ namespace OCA\DAV\CalDAV; use Sabre\CalDAV\Backend\NotificationSupport; diff --git a/apps/dav/lib/caldav/calendarroot.php b/apps/dav/lib/caldav/calendarroot.php index ae5fc54cdf3..61eca088fb5 100644 --- a/apps/dav/lib/caldav/calendarroot.php +++ b/apps/dav/lib/caldav/calendarroot.php @@ -1,5 +1,23 @@ <?php - +/** + * @author Thomas Müller <thomas.mueller@tmit.eu> + * + * @copyright Copyright (c) 2016, ownCloud, Inc. + * @license AGPL-3.0 + * + * 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. + * + * 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. + * + * 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/> + * + */ namespace OCA\DAV\CalDAV; class CalendarRoot extends \Sabre\CalDAV\CalendarRoot { |