Skip to content

Instantly share code, notes, and snippets.

@kanaka
Created June 28, 2011 21:10
Show Gist options
  • Select an option

  • Save kanaka/1052212 to your computer and use it in GitHub Desktop.

Select an option

Save kanaka/1052212 to your computer and use it in GitHub Desktop.
XHTML compatible version of vnc page
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<!--
noVNC example: simple example using default UI
Copyright (C) 2011 Joel Martin
Licensed under LGPL-3 (see LICENSE.txt)
-->
<head>
<TITLE>noVNC</TITLE>
<META http-equiv="X-UA-Compatible" content="chrome=1"/>
<LINK rel="stylesheet" href="include/plain.css"/>
<LINK rel="alternate stylesheet" href="include/black.css" title="Black"/>
<!--
<script type='text/javascript'
src='http://getfirebug.com/releases/lite/1.2/firebug-lite-compressed.js'></script>
-->
<script src="include/util.js"></script>
<script src="include/webutil.js"></script>
<script src="include/logo.js"></script>
<script src="include/base64.js"></script>
<script src="include/websock.js"></script>
<script src="include/des.js"></script>
<script src="include/input.js"></script>
<script src="include/display.js"></script>
<script src="include/rfb.js"></script>
<script src="include/ui.js"></script>
</head>
<body>
<div id='vnc'>Loading</div>
<script>
window.onload = function () {
UI.load('vnc');
};
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment