diff options
author | John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> | 2021-03-31 12:15:40 +0200 |
---|---|---|
committer | John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> | 2021-03-31 12:17:18 +0200 |
commit | 3e624dc39966f54c6d418eee2e8141fc5c21f751 (patch) | |
tree | aa5f0fa8498c2ad7f281295296f341aac7cc04ae /core/src/files | |
parent | 91510d95f15b5b84482b5700b04d229db28fbdff (diff) | |
download | nextcloud-server-3e624dc39966f54c6d418eee2e8141fc5c21f751.tar.gz nextcloud-server-3e624dc39966f54c6d418eee2e8141fc5c21f751.zip |
Bump js licenses
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
Diffstat (limited to 'core/src/files')
-rw-r--r-- | core/src/files/client.js | 32 | ||||
-rw-r--r-- | core/src/files/fileinfo.js | 25 | ||||
-rw-r--r-- | core/src/files/iedavclient.js | 23 |
3 files changed, 64 insertions, 16 deletions
diff --git a/core/src/files/client.js b/core/src/files/client.js index 4e606f4f5ac..679457e38cf 100644 --- a/core/src/files/client.js +++ b/core/src/files/client.js @@ -1,14 +1,36 @@ -/* eslint-disable */ -/* +/** * Copyright (c) 2015 * - * This file is licensed under the Affero General Public License version 3 - * or later. + * @author Bjoern Schiessle <bjoern@schiessle.org> + * @author John Molakvoæ <skjnldsv@protonmail.com> + * @author Julius Härtl <jus@bitgrid.net> + * @author Lukas Reschke <lukas@statuscode.ch> + * @author Michael Jobst <mjobst+github@tecratech.de> + * @author Robin Appelman <robin@icewind.nl> + * @author Roeland Jago Douma <roeland@famdouma.nl> + * @author Thomas Citharel <nextcloud@tcit.fr> + * @author Tomasz Grobelny <tomasz@grobelny.net> + * @author Vincent Petry <vincent@nextcloud.com> + * @author Vinicius Cubas Brand <vinicius@eita.org.br> + * + * @license GNU AGPL version 3 or any later version + * + * 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. * - * See the COPYING-README file. + * 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 + * along with this program. If not, see <http://www.gnu.org/licenses/>. * */ +/* eslint-disable */ import escapeHTML from 'escape-html' /* global dav */ diff --git a/core/src/files/fileinfo.js b/core/src/files/fileinfo.js index 19baad5a2d7..936c3c0331b 100644 --- a/core/src/files/fileinfo.js +++ b/core/src/files/fileinfo.js @@ -1,14 +1,29 @@ -/* eslint-disable */ -/* +/** * Copyright (c) 2015 * - * This file is licensed under the Affero General Public License version 3 - * or later. + * @author Julius Härtl <jus@bitgrid.net> + * @author Robin Appelman <robin@icewind.nl> + * @author Roeland Jago Douma <roeland@famdouma.nl> + * @author Vincent Petry <vincent@nextcloud.com> + * + * @license GNU AGPL version 3 or any later version + * + * 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. * - * See the COPYING-README file. + * 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 + * along with this program. If not, see <http://www.gnu.org/licenses/>. * */ +/* eslint-disable */ (function(OC) { /** diff --git a/core/src/files/iedavclient.js b/core/src/files/iedavclient.js index 447d05c0497..470e34009ab 100644 --- a/core/src/files/iedavclient.js +++ b/core/src/files/iedavclient.js @@ -1,15 +1,26 @@ -/* eslint-disable */ -/* +/** * Copyright (c) 2015 * - * This file is licensed under the Affero General Public License version 3 - * or later. + * @author Roeland Jago Douma <roeland@famdouma.nl> + * + * @license GNU AGPL version 3 or any later version + * + * 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. * - * See the COPYING-README file. + * 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 + * along with this program. If not, see <http://www.gnu.org/licenses/>. * */ -/* global dav */ +/* eslint-disable */ (function(dav) { /** |