summaryrefslogtreecommitdiff
path: root/core
diff options
context:
space:
mode:
Diffstat (limited to 'core')
-rw-r--r--core/display.js3
-rw-r--r--core/encodings.js2
-rw-r--r--core/input/domkeytable.js2
-rw-r--r--core/input/fixedkeys.js2
-rw-r--r--core/input/keyboard.js3
-rw-r--r--core/input/mouse.js3
-rw-r--r--core/input/vkeys.js2
-rw-r--r--core/rfb.js4
-rw-r--r--core/util/browser.js3
-rw-r--r--core/util/cursor.js2
-rw-r--r--core/util/events.js2
-rw-r--r--core/util/eventtarget.js2
-rw-r--r--core/util/logging.js2
-rw-r--r--core/util/polyfill.js2
-rw-r--r--core/util/strings.js2
-rw-r--r--core/websock.js2
16 files changed, 16 insertions, 22 deletions
diff --git a/core/display.js b/core/display.js
index 54c2c36..59ddb34 100644
--- a/core/display.js
+++ b/core/display.js
@@ -1,7 +1,6 @@
/*
* noVNC: HTML5 VNC client
- * Copyright (C) 2012 Joel Martin
- * Copyright (C) 2015 Samuel Mannehed for Cendio AB
+ * Copyright (C) 2018 The noVNC Authors
* Licensed under MPL 2.0 (see LICENSE.txt)
*
* See README.md for usage and integration instructions.
diff --git a/core/encodings.js b/core/encodings.js
index 5a70e66..9fd38d5 100644
--- a/core/encodings.js
+++ b/core/encodings.js
@@ -1,6 +1,6 @@
/*
* noVNC: HTML5 VNC client
- * Copyright (C) 2017 Pierre Ossman for Cendio AB
+ * Copyright (C) 2018 The noVNC Authors
* Licensed under MPL 2.0 (see LICENSE.txt)
*
* See README.md for usage and integration instructions.
diff --git a/core/input/domkeytable.js b/core/input/domkeytable.js
index fdac483..d2109f3 100644
--- a/core/input/domkeytable.js
+++ b/core/input/domkeytable.js
@@ -1,6 +1,6 @@
/*
* noVNC: HTML5 VNC client
- * Copyright (C) 2017 Pierre Ossman for Cendio AB
+ * Copyright (C) 2018 The noVNC Authors
* Licensed under MPL 2.0 or any later version (see LICENSE.txt)
*/
diff --git a/core/input/fixedkeys.js b/core/input/fixedkeys.js
index daf088e..4d09f2f 100644
--- a/core/input/fixedkeys.js
+++ b/core/input/fixedkeys.js
@@ -1,6 +1,6 @@
/*
* noVNC: HTML5 VNC client
- * Copyright (C) 2017 Pierre Ossman for Cendio AB
+ * Copyright (C) 2018 The noVNC Authors
* Licensed under MPL 2.0 or any later version (see LICENSE.txt)
*/
diff --git a/core/input/keyboard.js b/core/input/keyboard.js
index 55ce917..9dbc8d6 100644
--- a/core/input/keyboard.js
+++ b/core/input/keyboard.js
@@ -1,7 +1,6 @@
/*
* noVNC: HTML5 VNC client
- * Copyright (C) 2012 Joel Martin
- * Copyright (C) 2013 Samuel Mannehed for Cendio AB
+ * Copyright (C) 2018 The noVNC Authors
* Licensed under MPL 2.0 or any later version (see LICENSE.txt)
*/
diff --git a/core/input/mouse.js b/core/input/mouse.js
index 38112fd..c78f2ab 100644
--- a/core/input/mouse.js
+++ b/core/input/mouse.js
@@ -1,7 +1,6 @@
/*
* noVNC: HTML5 VNC client
- * Copyright (C) 2012 Joel Martin
- * Copyright (C) 2013 Samuel Mannehed for Cendio AB
+ * Copyright (C) 2018 The noVNC Authors
* Licensed under MPL 2.0 or any later version (see LICENSE.txt)
*/
diff --git a/core/input/vkeys.js b/core/input/vkeys.js
index 66bf32f..f84109b 100644
--- a/core/input/vkeys.js
+++ b/core/input/vkeys.js
@@ -1,6 +1,6 @@
/*
* noVNC: HTML5 VNC client
- * Copyright (C) 2017 Pierre Ossman for Cendio AB
+ * Copyright (C) 2018 The noVNC Authors
* Licensed under MPL 2.0 or any later version (see LICENSE.txt)
*/
diff --git a/core/rfb.js b/core/rfb.js
index d1fcd2b..ffdd9c0 100644
--- a/core/rfb.js
+++ b/core/rfb.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) 2018 The noVNC Authors
* Licensed under MPL 2.0 (see LICENSE.txt)
*
* See README.md for usage and integration instructions.
diff --git a/core/util/browser.js b/core/util/browser.js
index 965ba3c..32e101e 100644
--- a/core/util/browser.js
+++ b/core/util/browser.js
@@ -1,7 +1,6 @@
/*
* noVNC: HTML5 VNC client
- * Copyright (C) 2012 Joel Martin
- * Copyright (C) 2018 Samuel Mannehed for Cendio AB
+ * Copyright (C) 2018 The noVNC Authors
* Licensed under MPL 2.0 (see LICENSE.txt)
*
* See README.md for usage and integration instructions.
diff --git a/core/util/cursor.js b/core/util/cursor.js
index 95301b2..b032ab6 100644
--- a/core/util/cursor.js
+++ b/core/util/cursor.js
@@ -1,6 +1,6 @@
/*
* noVNC: HTML5 VNC client
- * Copyright 2018 Pierre Ossman for noVNC
+ * Copyright (C) 2018 The noVNC Authors
* Licensed under MPL 2.0 or any later version (see LICENSE.txt)
*/
diff --git a/core/util/events.js b/core/util/events.js
index 4669aa4..f122279 100644
--- a/core/util/events.js
+++ b/core/util/events.js
@@ -1,6 +1,6 @@
/*
* noVNC: HTML5 VNC client
- * Copyright (C) 2012 Joel Martin
+ * Copyright (C) 2018 The noVNC Authors
* Licensed under MPL 2.0 (see LICENSE.txt)
*
* See README.md for usage and integration instructions.
diff --git a/core/util/eventtarget.js b/core/util/eventtarget.js
index 3e927f0..c541645 100644
--- a/core/util/eventtarget.js
+++ b/core/util/eventtarget.js
@@ -1,6 +1,6 @@
/*
* noVNC: HTML5 VNC client
- * Copyright 2017 Pierre Ossman for Cendio AB
+ * Copyright (C) 2018 The noVNC Authors
* Licensed under MPL 2.0 (see LICENSE.txt)
*
* See README.md for usage and integration instructions.
diff --git a/core/util/logging.js b/core/util/logging.js
index fb2d417..036a7dd 100644
--- a/core/util/logging.js
+++ b/core/util/logging.js
@@ -1,6 +1,6 @@
/*
* noVNC: HTML5 VNC client
- * Copyright (C) 2012 Joel Martin
+ * Copyright (C) 2018 The noVNC Authors
* Licensed under MPL 2.0 (see LICENSE.txt)
*
* See README.md for usage and integration instructions.
diff --git a/core/util/polyfill.js b/core/util/polyfill.js
index 3e9cbaa..648ceeb 100644
--- a/core/util/polyfill.js
+++ b/core/util/polyfill.js
@@ -1,6 +1,6 @@
/*
* noVNC: HTML5 VNC client
- * Copyright 2017 Pierre Ossman for noVNC
+ * Copyright (C) 2018 The noVNC Authors
* Licensed under MPL 2.0 or any later version (see LICENSE.txt)
*/
diff --git a/core/util/strings.js b/core/util/strings.js
index 1af6c46..61f4f23 100644
--- a/core/util/strings.js
+++ b/core/util/strings.js
@@ -1,6 +1,6 @@
/*
* noVNC: HTML5 VNC client
- * Copyright (C) 2012 Joel Martin
+ * Copyright (C) 2018 The noVNC Authors
* Licensed under MPL 2.0 (see LICENSE.txt)
*
* See README.md for usage and integration instructions.
diff --git a/core/websock.js b/core/websock.js
index 9f09230..ab63a3a 100644
--- a/core/websock.js
+++ b/core/websock.js
@@ -1,6 +1,6 @@
/*
* Websock: high-performance binary WebSockets
- * Copyright (C) 2012 Joel Martin
+ * Copyright (C) 2018 The noVNC Authors
* Licensed under MPL 2.0 (see LICENSE.txt)
*
* Websock is similar to the standard WebSocket object but with extra