From c50c80917fb144a44e54494d42f9609db480e98b Mon Sep 17 00:00:00 2001 From: Kamil Piechaczek Date: Mon, 15 Apr 2019 12:22:53 +0200 Subject: [PATCH] Internal: Updated the license header. See ckeditor/ckeditor5#1557. [skip ci] --- .eslintrc.js | 2 +- src/clipboard.js | 2 +- src/clipboardobserver.js | 2 +- src/datatransfer.js | 2 +- src/utils/normalizeclipboarddata.js | 2 +- src/utils/plaintexttohtml.js | 2 +- src/utils/viewtoplaintext.js | 2 +- tests/clipboard.js | 2 +- tests/clipboardobserver.js | 2 +- tests/datatransfer.js | 2 +- tests/manual/copycut.js | 2 +- tests/manual/dropping.js | 2 +- tests/manual/pasting.js | 2 +- tests/pasting-integration.js | 2 +- tests/utils/normalizeclipboarddata.js | 2 +- tests/utils/plaintexttohtml.js | 2 +- tests/utils/viewtoplaintext.js | 2 +- 17 files changed, 17 insertions(+), 17 deletions(-) diff --git a/.eslintrc.js b/.eslintrc.js index e82e66c..4a0a88f 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -1,6 +1,6 @@ /** * @license Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved. - * For licensing, see LICENSE.md. + * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license */ /* eslint-env node */ diff --git a/src/clipboard.js b/src/clipboard.js index 872d197..d194649 100644 --- a/src/clipboard.js +++ b/src/clipboard.js @@ -1,6 +1,6 @@ /** * @license Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved. - * For licensing, see LICENSE.md. + * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license */ /** diff --git a/src/clipboardobserver.js b/src/clipboardobserver.js index 8918ce9..17a805a 100644 --- a/src/clipboardobserver.js +++ b/src/clipboardobserver.js @@ -1,6 +1,6 @@ /** * @license Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved. - * For licensing, see LICENSE.md. + * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license */ /** diff --git a/src/datatransfer.js b/src/datatransfer.js index 17234db..930fca3 100644 --- a/src/datatransfer.js +++ b/src/datatransfer.js @@ -1,6 +1,6 @@ /** * @license Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved. - * For licensing, see LICENSE.md. + * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license */ /** diff --git a/src/utils/normalizeclipboarddata.js b/src/utils/normalizeclipboarddata.js index ac69662..95b4e1d 100644 --- a/src/utils/normalizeclipboarddata.js +++ b/src/utils/normalizeclipboarddata.js @@ -1,6 +1,6 @@ /** * @license Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved. - * For licensing, see LICENSE.md. + * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license */ /** diff --git a/src/utils/plaintexttohtml.js b/src/utils/plaintexttohtml.js index c86724d..af7f95f 100644 --- a/src/utils/plaintexttohtml.js +++ b/src/utils/plaintexttohtml.js @@ -1,6 +1,6 @@ /** * @license Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved. - * For licensing, see LICENSE.md. + * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license */ /** diff --git a/src/utils/viewtoplaintext.js b/src/utils/viewtoplaintext.js index 1b24fb2..4efd92d 100644 --- a/src/utils/viewtoplaintext.js +++ b/src/utils/viewtoplaintext.js @@ -1,6 +1,6 @@ /** * @license Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved. - * For licensing, see LICENSE.md. + * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license */ /** diff --git a/tests/clipboard.js b/tests/clipboard.js index b07bc5e..7bebd6c 100644 --- a/tests/clipboard.js +++ b/tests/clipboard.js @@ -1,6 +1,6 @@ /** * @license Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved. - * For licensing, see LICENSE.md. + * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license */ import VirtualTestEditor from '@ckeditor/ckeditor5-core/tests/_utils/virtualtesteditor'; diff --git a/tests/clipboardobserver.js b/tests/clipboardobserver.js index e71b764..a55c28d 100644 --- a/tests/clipboardobserver.js +++ b/tests/clipboardobserver.js @@ -1,6 +1,6 @@ /** * @license Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved. - * For licensing, see LICENSE.md. + * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license */ /* globals document */ diff --git a/tests/datatransfer.js b/tests/datatransfer.js index eb2d385..3f7f4cb 100644 --- a/tests/datatransfer.js +++ b/tests/datatransfer.js @@ -1,6 +1,6 @@ /** * @license Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved. - * For licensing, see LICENSE.md. + * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license */ import DataTransfer from '../src/datatransfer'; diff --git a/tests/manual/copycut.js b/tests/manual/copycut.js index ff7824b..c61ba2e 100644 --- a/tests/manual/copycut.js +++ b/tests/manual/copycut.js @@ -1,6 +1,6 @@ /** * @license Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved. - * For licensing, see LICENSE.md. + * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license */ /* globals console, window, document */ diff --git a/tests/manual/dropping.js b/tests/manual/dropping.js index 58a4150..e191b36 100644 --- a/tests/manual/dropping.js +++ b/tests/manual/dropping.js @@ -1,6 +1,6 @@ /** * @license Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved. - * For licensing, see LICENSE.md. + * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license */ /* globals console, window, document */ diff --git a/tests/manual/pasting.js b/tests/manual/pasting.js index f2b3a10..e649d2d 100644 --- a/tests/manual/pasting.js +++ b/tests/manual/pasting.js @@ -1,6 +1,6 @@ /** * @license Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved. - * For licensing, see LICENSE.md. + * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license */ /* globals console, window, document */ diff --git a/tests/pasting-integration.js b/tests/pasting-integration.js index b9a9c44..7dea1cd 100644 --- a/tests/pasting-integration.js +++ b/tests/pasting-integration.js @@ -1,6 +1,6 @@ /** * @license Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved. - * For licensing, see LICENSE.md. + * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license */ /* globals document */ diff --git a/tests/utils/normalizeclipboarddata.js b/tests/utils/normalizeclipboarddata.js index e8221e3..8f351c5 100644 --- a/tests/utils/normalizeclipboarddata.js +++ b/tests/utils/normalizeclipboarddata.js @@ -1,6 +1,6 @@ /** * @license Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved. - * For licensing, see LICENSE.md. + * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license */ import normalizeClipboardData from '../../src/utils/normalizeclipboarddata'; diff --git a/tests/utils/plaintexttohtml.js b/tests/utils/plaintexttohtml.js index 5aaba95..d521658 100644 --- a/tests/utils/plaintexttohtml.js +++ b/tests/utils/plaintexttohtml.js @@ -1,6 +1,6 @@ /** * @license Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved. - * For licensing, see LICENSE.md. + * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license */ import plainTextToHtml from '../../src/utils/plaintexttohtml'; diff --git a/tests/utils/viewtoplaintext.js b/tests/utils/viewtoplaintext.js index f6e950c..03a8cf0 100644 --- a/tests/utils/viewtoplaintext.js +++ b/tests/utils/viewtoplaintext.js @@ -1,6 +1,6 @@ /** * @license Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved. - * For licensing, see LICENSE.md. + * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license */ import viewToPlainText from '../../src/utils/viewtoplaintext';