aboutsummaryrefslogtreecommitdiff
blob: 4c17bdd4ae0d15d73200f67a1b120f51b85ee671 (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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
<?php
	require_once "config.php";
	require_once GENTOASTER_PATH."/ui/testdrive.php";
?>
<html>
    <head>
        <title>Gentoaster</title>
        <link rel="stylesheet" type="text/css" href="css/style.css">
        <link rel="stylesheet" type="text/css"
          href="css/ui-lightness/jquery-ui-1.8.14.custom.css">
        <script type="text/javascript" src="/js/jquery-1.5.1.min.js"></script>
        <script type="text/javascript" src="/js/jquery-ui-1.8.14.js"></script>
        <script type="text/javascript" src="include/vnc.js"></script>
    </head>
    <body>
        <div id="container">
            <div id="header"></div>
            <div id="content">
                <div id="main">
                    <div id="status" class="step">
                        <h1>Let's fire her up!</h1>
                            <center>
                            <div id="VNC_screen">
                                <div id="VNC_status_bar" class="VNC_status_bar"
                                    style="margin-top: -25px;">
                                    <table border=0 width="100%"><tr>
                                        <td>
                                            <div id="VNC_status"
                                                style="display: none;">
                                                Loading
                                            </div>
                                        </td>
                                        <td width="1%"><div id="VNC_buttons">
                                            <input type=button
                                                value="Send CtrlAltDel"
                                                id="sendCtrlAltDelButton">
                                                </div></td>
                                    </tr></table>
                                </div>
                                <canvas id="VNC_canvas" width="640px"
                                    height="20px">
                                    Canvas not supported.
                                </canvas>
                            </div>
                            </center>
                    
                            <script>
                            /*jslint white: false */
                            /*global window, $, Util, RFB, */
                            "use strict";
                    
                            var rfb;
                    
                            function setPassword() {
                                rfb.sendPassword($D('password_input').value);
                                return false;
                            }
                            function sendCAD() {
                                rfb.sendCtrlAltDel();
                                return false;
                            }
                            function updateState(rfb, state, oldstate, msg) {
                                var s, sb, cad, level, attr;
                                s = $D('VNC_status');
                                sb = $D('VNC_status_bar');
                                cad = $D('sendCtrlAltDelButton');
                                switch (state) {
                                    case 'failed':
                                        level = "error";
                                        break;
                                    case 'fatal':
                                        level = "error";
                                        break;
                                    case 'normal':
                                        level = "normal";
                                        break;
                                    case 'disconnected':
                                        level = "normal";
                                        break;
                                    case 'loaded':
                                        level = "normal";
                                        break;
                                    default:
                                        level = "warn";
                                        break;
                                }
                    
                                if (state === "normal") {
                                    cad.disabled = false;
                                } else {
                                    cad.disabled = true;
                                }
                    
                                if (typeof(msg) !== 'undefined') {
                                    attr = "VNC_status_" + level;
                                    sb.setAttribute("class", attr);
                                    s.innerHTML = msg;
                                }
                            }
                    
                            function connect() {
                                var host, port, password;
                    
                                $D('sendCtrlAltDelButton').onclick = sendCAD;
                    
                                host = "<?php echo $server[0]; ?>";
                                port = <?php echo $server[1]; ?>;
                                password = "";
                    
                                function gqv(a,b) {
                                    return WebUtil.getQueryVar(a,b);
                                }
                    
                                rfb = new RFB({'target':$D('VNC_canvas'),
                                'encrypt': gqv('encrypt',false),
                                'true_color': gqv('true_color',true),
                                'local_cursor': gqv('cursor',true),
                                'shared': gqv('shared',true),
                                'updateState':  updateState});
                                
                                rfb.connect(host, port, password);
                                
                            };
                            
                            setTimeout("connect()", 2000);
                            </script>
                    </div>
                </div>
                <div id="navigation">

                </div>
            </div>
        </div>
        </script>
    </body>
</html>