Commit d942b200 authored by Joel Martin's avatar Joel Martin

Add online client, use submodule for all pages.

parent a32b2aaf
......@@ -71,6 +71,9 @@ Notable commits, announcements and news @<a href="http://www.twitter.com/noVNC">
<br>
<br>
<h2>Online noVNC Client</h2>
<p>The noVNC client is available <a href="vnc.html">here</a>.</p>
<h2>Videos and Screenshots</h2>
<p>It's not a real project until there are <a href="screenshots.html">videos and screenshots</a>.</p>
......
<html>
<!--
noVNC example: simple example using default UI
Copyright (C) 2010 Joel Martin
Licensed under LGPL-3 (see noVNC/LICENSE.txt)
-->
<head>
<title>noVNC</title>
<meta http-equiv="X-UA-Compatible" content="chrome=1">
<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>
VNC_uri_prefix = "noVNC/include/";
</script>
<script src="noVNC/include/vnc.js"></script>
<script src="noVNC/include/ui.js"></script>
</head>
<body>
<div style="width: 600">
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>
for more information.
</div>
<br>
<div id='vnc'>Loading</div>
<script>
window.onload = function () {
UI.load('vnc');
};
</script>
</body>
</html>
......@@ -6,7 +6,7 @@
<div id="intro" style="width: 600px;">
This page uses the rendering engine from <a
href="http://github.com/kanaka/novnc">noVNC</a> to
href="http://github.com/kanaka/noVNC">noVNC</a> to
demonstrate a Canvas rendering bug in <a
href="http://webkit.org/">WebKit</a>. This bug was
introduced between WebKit revision 66240 and 66396.
......@@ -58,10 +58,10 @@
-->
<script>
VNC_uri_prefix = "http://github.com/kanaka/noVNC/raw/HEAD/include/";
VNC_uri_prefix = "noVNC/include/";
</script>
<script src="http://github.com/kanaka/noVNC/raw/HEAD/include/vnc.js"></script>
<script src="http://github.com/kanaka/noVNC/raw/HEAD/include/playback.js"></script>
<script src="noVNC/include/vnc.js"></script>
<script src="noVNC/include/playback.js"></script>
<script src="data/bug_raw.js"></script>
<script>
......
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