Commit 697ce8b7 authored by Joel Martin's avatar Joel Martin

Update noVNC version. Redirect to real noVNC dir.

noVNC.com is really the preferred URL that will redirect to the real
location hosted on github.
parent ada10321
Subproject commit 5e55378b6e4c9f24ef4481cec3032a860d4d824b Subproject commit 0ce93900ae738bedb75ad01cbdbd592e1e47fff8
<!DOCTYPE html>
<html> <html>
<!--
noVNC example: simple example using default UI
Copyright (C) 2010 Joel Martin
Licensed under LGPL-3 (see noVNC/LICENSE.txt)
-->
<head> <head>
<title>noVNC</title> <meta http-equiv="Refresh" content="300; url=noVNC/vnc.html" />
<meta http-equiv="X-UA-Compatible" content="chrome=1">
<link rel="shortcut icon" href="noVNC/images/favicon.ico" />
<link rel="stylesheet" href="noVNC/include/plain.css">
<link rel="alternate stylesheet" href="noVNC/include/black.css" TITLE="Black">
<!--
<script type='text/javascript'
src='http://getfirebug.com/releases/lite/1.2/firebug-lite-compressed.js'></script>
-->
<script>
INCLUDE_URI = "noVNC/include/";
</script>
<script src="noVNC/include/vnc.js"></script>
<script src="noVNC/include/ui.js"></script>
</head> </head>
<body>
<div style="width: 600px">
noVNC is a full VNC client implemented using HTML5 Canvas and WebSockets.
You will need to either use a VNC server with WebSockets
support or use <a href="https://github.com/kanaka/websockify">websockify</a>
to proxy the raw TCP socket data to the WebSockets API of
your browser. See the noVNC <a href="https://github.com/kanaka/noVNC">README</a>
and <a href="http://kanaka.github.com/noVNC">website</a>
for more information.
</div>
<br>
<div id='vnc'>Loading</div>
<script> <script>
window.onload = function () { setTimeout(function(){
UI.load('vnc'); var l = window.location;
}; window.location = "noVNC/vnc.html" + l.search + l.hash;
}, 15000);
</script> </script>
<body>
<p>noVNC online has moved (redirect in 15 seconds).</p>
<p>Please update your links to either:
<ul>
<li><a href="http://kanaka.github.com/noVNC/noVNC/vnc.html">kanaka.github.com/noVNC/noVNC/vnc.html</a>
<li><a href="http://novnc.com">noVNC.com</a> (short form that immediately redirects to the above)
</ul>
</body> </body>
</html> </html>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment