summaryrefslogtreecommitdiff
path: root/vnc_auto.html
blob: a94c9eac1c2fe96ec7d71483fbf138ef7aee4ce1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
<!-- 
noVNC Example: Automatically connect on page load.

Connect parameters are provided in query string:
    http://example.com/?host=HOST&port=PORT&encrypt=1&true_color=1
-->
<html>
    <head>
        <title>VNC Client</title>
        <link rel="stylesheet" href="include/plain.css" TITLE="plain">
        <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/init.js"></script>
        <script src="include/vnc.js"></script>
    </head>

    <body style="margin: 0px;">
        <div id="VNC_screen">
            <div id="VNC_status_bar" class="VNC_status_bar" style="margin-top: 0px;">
                <table border=0 width=100%><tr>
                    <td><div id="VNC_status">Loading</div></td>
                    <td width=1%><div id="VNC_buttons">
                        <input type=button value="Send CtrlAltDel"
                            id="sendCtrlAltDelButton"
                            onclick="sendCtrlAltDel();"></div></td>
                </tr></table>
            </div>
            <canvas id="VNC_canvas" width="640px" height="20px">
                Canvas not supported.
            </canvas>
        </div>
    </body>

    <script>
        function setPassword() {
            RFB.sendPassword($('password_input').value);
            return false;
        }
        function sendCtrlAltDel() {
            RFB.sendCtrlAltDel();
            return false;
        }
        function updateState(state, msg) {
            var s, sb, klass, html;
            s = $('VNC_status');
            sb = $('VNC_status_bar');
            cad = $('sendCtrlAltDelButton');
            switch (state) {
                case 'failed':
                case 'fatal':
                    klass = "VNC_status_error";
                    break;
                case 'normal':
                    klass = "VNC_status_normal";
                    break;
                case 'disconnected':
                case 'loaded':
                    klass = "VNC_status_normal";
                    break;
                case 'password':
                    msg = '<form onsubmit="return setPassword();"';
                    msg += '  style="margin-bottom: 0px">';
                    msg += 'Password Required: ';
                    msg += '<input type=password size=10 id="password_input" class="VNC_status">';
                    msg += '</form>';
                    // Fall through
                default:
                    klass = "VNC_status_warn";
            }

            if (state === "normal") { cad.disabled = false; }
            else                    { cad.disabled = true; }

            if (typeof(msg) !== 'undefined') {
                sb.setAttribute("class", klass);
                s.innerHTML = msg;
            }
        }

        window.onload = function () {
            var host, port, password;

            host = Util.getQueryVar('host', null);
            port = Util.getQueryVar('port', null);
            password = Util.getQueryVar('password', '');
            if ((!host) || (!port)) {
                updateState('failed',
                    "Must specify host and port in URL");
                return;
            }

            RFB.setEncrypt(Util.getQueryVar('encrypt', true));
            RFB.setBase64(Util.getQueryVar('base64', true));
            RFB.setTrueColor(Util.getQueryVar('true_color', true));
            RFB.setCursor(Util.getQueryVar('cursor', true));
            RFB.setUpdateState(updateState);

            RFB.load();
            RFB.connect(host, port, password);
        }
    </script>
</html>