From 0dcb8969209d9195c29e2699fec829e06a17123e Mon Sep 17 00:00:00 2001 From: Samuel Mannehed Date: Mon, 30 Sep 2019 15:35:33 +0200 Subject: [PATCH] Update copyright to 2019 for modified files --- kasmweb/LICENSE.txt | 2 +- kasmweb/app/error-handler.js | 8 ++++++++ kasmweb/app/styles/base.css | 2 +- kasmweb/app/ui.js | 2 +- kasmweb/app/webutil.js | 2 +- kasmweb/core/decoders/copyrect.js | 4 +--- kasmweb/core/decoders/hextile.js | 4 +--- kasmweb/core/decoders/raw.js | 4 +--- kasmweb/core/decoders/rre.js | 4 +--- kasmweb/core/decoders/tight.js | 4 +--- kasmweb/core/decoders/tightpng.js | 4 +--- kasmweb/core/display.js | 2 +- kasmweb/core/encodings.js | 2 +- kasmweb/core/input/keyboard.js | 2 +- kasmweb/core/input/mouse.js | 2 +- kasmweb/core/rfb.js | 2 +- kasmweb/core/util/browser.js | 2 +- kasmweb/core/util/cursor.js | 2 +- kasmweb/core/util/eventtarget.js | 2 +- kasmweb/core/util/logging.js | 2 +- kasmweb/core/websock.js | 2 +- kasmweb/vnc.html | 2 +- kasmweb/vnc_lite.html | 2 +- 23 files changed, 30 insertions(+), 34 deletions(-) diff --git a/kasmweb/LICENSE.txt b/kasmweb/LICENSE.txt index 20f3eb0..ed6b657 100644 --- a/kasmweb/LICENSE.txt +++ b/kasmweb/LICENSE.txt @@ -1,4 +1,4 @@ -noVNC is Copyright (C) 2018 The noVNC Authors +noVNC is Copyright (C) 2019 The noVNC Authors (./AUTHORS) The noVNC core library files are licensed under the MPL 2.0 (Mozilla diff --git a/kasmweb/app/error-handler.js b/kasmweb/app/error-handler.js index 6c90c5a..37134a9 100644 --- a/kasmweb/app/error-handler.js +++ b/kasmweb/app/error-handler.js @@ -1,3 +1,11 @@ +/* + * noVNC: HTML5 VNC client + * Copyright (C) 2019 The noVNC Authors + * Licensed under MPL 2.0 (see LICENSE.txt) + * + * See README.md for usage and integration instructions. + */ + // NB: this should *not* be included as a module until we have // native support in the browsers, so that our error handler // can catch script-loading errors. diff --git a/kasmweb/app/styles/base.css b/kasmweb/app/styles/base.css index b3ed042..b6499d2 100644 --- a/kasmweb/app/styles/base.css +++ b/kasmweb/app/styles/base.css @@ -1,6 +1,6 @@ /* * noVNC base CSS - * Copyright (C) 2018 The noVNC Authors + * Copyright (C) 2019 The noVNC Authors * noVNC is licensed under the MPL 2.0 (see LICENSE.txt) * This file is licensed under the 2-Clause BSD license (see LICENSE.txt). */ diff --git a/kasmweb/app/ui.js b/kasmweb/app/ui.js index 443de1e..6383662 100644 --- a/kasmweb/app/ui.js +++ b/kasmweb/app/ui.js @@ -1,6 +1,6 @@ /* * noVNC: HTML5 VNC client - * Copyright (C) 2018 The noVNC Authors + * Copyright (C) 2019 The noVNC Authors * Licensed under MPL 2.0 (see LICENSE.txt) * * See README.md for usage and integration instructions. diff --git a/kasmweb/app/webutil.js b/kasmweb/app/webutil.js index 72a1355..27d8769 100644 --- a/kasmweb/app/webutil.js +++ b/kasmweb/app/webutil.js @@ -1,6 +1,6 @@ /* * noVNC: HTML5 VNC client - * Copyright (C) 2018 The noVNC Authors + * Copyright (C) 2019 The noVNC Authors * Licensed under MPL 2.0 (see LICENSE.txt) * * See README.md for usage and integration instructions. diff --git a/kasmweb/core/decoders/copyrect.js b/kasmweb/core/decoders/copyrect.js index a78ded7..0e0536a 100644 --- a/kasmweb/core/decoders/copyrect.js +++ b/kasmweb/core/decoders/copyrect.js @@ -1,8 +1,6 @@ /* * noVNC: HTML5 VNC client - * Copyright (C) 2012 Joel Martin - * Copyright (C) 2018 Samuel Mannehed for Cendio AB - * Copyright (C) 2018 Pierre Ossman for Cendio AB + * Copyright (C) 2019 The noVNC Authors * Licensed under MPL 2.0 (see LICENSE.txt) * * See README.md for usage and integration instructions. diff --git a/kasmweb/core/decoders/hextile.js b/kasmweb/core/decoders/hextile.js index aa76d2f..b762060 100644 --- a/kasmweb/core/decoders/hextile.js +++ b/kasmweb/core/decoders/hextile.js @@ -1,8 +1,6 @@ /* * noVNC: HTML5 VNC client - * Copyright (C) 2012 Joel Martin - * Copyright (C) 2018 Samuel Mannehed for Cendio AB - * Copyright (C) 2018 Pierre Ossman for Cendio AB + * Copyright (C) 2019 The noVNC Authors * Licensed under MPL 2.0 (see LICENSE.txt) * * See README.md for usage and integration instructions. diff --git a/kasmweb/core/decoders/raw.js b/kasmweb/core/decoders/raw.js index f676e0d..0e806d3 100644 --- a/kasmweb/core/decoders/raw.js +++ b/kasmweb/core/decoders/raw.js @@ -1,8 +1,6 @@ /* * noVNC: HTML5 VNC client - * Copyright (C) 2012 Joel Martin - * Copyright (C) 2018 Samuel Mannehed for Cendio AB - * Copyright (C) 2018 Pierre Ossman for Cendio AB + * Copyright (C) 2019 The noVNC Authors * Licensed under MPL 2.0 (see LICENSE.txt) * * See README.md for usage and integration instructions. diff --git a/kasmweb/core/decoders/rre.js b/kasmweb/core/decoders/rre.js index 57414a0..6219369 100644 --- a/kasmweb/core/decoders/rre.js +++ b/kasmweb/core/decoders/rre.js @@ -1,8 +1,6 @@ /* * noVNC: HTML5 VNC client - * Copyright (C) 2012 Joel Martin - * Copyright (C) 2018 Samuel Mannehed for Cendio AB - * Copyright (C) 2018 Pierre Ossman for Cendio AB + * Copyright (C) 2019 The noVNC Authors * Licensed under MPL 2.0 (see LICENSE.txt) * * See README.md for usage and integration instructions. diff --git a/kasmweb/core/decoders/tight.js b/kasmweb/core/decoders/tight.js index 24a24cd..5eb61d3 100644 --- a/kasmweb/core/decoders/tight.js +++ b/kasmweb/core/decoders/tight.js @@ -1,9 +1,7 @@ /* * noVNC: HTML5 VNC client - * Copyright (C) 2012 Joel Martin + * Copyright (C) 2019 The noVNC Authors * (c) 2012 Michael Tinglof, Joe Balaz, Les Piech (Mercuri.ca) - * Copyright (C) 2018 Samuel Mannehed for Cendio AB - * Copyright (C) 2018 Pierre Ossman for Cendio AB * Licensed under MPL 2.0 (see LICENSE.txt) * * See README.md for usage and integration instructions. diff --git a/kasmweb/core/decoders/tightpng.js b/kasmweb/core/decoders/tightpng.js index 163da98..82f492d 100644 --- a/kasmweb/core/decoders/tightpng.js +++ b/kasmweb/core/decoders/tightpng.js @@ -1,8 +1,6 @@ /* * noVNC: HTML5 VNC client - * Copyright (C) 2012 Joel Martin - * Copyright (C) 2018 Samuel Mannehed for Cendio AB - * Copyright (C) 2018 Pierre Ossman for Cendio AB + * Copyright (C) 2019 The noVNC Authors * Licensed under MPL 2.0 (see LICENSE.txt) * * See README.md for usage and integration instructions. diff --git a/kasmweb/core/display.js b/kasmweb/core/display.js index 89cdd54..8dd2f21 100644 --- a/kasmweb/core/display.js +++ b/kasmweb/core/display.js @@ -1,6 +1,6 @@ /* * noVNC: HTML5 VNC client - * Copyright (C) 2018 The noVNC Authors + * Copyright (C) 2019 The noVNC Authors * Licensed under MPL 2.0 (see LICENSE.txt) * * See README.md for usage and integration instructions. diff --git a/kasmweb/core/encodings.js b/kasmweb/core/encodings.js index dab2b22..79ffbff 100644 --- a/kasmweb/core/encodings.js +++ b/kasmweb/core/encodings.js @@ -1,6 +1,6 @@ /* * noVNC: HTML5 VNC client - * Copyright (C) 2018 The noVNC Authors + * Copyright (C) 2019 The noVNC Authors * Licensed under MPL 2.0 (see LICENSE.txt) * * See README.md for usage and integration instructions. diff --git a/kasmweb/core/input/keyboard.js b/kasmweb/core/input/keyboard.js index dcab0d0..0f2a9de 100644 --- a/kasmweb/core/input/keyboard.js +++ b/kasmweb/core/input/keyboard.js @@ -1,6 +1,6 @@ /* * noVNC: HTML5 VNC client - * Copyright (C) 2018 The noVNC Authors + * Copyright (C) 2019 The noVNC Authors * Licensed under MPL 2.0 or any later version (see LICENSE.txt) */ diff --git a/kasmweb/core/input/mouse.js b/kasmweb/core/input/mouse.js index 58a2982..b00a2e0 100644 --- a/kasmweb/core/input/mouse.js +++ b/kasmweb/core/input/mouse.js @@ -1,6 +1,6 @@ /* * noVNC: HTML5 VNC client - * Copyright (C) 2018 The noVNC Authors + * Copyright (C) 2019 The noVNC Authors * Licensed under MPL 2.0 or any later version (see LICENSE.txt) */ diff --git a/kasmweb/core/rfb.js b/kasmweb/core/rfb.js index 2f04152..07dd89a 100644 --- a/kasmweb/core/rfb.js +++ b/kasmweb/core/rfb.js @@ -1,6 +1,6 @@ /* * noVNC: HTML5 VNC client - * Copyright (C) 2018 The noVNC Authors + * Copyright (C) 2019 The noVNC Authors * Licensed under MPL 2.0 (see LICENSE.txt) * * See README.md for usage and integration instructions. diff --git a/kasmweb/core/util/browser.js b/kasmweb/core/util/browser.js index dcbf2b4..4b371e3 100644 --- a/kasmweb/core/util/browser.js +++ b/kasmweb/core/util/browser.js @@ -1,6 +1,6 @@ /* * noVNC: HTML5 VNC client - * Copyright (C) 2018 The noVNC Authors + * Copyright (C) 2019 The noVNC Authors * Licensed under MPL 2.0 (see LICENSE.txt) * * See README.md for usage and integration instructions. diff --git a/kasmweb/core/util/cursor.js b/kasmweb/core/util/cursor.js index 0d0b754..63de741 100644 --- a/kasmweb/core/util/cursor.js +++ b/kasmweb/core/util/cursor.js @@ -1,6 +1,6 @@ /* * noVNC: HTML5 VNC client - * Copyright (C) 2018 The noVNC Authors + * Copyright (C) 2019 The noVNC Authors * Licensed under MPL 2.0 or any later version (see LICENSE.txt) */ diff --git a/kasmweb/core/util/eventtarget.js b/kasmweb/core/util/eventtarget.js index f54ca9b..a21aa54 100644 --- a/kasmweb/core/util/eventtarget.js +++ b/kasmweb/core/util/eventtarget.js @@ -1,6 +1,6 @@ /* * noVNC: HTML5 VNC client - * Copyright (C) 2018 The noVNC Authors + * Copyright (C) 2019 The noVNC Authors * Licensed under MPL 2.0 (see LICENSE.txt) * * See README.md for usage and integration instructions. diff --git a/kasmweb/core/util/logging.js b/kasmweb/core/util/logging.js index 4c8943d..8978a07 100644 --- a/kasmweb/core/util/logging.js +++ b/kasmweb/core/util/logging.js @@ -1,6 +1,6 @@ /* * noVNC: HTML5 VNC client - * Copyright (C) 2018 The noVNC Authors + * Copyright (C) 2019 The noVNC Authors * Licensed under MPL 2.0 (see LICENSE.txt) * * See README.md for usage and integration instructions. diff --git a/kasmweb/core/websock.js b/kasmweb/core/websock.js index e630c5f..8fef0b2 100644 --- a/kasmweb/core/websock.js +++ b/kasmweb/core/websock.js @@ -1,6 +1,6 @@ /* * Websock: high-performance binary WebSockets - * Copyright (C) 2018 The noVNC Authors + * Copyright (C) 2019 The noVNC Authors * Licensed under MPL 2.0 (see LICENSE.txt) * * Websock is similar to the standard WebSocket object but with extra diff --git a/kasmweb/vnc.html b/kasmweb/vnc.html index 761913d..601e65d 100644 --- a/kasmweb/vnc.html +++ b/kasmweb/vnc.html @@ -4,7 +4,7 @@