Skip to content

Commit

Permalink
chore: prepare js files for SPDX converter
Browse files Browse the repository at this point in the history
Signed-off-by: Andy Scherzinger <[email protected]>
  • Loading branch information
AndyScherzinger committed May 10, 2024
1 parent 463280c commit fc1597a
Show file tree
Hide file tree
Showing 23 changed files with 80 additions and 263 deletions.
24 changes: 4 additions & 20 deletions core/js/backgroundjobs.js
Original file line number Diff line number Diff line change
@@ -1,24 +1,8 @@
/**
* ownCloud
*
* @author Jakob Sack
* @copyright 2012 Jakob Sack [email protected]
*
* 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/>.
*
*/

* SPDX-FileCopyrightText: 2012 Jakob Sack [email protected]
* SPDX-License-Identifier: AGPL-3.0-or-later
*/

// start worker once page has loaded
window.addEventListener('DOMContentLoaded', function(){
$.get( OC.getRootPath()+'/cron.php' );
Expand Down
4 changes: 4 additions & 0 deletions core/js/login/authpicker.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
/**
* SPDX-FileCopyrightText: 2017 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
jQuery(document).ready(function() {
$('#app-token-login').click(function (e) {
e.preventDefault();
Expand Down
4 changes: 4 additions & 0 deletions core/js/login/grant.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
/**
* SPDX-FileCopyrightText: 2018 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
document.querySelector('form').addEventListener('submit', function(e) {
const wrapper = document.getElementById('submit-wrapper')
if (wrapper === null) {
Expand Down
20 changes: 3 additions & 17 deletions core/js/mimetype.js
Original file line number Diff line number Diff line change
@@ -1,21 +1,7 @@
/**
* @author Roeland Jago Douma <[email protected]>
*
* @copyright Copyright (c) 2015, 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/>
*
* SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors
* SPDX-FileCopyrightText: 2015 ownCloud, Inc.
* SPDX-License-Identifier: AGPL-3.0-only
*/

/**
Expand Down
4 changes: 4 additions & 0 deletions core/js/publicshareauth.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
/**
* SPDX-FileCopyrightText: 2018 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
function showEmailAddressPromptForm() {
// Shows email prompt
var emailInput = document.getElementById('email-input-form');
Expand Down
11 changes: 3 additions & 8 deletions core/js/select2-toggleselect.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,6 @@
/*
* Copyright (c) 2015
*
* This file is licensed under the Affero General Public License version 3
* or later.
*
* See the COPYING-README file.
*
/**
* SPDX-FileCopyrightText: 2016 ownCloud Inc.
* SPDX-License-Identifier: AGPL-3.0-or-later
*/

/* global Select2 */
Expand Down
12 changes: 4 additions & 8 deletions core/js/setupchecks.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,7 @@
/*
* Copyright (c) 2014
*
* This file is licensed under the Affero General Public License version 3
* or later.
*
* See the COPYING-README file.
*
/**
* SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors
* SPDX-FileCopyrightText: 2014-2016 ownCloud Inc.
* SPDX-License-Identifier: AGPL-3.0-or-later
*/

(function() {
Expand Down
5 changes: 4 additions & 1 deletion core/js/tests/html-domparser.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
/*
/**
* DOMParser HTML extension
* 2012-09-04
*
* By Eli Grey, http://eligrey.com
* Public domain.
* NO WARRANTY EXPRESSED OR IMPLIED. USE AT YOUR OWN RISK.
*
* SPDX-FileCopyrightText: 2012 Eli Grey, http://eligrey.com
* SPDX-License-Identifier: CC0-1.0
*/

/*! @source https://gist.github.com/1129031 */
Expand Down
23 changes: 4 additions & 19 deletions core/js/tests/specHelper.js
Original file line number Diff line number Diff line change
@@ -1,23 +1,8 @@
/**
* ownCloud
*
* @author Vincent Petry
* @copyright 2014 Vincent Petry <[email protected]>
*
* 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/>.
*
*/
* SPDX-FileCopyrightText: 2017 Nextcloud GmbH and Nextcloud contributors
* SPDX-FileCopyrightText: 2014 ownCloud Inc.
* SPDX-License-Identifier: AGPL-3.0-or-later
*/

/**
* Simulate the variables that are normally set by PHP code
Expand Down
23 changes: 4 additions & 19 deletions core/js/tests/specs/coreSpec.js
Original file line number Diff line number Diff line change
@@ -1,23 +1,8 @@
/**
* ownCloud
*
* @author Vincent Petry
* @copyright 2014 Vincent Petry <[email protected]>
*
* 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/>.
*
*/
* SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors
* SPDX-FileCopyrightText: 2014 ownCloud Inc.
* SPDX-License-Identifier: AGPL-3.0-or-later
*/

describe('Core base tests', function() {
var debounceStub
Expand Down
23 changes: 4 additions & 19 deletions core/js/tests/specs/files/clientSpec.js
Original file line number Diff line number Diff line change
@@ -1,23 +1,8 @@
/**
* ownCloud
*
* @author Vincent Petry
* @copyright 2015 Vincent Petry <[email protected]>
*
* 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/>.
*
*/
* SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors
* SPDX-FileCopyrightText: 2015 ownCloud Inc.
* SPDX-License-Identifier: AGPL-3.0-or-later
*/

/* global dav */

Expand Down
10 changes: 3 additions & 7 deletions core/js/tests/specs/jquery.avatarSpec.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,7 @@
/**
* Copyright (c) 2015 Roeland Jago Douma <[email protected]>
*
* This file is licensed under the Affero General Public License version 3
* or later.
*
* See the COPYING-README file.
*
* SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors
* SPDX-FileCopyrightText: 2015 ownCloud Inc.
* SPDX-License-Identifier: AGPL-3.0-or-later
*/

describe('jquery.avatar tests', function() {
Expand Down
9 changes: 2 additions & 7 deletions core/js/tests/specs/jquery.contactsmenuSpec.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,6 @@
/**
* Copyright (c) 2017 Georg Ehrke <[email protected]>
*
* This file is licensed under the Affero General Public License version 3
* or later.
*
* See the COPYING-README file.
*
* SPDX-FileCopyrightText: 2017 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/

describe('jquery.contactsMenu tests', function() {
Expand Down
9 changes: 2 additions & 7 deletions core/js/tests/specs/jquery.placeholderSpec.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,6 @@
/**
* Copyright (c) 2019 Serhii Shliakhov <[email protected]>
*
* This file is licensed under the Affero General Public License version 3
* or later.
*
* See the COPYING-README file.
*
* SPDX-FileCopyrightText: 2019 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/

describe('jquery.placeholder tests', function() {
Expand Down
10 changes: 3 additions & 7 deletions core/js/tests/specs/l10nSpec.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,7 @@
/**
* Copyright (c) 2014 Vincent Petry <[email protected]>
*
* This file is licensed under the Affero General Public License version 3
* or later.
*
* See the COPYING-README file.
*
* SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors
* SPDX-FileCopyrightText: 2014 ownCloud Inc.
* SPDX-License-Identifier: AGPL-3.0-or-later
*/

describe('OC.L10N tests', function() {
Expand Down
20 changes: 3 additions & 17 deletions core/js/tests/specs/mimeTypeSpec.js
Original file line number Diff line number Diff line change
@@ -1,21 +1,7 @@
/**
* @author Roeland Jago Douma <[email protected]>
*
* @copyright Copyright (c) 2015, 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/>
*
* SPDX-FileCopyrightText: 2017-2024 Nextcloud GmbH and Nextcloud contributors
* SPDX-FileCopyrightText: 2015 ownCloud Inc.
* SPDX-License-Identifier: AGPL-3.0-only
*/

describe('MimeType tests', function() {
Expand Down
23 changes: 4 additions & 19 deletions core/js/tests/specs/oc-backbone-webdavSpec.js
Original file line number Diff line number Diff line change
@@ -1,23 +1,8 @@
/**
* ownCloud
*
* @author Vincent Petry
* @copyright 2014 Vincent Petry <[email protected]>
*
* 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/>.
*
*/
* SPDX-FileCopyrightText: 2020 Nextcloud GmbH and Nextcloud contributors
* SPDX-FileCopyrightText: 2014 ownCloud Inc.
* SPDX-License-Identifier: AGPL-3.0-or-later
*/

/* global dav */

Expand Down
19 changes: 3 additions & 16 deletions core/js/tests/specs/public/commentsSpec.js
Original file line number Diff line number Diff line change
@@ -1,20 +1,7 @@
/**
* @copyright 2018 Joas Schilling <[email protected]>
*
* 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/>.
*
*/
* SPDX-FileCopyrightText: 2018 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/

describe('OCP.Comments tests', function() {
function dataProvider() {
Expand Down
10 changes: 3 additions & 7 deletions core/js/tests/specs/setupchecksSpec.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,7 @@
/**
* Copyright (c) 2015 Lukas Reschke <[email protected]>
*
* This file is licensed under the Affero General Public License version 3
* or later.
*
* See the COPYING-README file.
*
* SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors
* SPDX-FileCopyrightText: 2015 ownCloud Inc.
* SPDX-License-Identifier: AGPL-3.0-or-later
*/

describe('OC.SetupChecks tests', function() {
Expand Down
23 changes: 4 additions & 19 deletions core/js/tests/specs/systemtags/systemtagsSpec.js
Original file line number Diff line number Diff line change
@@ -1,23 +1,8 @@
/**
* ownCloud
*
* @author Joas Schilling
* @copyright 2016 Joas Schilling <[email protected]>
*
* 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/>.
*
*/
* SPDX-FileCopyrightText: 2022 Nextcloud GmbH and Nextcloud contributors
* SPDX-FileCopyrightText: 2016 ownCloud Inc.
* SPDX-License-Identifier: AGPL-3.0-or-later
*/

describe('OC.SystemTags tests', function() {
it('describes non existing tag', function() {
Expand Down
Loading

0 comments on commit fc1597a

Please sign in to comment.