From 5bf3d1bb384da56adbf205752be8f840aac3b0c5 Mon Sep 17 00:00:00 2001 From: Christoph Wurst Date: Tue, 3 Dec 2019 19:57:53 +0100 Subject: Update license headers Signed-off-by: Christoph Wurst --- apps/provisioning_api/appinfo/routes.php | 4 +++- apps/provisioning_api/lib/AppInfo/Application.php | 3 ++- apps/provisioning_api/lib/Controller/AUserData.php | 23 +++++++++++++++------- .../lib/Controller/AppConfigController.php | 5 ++++- .../lib/Controller/AppsController.php | 4 +++- .../lib/Controller/GroupsController.php | 8 ++++++-- .../lib/Controller/UsersController.php | 13 +++++++++--- .../lib/FederatedFileSharingFactory.php | 3 ++- .../Middleware/Exceptions/NotSubAdminException.php | 2 +- .../lib/Middleware/ProvisioningApiMiddleware.php | 4 +++- .../tests/Controller/AppConfigControllerTest.php | 3 ++- .../tests/Controller/AppsControllerTest.php | 2 +- .../tests/Controller/GroupsControllerTest.php | 4 +++- .../tests/Controller/UsersControllerTest.php | 10 ++++++++-- .../Middleware/ProvisioningApiMiddlewareTest.php | 2 +- apps/provisioning_api/tests/TestCase.php | 2 +- 16 files changed, 66 insertions(+), 26 deletions(-) (limited to 'apps/provisioning_api') diff --git a/apps/provisioning_api/appinfo/routes.php b/apps/provisioning_api/appinfo/routes.php index ef13159af5b..fd1579ca843 100644 --- a/apps/provisioning_api/appinfo/routes.php +++ b/apps/provisioning_api/appinfo/routes.php @@ -3,7 +3,9 @@ * @copyright Copyright (c) 2016, ownCloud, Inc. * * @author Bjoern Schiessle + * @author Christoph Wurst * @author Joas Schilling + * @author John Molakvoæ (skjnldsv) * @author Morris Jobke * @author Roeland Jago Douma * @author Tom Needham @@ -20,7 +22,7 @@ * 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 + * along with this program. If not, see * */ diff --git a/apps/provisioning_api/lib/AppInfo/Application.php b/apps/provisioning_api/lib/AppInfo/Application.php index 317be717fce..63ea0b5e76e 100644 --- a/apps/provisioning_api/lib/AppInfo/Application.php +++ b/apps/provisioning_api/lib/AppInfo/Application.php @@ -5,6 +5,7 @@ * @author Lukas Reschke * @author Morris Jobke * @author Roeland Jago Douma + * @author zulan * * @license GNU AGPL version 3 or any later version * @@ -19,7 +20,7 @@ * 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/provisioning_api/lib/Controller/AUserData.php b/apps/provisioning_api/lib/Controller/AUserData.php index 8804dc21031..2bc81e9dcf9 100644 --- a/apps/provisioning_api/lib/Controller/AUserData.php +++ b/apps/provisioning_api/lib/Controller/AUserData.php @@ -1,21 +1,30 @@ * - * @license AGPL-3.0 + * @author Arthur Schiwon + * @author Georg Ehrke + * @author Joas Schilling + * @author John Molakvoæ (skjnldsv) + * @author Roeland Jago Douma + * + * @license GNU AGPL version 3 or any later version * - * 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 free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as + * published by the Free Software Foundation, either version 3 of the + * License, or (at your option) any later version. * * 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, version 3, - * along with this program. If not, see + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . * */ diff --git a/apps/provisioning_api/lib/Controller/AppConfigController.php b/apps/provisioning_api/lib/Controller/AppConfigController.php index eda46ee8e2c..fa5a695bd0f 100644 --- a/apps/provisioning_api/lib/Controller/AppConfigController.php +++ b/apps/provisioning_api/lib/Controller/AppConfigController.php @@ -1,9 +1,12 @@ * * @author Joas Schilling + * @author Roeland Jago Douma * * @license GNU AGPL version 3 or any later version * @@ -18,7 +21,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/provisioning_api/lib/Controller/AppsController.php b/apps/provisioning_api/lib/Controller/AppsController.php index 63d08ebf57d..d5a8de91772 100644 --- a/apps/provisioning_api/lib/Controller/AppsController.php +++ b/apps/provisioning_api/lib/Controller/AppsController.php @@ -1,5 +1,7 @@ + * along with this program. If not, see * */ diff --git a/apps/provisioning_api/lib/Controller/GroupsController.php b/apps/provisioning_api/lib/Controller/GroupsController.php index b758c75ca21..6d02dcc0cd6 100644 --- a/apps/provisioning_api/lib/Controller/GroupsController.php +++ b/apps/provisioning_api/lib/Controller/GroupsController.php @@ -1,14 +1,18 @@ * @author Joas Schilling + * @author John Molakvoæ (skjnldsv) * @author Lukas Reschke * @author Morris Jobke + * @author Robin Appelman * @author Roeland Jago Douma * @author Tom Needham - * @author John Molakvoæ * * @license AGPL-3.0 * @@ -22,7 +26,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, version 3, - * along with this program. If not, see + * along with this program. If not, see * */ diff --git a/apps/provisioning_api/lib/Controller/UsersController.php b/apps/provisioning_api/lib/Controller/UsersController.php index 1e33dfea5bd..3b03f446717 100644 --- a/apps/provisioning_api/lib/Controller/UsersController.php +++ b/apps/provisioning_api/lib/Controller/UsersController.php @@ -1,19 +1,26 @@ * @author Bjoern Schiessle + * @author Christoph Wurst + * @author Daniel Calviño Sánchez + * @author Daniel Kesselberg * @author Joas Schilling + * @author John Molakvoæ (skjnldsv) + * @author Julius Härtl * @author Lukas Reschke * @author michag86 * @author Morris Jobke + * @author Robin Appelman * @author Roeland Jago Douma + * @author Thomas Citharel * @author Thomas Müller * @author Tom Needham - * @author John Molakvoæ - * @author Thomas Citharel * * @license AGPL-3.0 * @@ -27,7 +34,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, version 3, - * along with this program. If not, see + * along with this program. If not, see * */ diff --git a/apps/provisioning_api/lib/FederatedFileSharingFactory.php b/apps/provisioning_api/lib/FederatedFileSharingFactory.php index 0c7bb7068dd..63a0f0ff200 100644 --- a/apps/provisioning_api/lib/FederatedFileSharingFactory.php +++ b/apps/provisioning_api/lib/FederatedFileSharingFactory.php @@ -2,6 +2,7 @@ /** * @copyright 2018, Roeland Jago Douma * + * @author Christoph Wurst * @author Roeland Jago Douma * * @license GNU AGPL version 3 or any later version @@ -17,7 +18,7 @@ * 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 . * */ declare(strict_types=1); diff --git a/apps/provisioning_api/lib/Middleware/Exceptions/NotSubAdminException.php b/apps/provisioning_api/lib/Middleware/Exceptions/NotSubAdminException.php index f9f063b8834..04e9fa33578 100644 --- a/apps/provisioning_api/lib/Middleware/Exceptions/NotSubAdminException.php +++ b/apps/provisioning_api/lib/Middleware/Exceptions/NotSubAdminException.php @@ -18,7 +18,7 @@ * 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/provisioning_api/lib/Middleware/ProvisioningApiMiddleware.php b/apps/provisioning_api/lib/Middleware/ProvisioningApiMiddleware.php index 780f541184f..e5a93fc402a 100644 --- a/apps/provisioning_api/lib/Middleware/ProvisioningApiMiddleware.php +++ b/apps/provisioning_api/lib/Middleware/ProvisioningApiMiddleware.php @@ -1,5 +1,7 @@ . + * along with this program. If not, see . * */ diff --git a/apps/provisioning_api/tests/Controller/AppConfigControllerTest.php b/apps/provisioning_api/tests/Controller/AppConfigControllerTest.php index ecc7393ad8f..79935b35df5 100644 --- a/apps/provisioning_api/tests/Controller/AppConfigControllerTest.php +++ b/apps/provisioning_api/tests/Controller/AppConfigControllerTest.php @@ -3,6 +3,7 @@ * @copyright Copyright (c) 2016 Joas Schilling * * @author Joas Schilling + * @author Roeland Jago Douma * * @license GNU AGPL version 3 or any later version * @@ -17,7 +18,7 @@ * 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/provisioning_api/tests/Controller/AppsControllerTest.php b/apps/provisioning_api/tests/Controller/AppsControllerTest.php index 5cd440e4202..7c9de539c7c 100644 --- a/apps/provisioning_api/tests/Controller/AppsControllerTest.php +++ b/apps/provisioning_api/tests/Controller/AppsControllerTest.php @@ -21,7 +21,7 @@ * 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 + * along with this program. If not, see * */ diff --git a/apps/provisioning_api/tests/Controller/GroupsControllerTest.php b/apps/provisioning_api/tests/Controller/GroupsControllerTest.php index 6204907f76e..742f621c6a4 100644 --- a/apps/provisioning_api/tests/Controller/GroupsControllerTest.php +++ b/apps/provisioning_api/tests/Controller/GroupsControllerTest.php @@ -2,7 +2,9 @@ /** * @copyright Copyright (c) 2016, ownCloud, Inc. * + * @author Arthur Schiwon * @author Joas Schilling + * @author John Molakvoæ (skjnldsv) * @author Lukas Reschke * @author Morris Jobke * @author Roeland Jago Douma @@ -20,7 +22,7 @@ * 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 + * along with this program. If not, see * */ diff --git a/apps/provisioning_api/tests/Controller/UsersControllerTest.php b/apps/provisioning_api/tests/Controller/UsersControllerTest.php index c4bfff6d69b..ac2da91005e 100644 --- a/apps/provisioning_api/tests/Controller/UsersControllerTest.php +++ b/apps/provisioning_api/tests/Controller/UsersControllerTest.php @@ -4,14 +4,20 @@ * * @author Arthur Schiwon * @author Bjoern Schiessle - * @author Christoph Wurst + * @author Christoph Wurst + * @author Daniel Calviño Sánchez + * @author Georg Ehrke * @author Joas Schilling + * @author John Molakvoæ (skjnldsv) + * @author Julius Härtl * @author Lukas Reschke * @author michag86 * @author Morris Jobke * @author Roeland Jago Douma + * @author Thomas Citharel * @author Thomas Müller * @author Tom Needham + * @author zulan * * @license AGPL-3.0 * @@ -25,7 +31,7 @@ * 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 + * along with this program. If not, see * */ diff --git a/apps/provisioning_api/tests/Middleware/ProvisioningApiMiddlewareTest.php b/apps/provisioning_api/tests/Middleware/ProvisioningApiMiddlewareTest.php index ef3b20fa76c..368fa40356f 100644 --- a/apps/provisioning_api/tests/Middleware/ProvisioningApiMiddlewareTest.php +++ b/apps/provisioning_api/tests/Middleware/ProvisioningApiMiddlewareTest.php @@ -17,7 +17,7 @@ * 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/provisioning_api/tests/TestCase.php b/apps/provisioning_api/tests/TestCase.php index 72b7b9527ea..12580abd757 100644 --- a/apps/provisioning_api/tests/TestCase.php +++ b/apps/provisioning_api/tests/TestCase.php @@ -19,7 +19,7 @@ * 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 + * along with this program. If not, see * */ -- cgit v1.2.3