diff options
author | Christian Beier <dontmind@freeshell.org> | 2012-04-12 18:41:14 +0200 |
---|---|---|
committer | Christian Beier <dontmind@freeshell.org> | 2012-04-12 18:41:14 +0200 |
commit | 98f4037785246f77e544bab9196f076fe310be16 (patch) | |
tree | 9531342656a66e0963ff9b55a00db2fe3222e31d /webclients/novnc/vnc.html | |
parent | efcdab50cc10ad121653bfff0da441495af461d3 (diff) | |
download | libtdevnc-98f4037785246f77e544bab9196f076fe310be16.tar.gz libtdevnc-98f4037785246f77e544bab9196f076fe310be16.zip |
Update our copy of noVNC.
Bugfixes and support for tight encoding with zlib.
Diffstat (limited to 'webclients/novnc/vnc.html')
-rw-r--r-- | webclients/novnc/vnc.html | 24 |
1 files changed, 21 insertions, 3 deletions
diff --git a/webclients/novnc/vnc.html b/webclients/novnc/vnc.html index 281b4d3..b6cf85b 100644 --- a/webclients/novnc/vnc.html +++ b/webclients/novnc/vnc.html @@ -90,7 +90,7 @@ title="Settings" onclick="UI.toggleSettingsPanel();" /> <input type="image" src="images/connect.png" - id="connectButton" class="noVNC_status_button_selected" + id="connectButton" class="noVNC_status_button" title="Connect" onclick="UI.toggleConnectPanel()" /> <input type="image" src="images/disconnect.png" @@ -99,6 +99,23 @@ onclick="UI.disconnect()" /> </div> + <!-- Description Panel --> + <!-- Shown by default when hosted at for kanaka.github.com --> + <div id="noVNC_description" style="display:none;" class=""> + noVNC is a browser based VNC client implemented using HTML5 Canvas + and WebSockets. You will either need a VNC server with WebSockets + support (such as <a href="http://libvncserver.sourceforge.net/">libvncserver</a>) + or you will need to use + <a href="https://github.com/kanaka/websockify">websockify</a> + to bridge between your browser and VNC server. 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. + <br /> + <input type="button" value="Close" + onclick="UI.toggleConnectPanel();"> + </div> + <!-- Clipboard Panel --> <div id="noVNC_clipboard" class="triangle-right top"> <textarea id="noVNC_clipboard_text" rows=5 @@ -118,10 +135,11 @@ <li><input id="noVNC_encrypt" type="checkbox"> Encrypt</li> <li><input id="noVNC_true_color" type="checkbox" checked> True Color</li> <li><input id="noVNC_cursor" type="checkbox"> Local Cursor</li> - <li><input id="noVNC_clip" type="checkbox"> Clip to window</li> + <li><input id="noVNC_clip" type="checkbox"> Clip to Window</li> <li><input id="noVNC_shared" type="checkbox"> Shared Mode</li> + <li><input id="noVNC_view_only" type="checkbox"> View Only</li> <li><input id="noVNC_connectTimeout" type="input"> Connect Timeout (s)</li> - <li><input id="noVNC_path" type="input"> Path</li> + <li><input id="noVNC_path" type="input" value="websockify"> Path</li> <hr> <!-- Stylesheet selection dropdown --> <li><label><strong>Style: </strong> |