From 2a054e6c04e0a40421510eb889cbf59f153c5177 Mon Sep 17 00:00:00 2001 From: Christoph Wurst Date: Mon, 24 Aug 2020 14:54:25 +0200 Subject: Update the license headers for Nextcloud 20 Signed-off-by: Christoph Wurst --- apps/files_sharing/lib/Activity/Settings/PublicLinks.php | 1 + apps/files_sharing/lib/Activity/Settings/RemoteShare.php | 1 + apps/files_sharing/lib/Activity/Settings/ShareActivitySettings.php | 5 ++++- apps/files_sharing/lib/Activity/Settings/Shared.php | 1 + apps/files_sharing/lib/Command/ExiprationNotification.php | 1 + apps/files_sharing/lib/Controller/ShareAPIController.php | 3 +++ apps/files_sharing/lib/Controller/ShareesAPIController.php | 1 + apps/files_sharing/lib/Event/BeforeTemplateRenderedEvent.php | 3 ++- apps/files_sharing/lib/ExpireSharesJob.php | 2 +- apps/files_sharing/lib/External/Storage.php | 1 + apps/files_sharing/lib/Helper.php | 1 + .../lib/Listener/LegacyBeforeTemplateRenderedListener.php | 3 +-- apps/files_sharing/lib/MountProvider.php | 1 - apps/files_sharing/lib/SharedMount.php | 1 + apps/files_sharing/lib/Updater.php | 2 +- 15 files changed, 20 insertions(+), 7 deletions(-) (limited to 'apps/files_sharing/lib') diff --git a/apps/files_sharing/lib/Activity/Settings/PublicLinks.php b/apps/files_sharing/lib/Activity/Settings/PublicLinks.php index 87158cc5e03..455ae88d5c6 100644 --- a/apps/files_sharing/lib/Activity/Settings/PublicLinks.php +++ b/apps/files_sharing/lib/Activity/Settings/PublicLinks.php @@ -3,6 +3,7 @@ * @copyright Copyright (c) 2016 Joas Schilling * * @author Joas Schilling + * @author Robin Appelman * * @license GNU AGPL version 3 or any later version * diff --git a/apps/files_sharing/lib/Activity/Settings/RemoteShare.php b/apps/files_sharing/lib/Activity/Settings/RemoteShare.php index 55eba626e2c..24fa753437b 100644 --- a/apps/files_sharing/lib/Activity/Settings/RemoteShare.php +++ b/apps/files_sharing/lib/Activity/Settings/RemoteShare.php @@ -4,6 +4,7 @@ * * @author Joas Schilling * @author Morris Jobke + * @author Robin Appelman * * @license GNU AGPL version 3 or any later version * diff --git a/apps/files_sharing/lib/Activity/Settings/ShareActivitySettings.php b/apps/files_sharing/lib/Activity/Settings/ShareActivitySettings.php index 14f3fe339c1..26b307c34e4 100644 --- a/apps/files_sharing/lib/Activity/Settings/ShareActivitySettings.php +++ b/apps/files_sharing/lib/Activity/Settings/ShareActivitySettings.php @@ -1,9 +1,12 @@ * + * @author Robin Appelman + * * @license GNU AGPL version 3 or any later version * * This program is free software: you can redistribute it and/or modify @@ -17,7 +20,7 @@ declare(strict_types=1); * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . + * along with this program. If not, see . * */ diff --git a/apps/files_sharing/lib/Activity/Settings/Shared.php b/apps/files_sharing/lib/Activity/Settings/Shared.php index 9ec89d1d1f2..43b26252287 100644 --- a/apps/files_sharing/lib/Activity/Settings/Shared.php +++ b/apps/files_sharing/lib/Activity/Settings/Shared.php @@ -4,6 +4,7 @@ * * @author Joas Schilling * @author Morris Jobke + * @author Robin Appelman * * @license GNU AGPL version 3 or any later version * diff --git a/apps/files_sharing/lib/Command/ExiprationNotification.php b/apps/files_sharing/lib/Command/ExiprationNotification.php index 1df49943188..748a640a962 100644 --- a/apps/files_sharing/lib/Command/ExiprationNotification.php +++ b/apps/files_sharing/lib/Command/ExiprationNotification.php @@ -5,6 +5,7 @@ declare(strict_types=1); /** * @copyright Copyright (c) 2019, Roeland Jago Douma * + * @author Joas Schilling * @author Roeland Jago Douma * * @license GNU AGPL version 3 or any later version diff --git a/apps/files_sharing/lib/Controller/ShareAPIController.php b/apps/files_sharing/lib/Controller/ShareAPIController.php index 9ae192ff5d6..971b54ff443 100644 --- a/apps/files_sharing/lib/Controller/ShareAPIController.php +++ b/apps/files_sharing/lib/Controller/ShareAPIController.php @@ -8,6 +8,9 @@ declare(strict_types=1); * @author Bjoern Schiessle * @author Christoph Wurst * @author Daniel Calviño Sánchez + * @author Daniel Kesselberg + * @author Gary Kim + * @author Georg Ehrke * @author Joas Schilling * @author John Molakvoæ (skjnldsv) * @author Julius Härtl diff --git a/apps/files_sharing/lib/Controller/ShareesAPIController.php b/apps/files_sharing/lib/Controller/ShareesAPIController.php index 3ed777a8f71..0509ba72f1a 100644 --- a/apps/files_sharing/lib/Controller/ShareesAPIController.php +++ b/apps/files_sharing/lib/Controller/ShareesAPIController.php @@ -10,6 +10,7 @@ declare(strict_types=1); * @author Björn Schießle * @author Christoph Wurst * @author Daniel Calviño Sánchez + * @author Daniel Kesselberg * @author Joas Schilling * @author John Molakvoæ (skjnldsv) * @author Maxence Lange diff --git a/apps/files_sharing/lib/Event/BeforeTemplateRenderedEvent.php b/apps/files_sharing/lib/Event/BeforeTemplateRenderedEvent.php index 0feec779771..6076d50b1f2 100644 --- a/apps/files_sharing/lib/Event/BeforeTemplateRenderedEvent.php +++ b/apps/files_sharing/lib/Event/BeforeTemplateRenderedEvent.php @@ -6,6 +6,7 @@ declare(strict_types=1); * @copyright Copyright (c) 2020 Julius Härtl * * @author Julius Härtl + * @author Morris Jobke * * @license GNU AGPL version 3 or any later version * @@ -16,7 +17,7 @@ declare(strict_types=1); * * 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 + * 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 diff --git a/apps/files_sharing/lib/ExpireSharesJob.php b/apps/files_sharing/lib/ExpireSharesJob.php index c2916d260b3..d56e1f02425 100644 --- a/apps/files_sharing/lib/ExpireSharesJob.php +++ b/apps/files_sharing/lib/ExpireSharesJob.php @@ -3,7 +3,7 @@ * @copyright Copyright (c) 2016, ownCloud, Inc. * * @author Christoph Wurst - * @author Morris Jobke + * @author Joas Schilling * @author Roeland Jago Douma * * @license AGPL-3.0 diff --git a/apps/files_sharing/lib/External/Storage.php b/apps/files_sharing/lib/External/Storage.php index d875a51cb7a..5c183b2eae3 100644 --- a/apps/files_sharing/lib/External/Storage.php +++ b/apps/files_sharing/lib/External/Storage.php @@ -5,6 +5,7 @@ * @author Bjoern Schiessle * @author Björn Schießle * @author Christoph Wurst + * @author Daniel Kesselberg * @author Joas Schilling * @author Lukas Reschke * @author Morris Jobke diff --git a/apps/files_sharing/lib/Helper.php b/apps/files_sharing/lib/Helper.php index 2f1f6da79ca..44aa490e30d 100644 --- a/apps/files_sharing/lib/Helper.php +++ b/apps/files_sharing/lib/Helper.php @@ -3,6 +3,7 @@ * @copyright Copyright (c) 2016, ownCloud, Inc. * * @author Björn Schießle + * @author Daniel Kesselberg * @author Lukas Reschke * @author Morris Jobke * @author Robin Appelman diff --git a/apps/files_sharing/lib/Listener/LegacyBeforeTemplateRenderedListener.php b/apps/files_sharing/lib/Listener/LegacyBeforeTemplateRenderedListener.php index fb651f091f0..bd0a668b429 100644 --- a/apps/files_sharing/lib/Listener/LegacyBeforeTemplateRenderedListener.php +++ b/apps/files_sharing/lib/Listener/LegacyBeforeTemplateRenderedListener.php @@ -5,8 +5,7 @@ declare(strict_types=1); /** * @copyright Copyright (c) 2019, Roeland Jago Douma * - * @author Joas Schilling - * @author Roeland Jago Douma + * @author Julius Härtl * * @license GNU AGPL version 3 or any later version * diff --git a/apps/files_sharing/lib/MountProvider.php b/apps/files_sharing/lib/MountProvider.php index 402061c7905..3e703a4a6bb 100644 --- a/apps/files_sharing/lib/MountProvider.php +++ b/apps/files_sharing/lib/MountProvider.php @@ -3,7 +3,6 @@ * @copyright Copyright (c) 2016, ownCloud, Inc. * * @author Christoph Wurst - * @author Daniel Calviño Sánchez * @author Joas Schilling * @author Maxence Lange * @author Morris Jobke diff --git a/apps/files_sharing/lib/SharedMount.php b/apps/files_sharing/lib/SharedMount.php index 02e656a4fd5..1cedf3a2da6 100644 --- a/apps/files_sharing/lib/SharedMount.php +++ b/apps/files_sharing/lib/SharedMount.php @@ -3,6 +3,7 @@ * @copyright Copyright (c) 2016, ownCloud, Inc. * * @author Björn Schießle + * @author Daniel Kesselberg * @author Frédéric Fortier * @author Joas Schilling * @author Morris Jobke diff --git a/apps/files_sharing/lib/Updater.php b/apps/files_sharing/lib/Updater.php index fd2847f4af9..9b5173b489c 100644 --- a/apps/files_sharing/lib/Updater.php +++ b/apps/files_sharing/lib/Updater.php @@ -4,7 +4,7 @@ * * @author Björn Schießle * @author Christoph Wurst - * @author Daniel Calviño Sánchez + * @author Joas Schilling * @author Michael Gapczynski * @author Morris Jobke * @author Roeland Jago Douma -- cgit v1.2.3