License header cleanup.
This commit is contained in:
parent
2a6018df9f
commit
5f409eeeeb
|
@ -5,5 +5,6 @@ docs/LICENSE.LGPL-3) with the following exceptions:
|
||||||
|
|
||||||
incluee/des.js : Various BSD style licenses
|
incluee/des.js : Various BSD style licenses
|
||||||
|
|
||||||
include/web-socket-js/ : New BSD license
|
include/web-socket-js/ : New BSD license. Source code at
|
||||||
|
http://github.com/gimite/web-socket-js
|
||||||
|
|
||||||
|
|
|
@ -5,15 +5,13 @@
|
||||||
|
|
||||||
noVNC is a VNC client implemented using HTML5 technologies,
|
noVNC is a VNC client implemented using HTML5 technologies,
|
||||||
specifically Canvas and WebSockets (supports 'wss://' encryption).
|
specifically Canvas and WebSockets (supports 'wss://' encryption).
|
||||||
|
noVNC is licensed under the
|
||||||
|
[LGPLv3](http://www.gnu.org/licenses/lgpl.html).
|
||||||
|
|
||||||
For browsers that do not have builtin WebSockets support, the project
|
For browsers that do not have builtin WebSockets support, the project
|
||||||
includes [web-socket-js](http://github.com/gimite/web-socket-js),
|
includes [web-socket-js](http://github.com/gimite/web-socket-js),
|
||||||
a WebSockets emulator using Adobe Flash .
|
a WebSockets emulator using Adobe Flash .
|
||||||
|
|
||||||
In addition, [as3crypto](http://github.com/lyokato/as3crypto_patched)
|
|
||||||
has been added to web-socket-js to implement WebSockets SSL/TLS
|
|
||||||
encryption, i.e. the "wss://" URI scheme.
|
|
||||||
|
|
||||||
Special thanks to [Sentry Data Systems](http://www.sentryds.com) for
|
Special thanks to [Sentry Data Systems](http://www.sentryds.com) for
|
||||||
sponsoring ongoing development of this project (and for employing me).
|
sponsoring ongoing development of this project (and for employing me).
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
/*
|
/*
|
||||||
* noVNC: HTML5 VNC client
|
* noVNC: HTML5 VNC client
|
||||||
* Copyright (C) 2010 Joel Martin
|
* Copyright (C) 2010 Joel Martin
|
||||||
* Licensed under LGPL-3 (see LICENSE.LGPL-3)
|
* Licensed under LGPL-3 (see LICENSE.txt)
|
||||||
*
|
*
|
||||||
* See README.md for usage and integration instructions.
|
* See README.md for usage and integration instructions.
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
/*
|
/*
|
||||||
* noVNC: HTML5 VNC client
|
* noVNC: HTML5 VNC client
|
||||||
* Copyright (C) 2010 Joel Martin
|
* Copyright (C) 2010 Joel Martin
|
||||||
* Licensed under LGPL-3 (see LICENSE.LGPL-3)
|
* Licensed under LGPL-3 (see LICENSE.txt)
|
||||||
*
|
*
|
||||||
* See README.md for usage and integration instructions.
|
* See README.md for usage and integration instructions.
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
/*
|
/*
|
||||||
* noVNC: HTML5 VNC client
|
* noVNC: HTML5 VNC client
|
||||||
* Copyright (C) 2010 Joel Martin
|
* Copyright (C) 2010 Joel Martin
|
||||||
* Licensed under LGPL-3 (see LICENSE.LGPL-3)
|
* Licensed under LGPL-3 (see LICENSE.txt)
|
||||||
*
|
*
|
||||||
* See README.md for usage and integration instructions.
|
* See README.md for usage and integration instructions.
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
/*
|
/*
|
||||||
* noVNC: HTML5 VNC client
|
* noVNC: HTML5 VNC client
|
||||||
* Copyright (C) 2010 Joel Martin
|
* Copyright (C) 2010 Joel Martin
|
||||||
* Licensed under LGPL-3 (see LICENSE.LGPL-3)
|
* Licensed under LGPL-3 (see LICENSE.txt)
|
||||||
*
|
*
|
||||||
* See README.md for usage and integration instructions.
|
* See README.md for usage and integration instructions.
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
/*
|
/*
|
||||||
* noVNC: HTML5 VNC client
|
* noVNC: HTML5 VNC client
|
||||||
* Copyright (C) 2010 Joel Martin
|
* Copyright (C) 2010 Joel Martin
|
||||||
* Licensed under LGPL-3 (see LICENSE.LGPL-3)
|
* Licensed under LGPL-3 (see LICENSE.txt)
|
||||||
*
|
*
|
||||||
* See README.md for usage and integration instructions.
|
* See README.md for usage and integration instructions.
|
||||||
*/
|
*/
|
||||||
|
|
2
vnc.html
2
vnc.html
|
@ -1,6 +1,8 @@
|
||||||
<html>
|
<html>
|
||||||
<!--
|
<!--
|
||||||
noVNC example: simple example using default controls
|
noVNC example: simple example using default controls
|
||||||
|
Copyright (C) 2010 Joel Martin
|
||||||
|
Licensed under LGPL-3 (see LICENSE.txt)
|
||||||
-->
|
-->
|
||||||
<head>
|
<head>
|
||||||
<title>VNC Client</title>
|
<title>VNC Client</title>
|
||||||
|
|
|
@ -1,6 +1,8 @@
|
||||||
<html>
|
<html>
|
||||||
<!--
|
<!--
|
||||||
noVNC Example: Automatically connect on page load.
|
noVNC Example: Automatically connect on page load.
|
||||||
|
Copyright (C) 2010 Joel Martin
|
||||||
|
Licensed under LGPL-3 (see LICENSE.txt)
|
||||||
|
|
||||||
Connect parameters are provided in query string:
|
Connect parameters are provided in query string:
|
||||||
http://example.com/?host=HOST&port=PORT&encrypt=1&true_color=1
|
http://example.com/?host=HOST&port=PORT&encrypt=1&true_color=1
|
||||||
|
|
Loading…
Reference in New Issue