Commit 2ea40fdf authored by jalf's avatar jalf Committed by Solly Ross

Keyboard Handling [6/8]: Update everything to include the new keyboard handling scripts

parent fa30469c
...@@ -13,6 +13,8 @@ images/favicon.ico /usr/share/novnc ...@@ -13,6 +13,8 @@ images/favicon.ico /usr/share/novnc
include/base64.js /usr/share/novnc/include include/base64.js /usr/share/novnc/include
include/des.js /usr/share/novnc/include include/des.js /usr/share/novnc/include
include/display.js /usr/share/novnc/include include/display.js /usr/share/novnc/include
include/keysymdef.js /usr/share/novnc/include
include/keyboard.js /usr/share/novnc/include
include/input.js /usr/share/novnc/include include/input.js /usr/share/novnc/include
include/logo.js /usr/share/novnc/include include/logo.js /usr/share/novnc/include
include/base.css /usr/share/novnc/include include/base.css /usr/share/novnc/include
......
...@@ -14,8 +14,8 @@ ...@@ -14,8 +14,8 @@
// Load supporting scripts // Load supporting scripts
window.onscriptsload = function () { UI.load(); }; window.onscriptsload = function () { UI.load(); };
Util.load_scripts(["webutil.js", "base64.js", "websock.js", "des.js", Util.load_scripts(["webutil.js", "base64.js", "websock.js", "des.js",
"input.js", "display.js", "jsunzip.js", "rfb.js", "keysymdef.js", "keyboard.js", "input.js", "display.js",
"keysym.js"]); "jsunzip.js", "rfb.js", "keysym.js"]);
var UI = { var UI = {
......
...@@ -37,6 +37,8 @@ ...@@ -37,6 +37,8 @@
<script src="../include/util.js"></script> <script src="../include/util.js"></script>
<script src="../include/webutil.js"></script> <script src="../include/webutil.js"></script>
<script src="../include/base64.js"></script> <script src="../include/base64.js"></script>
<script src="../include/keysymdef.js"></script>
<script src="../include/keyboard.js"></script>
<script src="../include/input.js"></script> <script src="../include/input.js"></script>
<script src="../include/display.js"></script> <script src="../include/display.js"></script>
<script> <script>
......
...@@ -47,7 +47,8 @@ ...@@ -47,7 +47,8 @@
<script> <script>
// Load supporting scripts // Load supporting scripts
Util.load_scripts(["webutil.js", "base64.js", "websock.js", "des.js", Util.load_scripts(["webutil.js", "base64.js", "websock.js", "des.js",
"input.js", "display.js", "jsunzip.js", "rfb.js"]); "keysymdef.js", "keyboard.js", "input.js", "display.js",
"jsunzip.js", "rfb.js"]);
var start_time, VNC_frame_data, pass, passes, encIdx, var start_time, VNC_frame_data, pass, passes, encIdx,
encOrder = ['raw', 'rre', 'hextile', 'tightpng', 'copyrect'], encOrder = ['raw', 'rre', 'hextile', 'tightpng', 'copyrect'],
......
...@@ -60,8 +60,8 @@ ...@@ -60,8 +60,8 @@
message("Loading " + fname); message("Loading " + fname);
// Load supporting scripts // Load supporting scripts
Util.load_scripts(["base64.js", "websock.js", "des.js", Util.load_scripts(["base64.js", "websock.js", "des.js",
"input.js", "display.js", "jsunzip.js", "rfb.js", "keysymdef.js", "keyboard.js", "input.js", "display.js",
"playback.js", fname]); "jsunzip.js", "rfb.js", "playback.js", fname]);
} else { } else {
message("Must specify data=FOO in query string."); message("Must specify data=FOO in query string.");
......
...@@ -68,7 +68,8 @@ ...@@ -68,7 +68,8 @@
// Load supporting scripts // Load supporting scripts
Util.load_scripts(["webutil.js", "base64.js", "websock.js", "des.js", Util.load_scripts(["webutil.js", "base64.js", "websock.js", "des.js",
"input.js", "display.js", "jsunzip.js", "rfb.js"]); "keysymdef.js", "keyboard.js", "input.js", "display.js",
"jsunzip.js", "rfb.js"]);
var rfb; var rfb;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment