c8e4a65bd1
- Rotation now fully working (on demand with F4 key) - Speed improvements and bug fixes - Improved server state detection (using IPC) - changed to LibVNCServer from kanaka repository - New webserver vnc client (noVNC), uses javascript - Ability to make a reverse connection - Two new framebuffer access methods (gingerbread and adb) - New minimalistic interface
35 lines
1.0 KiB
HTML
Executable File
35 lines
1.0 KiB
HTML
Executable File
<!DOCTYPE html>
|
|
<html>
|
|
<!--
|
|
noVNC example: simple example using default UI
|
|
Copyright (C) 2011 Joel Martin
|
|
Licensed under LGPL-3 (see LICENSE.txt)
|
|
-->
|
|
<head>
|
|
<title>droid VNC server</title>
|
|
<meta http-equiv="X-UA-Compatible" content="chrome=1">
|
|
<link rel="stylesheet" href="plain.css">
|
|
<link rel="alternate stylesheet" href="black.css" TITLE="Black">
|
|
<!--
|
|
<script type='text/javascript'
|
|
src='http://getfirebug.com/releases/lite/1.2/firebug-lite-compressed.js'></script>
|
|
-->
|
|
<script src="vnc.js"></script>
|
|
<script src="ui.js.vnc"></script>
|
|
</head>
|
|
|
|
<body>
|
|
<div id='vnc'>Loading</div>
|
|
|
|
<script>
|
|
window.onload = function () {
|
|
UI.load('vnc');
|
|
};
|
|
</script>
|
|
|
|
<A id="java" href="./index.vnc">Java version (older)</A></br>
|
|
<A id="troubleshooting" href="https://github.com/kanaka/noVNC/wiki/Browser-support">Not working? Click here</A>
|
|
</body>
|
|
|
|
</html>
|