]> git.proxmox.com Git - mirror_novnc.git/blame_incremental - vnc.html
Use gettext .po files for translations
[mirror_novnc.git] / vnc.html
... / ...
CommitLineData
1<!DOCTYPE html>
2<html>
3<head>
4
5 <!--
6 noVNC example: simple example using default UI
7 Copyright (C) 2012 Joel Martin
8 Copyright (C) 2016 Samuel Mannehed for Cendio AB
9 Copyright (C) 2016 Pierre Ossman for Cendio AB
10 noVNC is licensed under the MPL 2.0 (see LICENSE.txt)
11 This file is licensed under the 2-Clause BSD license (see LICENSE.txt).
12
13 Connect parameters are provided in query string:
14 http://example.com/?host=HOST&port=PORT&encrypt=1&true_color=1
15 or the fragment:
16 http://example.com/#host=HOST&port=PORT&encrypt=1&true_color=1
17 -->
18 <title>noVNC</title>
19
20 <meta charset="utf-8" />
21
22 <!-- Always force latest IE rendering engine (even in intranet) & Chrome Frame
23 Remove this if you use the .htaccess -->
24 <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
25
26 <!-- Icons (see Makefile for what the sizes are for) -->
27 <link rel="icon" sizes="16x16" type="image/png" href="app/images/icons/novnc-16x16.png">
28 <link rel="icon" sizes="24x24" type="image/png" href="app/images/icons/novnc-24x24.png">
29 <link rel="icon" sizes="32x32" type="image/png" href="app/images/icons/novnc-32x32.png">
30 <link rel="icon" sizes="48x48" type="image/png" href="app/images/icons/novnc-48x48.png">
31 <link rel="icon" sizes="60x60" type="image/png" href="app/images/icons/novnc-60x60.png">
32 <link rel="icon" sizes="64x64" type="image/png" href="app/images/icons/novnc-64x64.png">
33 <link rel="icon" sizes="72x72" type="image/png" href="app/images/icons/novnc-72x72.png">
34 <link rel="icon" sizes="76x76" type="image/png" href="app/images/icons/novnc-76x76.png">
35 <link rel="icon" sizes="96x96" type="image/png" href="app/images/icons/novnc-96x96.png">
36 <link rel="icon" sizes="120x120" type="image/png" href="app/images/icons/novnc-120x120.png">
37 <link rel="icon" sizes="144x144" type="image/png" href="app/images/icons/novnc-144x144.png">
38 <link rel="icon" sizes="152x152" type="image/png" href="app/images/icons/novnc-152x152.png">
39 <link rel="icon" sizes="192x192" type="image/png" href="app/images/icons/novnc-192x192.png">
40 <link rel="icon" sizes="512x512" type="image/png" href="app/images/icons/novnc-512x512.png">
41 <link rel="icon" sizes="any" type="image/svg+xml" href="app/images/icons/novnc-icon.svg">
42 <!-- Repeated last so that legacy handling will pick this -->
43 <link rel="icon" sizes="16x16" type="image/png" href="app/images/icons/novnc-16x16.png">
44
45 <!-- Apple iOS Safari settings -->
46 <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
47 <meta name="apple-mobile-web-app-capable" content="yes" />
48 <meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
49 <!-- Home Screen Icons (favourites and bookmarks use the normal icons) -->
50 <link rel="apple-touch-icon" sizes="60x60" type="image/png" href="app/images/icons/novnc-60x60.png">
51 <link rel="apple-touch-icon" sizes="76x76" type="image/png" href="app/images/icons/novnc-76x76.png">
52 <link rel="apple-touch-icon" sizes="120x120" type="image/png" href="app/images/icons/novnc-120x120.png">
53 <link rel="apple-touch-icon" sizes="152x152" type="image/png" href="app/images/icons/novnc-152x152.png">
54
55 <!-- Stylesheets -->
56 <link rel="stylesheet" href="app/styles/base.css" />
57 <link rel="alternate stylesheet" href="app/styles/black.css" TITLE="Black" />
58 <link rel="alternate stylesheet" href="app/styles/blue.css" TITLE="Blue" />
59
60 <!--
61 <script type='text/javascript'
62 src='http://getfirebug.com/releases/lite/1.2/firebug-lite-compressed.js'></script>
63 -->
64
65</head>
66
67<body>
68
69 <div id="noVNC_fallback_error">
70 <div>noVNC encountered an error:</div>
71 <div id="noVNC_fallback_errormsg"></div>
72 </div>
73
74 <!-- noVNC Control Bar -->
75 <div id="noVNC_control_bar_anchor" class="noVNC_vcenter">
76
77 <div id="noVNC_control_bar">
78 <div id="noVNC_control_bar_handle" title="Hide/Show the control bar"><div></div></div>
79
80 <div class="noVNC_scroll">
81
82 <h1 class="noVNC_logo"><span>no</span><br />VNC</h1>
83
84 <!-- Drag/Pan the viewport -->
85 <input type="image" alt="viewport drag" src="app/images/drag.svg"
86 id="noVNC_view_drag_button" class="noVNC_button noVNC_hidden"
87 title="Move/Drag Viewport" />
88
89 <!--noVNC Touch Device only buttons-->
90 <div id="noVNC_mobile_buttons">
91 <input type="image" alt="No mousebutton" src="app/images/mouse_none.svg"
92 id="noVNC_mouse_button0" class="noVNC_button"
93 title="Active Mouse Button"/>
94 <input type="image" alt="Left mousebutton" src="app/images/mouse_left.svg"
95 id="noVNC_mouse_button1" class="noVNC_button"
96 title="Active Mouse Button"/>
97 <input type="image" alt="Middle mousebutton" src="app/images/mouse_middle.svg"
98 id="noVNC_mouse_button2" class="noVNC_button"
99 title="Active Mouse Button"/>
100 <input type="image" alt="Right mousebutton" src="app/images/mouse_right.svg"
101 id="noVNC_mouse_button4" class="noVNC_button"
102 title="Active Mouse Button"/>
103 <input type="image" alt="Keyboard" src="app/images/keyboard.svg"
104 id="noVNC_keyboard_button" class="noVNC_button"
105 value="Keyboard" title="Show Keyboard" />
106 </div>
107
108 <!-- Extra manual keys -->
109 <div id="noVNC_extra_keys">
110 <input type="image" alt="Extra keys" src="app/images/toggleextrakeys.svg"
111 id="noVNC_toggle_extra_keys_button" class="noVNC_button"
112 title="Show Extra Keys"/>
113 <div class="noVNC_vcenter">
114 <div id="noVNC_modifiers" class="noVNC_panel">
115 <input type="image" alt="Ctrl" src="app/images/ctrl.svg"
116 id="noVNC_toggle_ctrl_button" class="noVNC_button"
117 title="Toggle Ctrl"/>
118 <input type="image" alt="Alt" src="app/images/alt.svg"
119 id="noVNC_toggle_alt_button" class="noVNC_button"
120 title="Toggle Alt"/>
121 <input type="image" alt="Tab" src="app/images/tab.svg"
122 id="noVNC_send_tab_button" class="noVNC_button"
123 title="Send Tab"/>
124 <input type="image" alt="Esc" src="app/images/esc.svg"
125 id="noVNC_send_esc_button" class="noVNC_button"
126 title="Send Escape"/>
127 <input type="image" alt="Ctrl+Alt+Del" src="app/images/ctrlaltdel.svg"
128 id="noVNC_send_ctrl_alt_del_button" class="noVNC_button"
129 title="Send Ctrl-Alt-Del" />
130 </div>
131 </div>
132 </div>
133
134 <!-- XVP Shutdown/Reboot -->
135 <input type="image" alt="Shutdown/Reboot" src="app/images/power.svg"
136 id="noVNC_xvp_button" class="noVNC_button"
137 title="Shutdown/Reboot..." />
138 <div class="noVNC_vcenter">
139 <div id="noVNC_xvp" class="noVNC_panel">
140 <div class="noVNC_heading">
141 <img src="app/images/power.svg"> Power
142 </div>
143 <input type="button" id="noVNC_xvp_shutdown_button" value="Shutdown" />
144 <input type="button" id="noVNC_xvp_reboot_button" value="Reboot" />
145 <input type="button" id="noVNC_xvp_reset_button" value="Reset" />
146 </div>
147 </div>
148
149 <!-- Clipboard -->
150 <input type="image" alt="Clipboard" src="app/images/clipboard.svg"
151 id="noVNC_clipboard_button" class="noVNC_button"
152 title="Clipboard" />
153 <div class="noVNC_vcenter">
154 <div id="noVNC_clipboard" class="noVNC_panel">
155 <div class="noVNC_heading">
156 <img src="app/images/clipboard.svg"> Clipboard
157 </div>
158 <textarea id="noVNC_clipboard_text" rows=5></textarea>
159 <br />
160 <input id="noVNC_clipboard_clear_button" type="button"
161 value="Clear" class="noVNC_submit" />
162 </div>
163 </div>
164
165 <!-- Toggle fullscreen -->
166 <input type="image" alt="Fullscreen" src="app/images/fullscreen.svg"
167 id="noVNC_fullscreen_button" class="noVNC_button noVNC_hidden"
168 title="Fullscreen" />
169
170 <!-- Settings -->
171 <input type="image" alt="Settings" src="app/images/settings.svg"
172 id="noVNC_settings_button" class="noVNC_button"
173 title="Settings" />
174 <div class="noVNC_vcenter">
175 <div id="noVNC_settings" class="noVNC_panel">
176 <ul>
177 <li class="noVNC_heading">
178 <img src="app/images/settings.svg"> Settings
179 </li>
180 <li>
181 <label><input id="noVNC_setting_encrypt" type="checkbox" /> Encrypt</label>
182 </li>
183 <li>
184 <label><input id="noVNC_setting_true_color" type="checkbox" checked /> True Color</label>
185 </li>
186 <li>
187 <label><input id="noVNC_setting_cursor" type="checkbox" /> Local Cursor</label>
188 </li>
189 <li>
190 <label><input id="noVNC_setting_clip" type="checkbox" /> Clip to Window</label>
191 </li>
192 <li>
193 <label><input id="noVNC_setting_shared" type="checkbox" /> Shared Mode</label>
194 </li>
195 <li>
196 <label><input id="noVNC_setting_view_only" type="checkbox" /> View Only</label>
197 </li>
198 <li><hr></li>
199 <li>
200 <label for="noVNC_setting_path">Path:</label>
201 <input id="noVNC_setting_path" type="input" value="websockify" />
202 </li>
203 <li>
204 <label for="noVNC_setting_resize">Scaling Mode:</label>
205 <select id="noVNC_setting_resize" name="vncResize">
206 <option value="off">None</option>
207 <option value="scale">Local Scaling</option>
208 <option value="downscale">Local Downscaling</option>
209 <option value="remote">Remote Resizing</option>
210 </select>
211 </li>
212 <li>
213 <label for="noVNC_setting_repeaterID">Repeater ID:</label>
214 <input id="noVNC_setting_repeaterID" type="input" value="" />
215 </li>
216 <li><hr></li>
217 <!-- Stylesheet selection dropdown -->
218 <li>
219 <label>Style:
220 <select id="noVNC_setting_stylesheet" name="vncStyle">
221 <option value="default">default</option>
222 </select>
223 </label>
224 </li>
225 <!-- Logging selection dropdown -->
226 <li>
227 <label>Logging:
228 <select id="noVNC_setting_logging" name="vncLogging">
229 </select>
230 </label>
231 </li>
232 <li><hr></li>
233 <li>
234 <input type="button" id="noVNC_settings_apply" value="Apply" class="noVNC_submit" />
235 </li>
236 </ul>
237 </div>
238 </div>
239
240 <!-- Connection Controls -->
241 <input type="image" alt="Connect" src="app/images/connect.svg"
242 id="noVNC_connect_controls_button" class="noVNC_button"
243 title="Connect" />
244 <input type="image" alt="Disconnect" src="app/images/disconnect.svg"
245 id="noVNC_disconnect_button" class="noVNC_button"
246 title="Disconnect" />
247 <div class="noVNC_vcenter">
248 <div id="noVNC_connect_controls" class="noVNC_panel">
249 <ul>
250 <li class="noVNC_heading">
251 <img src="app/images/connect.svg"> Connection
252 </li>
253 <li>
254 <label for="noVNC_setting_host">Host:</label>
255 <input id="noVNC_setting_host" />
256 </li>
257 <li>
258 <label for="noVNC_setting_port">Port:</label>
259 <input id="noVNC_setting_port" />
260 </li>
261 <li>
262 <label for="noVNC_setting_password">Password:</label>
263 <input id="noVNC_setting_password" type="password" />
264 </li>
265 <li>
266 <label for="noVNC_setting_token">Token:</label>
267 <input id="noVNC_setting_token" />
268 </li>
269 <li><hr></li>
270 <li>
271 <input id="noVNC_connect_button" type="button" value="Connect" class="noVNC_submit" />
272 </li>
273 </ul>
274 </div>
275 </div>
276
277 </div>
278 </div>
279
280 </div> <!-- End of noVNC_control_bar -->
281
282 <!-- Status Dialog -->
283 <div id="noVNC_status"></div>
284
285 <!-- Password Dialog -->
286 <div class="noVNC_center">
287 <div id="noVNC_password_dlg" class="noVNC_panel">
288 <ul>
289 <li>
290 <label>Password:</label>
291 <input id="noVNC_password_input" type="password" />
292 </li>
293 <li>
294 <input id="noVNC_password_button" type="button" value="Send Password" class="noVNC_submit" />
295 </li>
296 </ul>
297 </div>
298 </div>
299
300 <!-- Transition Screens -->
301 <div id="noVNC_transition">
302 <div id="noVNC_transition_text"></div>
303 <div class="noVNC_spinner"></div>
304 </div>
305
306 <div id="noVNC_container">
307 <h1 id="noVNC_logo" class="noVNC_logo"><span>no</span><br />VNC</h1>
308
309 <!-- HTML5 Canvas -->
310 <div id="noVNC_screen">
311 <!-- Note that Google Chrome on Android doesn't respect any of these,
312 html attributes which attempt to disable text suggestions on the
313 on-screen keyboard. Let's hope Chrome implements the ime-mode
314 style for example -->
315 <textarea id="noVNC_keyboardinput" autocapitalize="off"
316 autocorrect="off" autocomplete="off" spellcheck="false"
317 mozactionhint="Enter"></textarea>
318
319 <canvas id="noVNC_canvas" width="0" height="0">
320 Canvas not supported.
321 </canvas>
322 </div>
323
324 </div>
325
326 <audio id="noVNC_bell">
327 <source src="app/sounds/bell.oga" type="audio/ogg">
328 <source src="app/sounds/bell.mp3" type="audio/mpeg">
329 </audio>
330
331 <!-- begin scripts -->
332 <script src="core/util.js"></script>
333 <script src="app/webutil.js"></script>
334 <script src="app/ui.js"></script>
335 <!-- end scripts -->
336
337 </body>
338</html>