Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
N
noVNC
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
rasky
noVNC
Commits
2ea40fdf
Commit
2ea40fdf
authored
Nov 27, 2013
by
jalf
Committed by
Solly Ross
Dec 05, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Keyboard Handling [6/8]: Update everything to include the new keyboard handling scripts
parent
fa30469c
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
12 additions
and
6 deletions
+12
-6
novnc.install
debian/novnc.install
+2
-0
ui.js
include/ui.js
+2
-2
viewport.html
tests/viewport.html
+2
-0
vnc_perf.html
tests/vnc_perf.html
+2
-1
vnc_playback.html
tests/vnc_playback.html
+2
-2
vnc_auto.html
vnc_auto.html
+2
-1
No files found.
debian/novnc.install
View file @
2ea40fdf
...
...
@@ -13,6 +13,8 @@ images/favicon.ico /usr/share/novnc
include
/
base64
.
js
/
usr
/
share
/
novnc
/
include
include
/
des
.
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
/
logo
.
js
/
usr
/
share
/
novnc
/
include
include
/
base
.
css
/
usr
/
share
/
novnc
/
include
...
...
include/ui.js
View file @
2ea40fdf
...
...
@@ -14,8 +14,8 @@
// Load supporting scripts
window
.
onscriptsload
=
function
()
{
UI
.
load
();
};
Util
.
load_scripts
([
"webutil.js"
,
"base64.js"
,
"websock.js"
,
"des.js"
,
"
input.js"
,
"display.js"
,
"jsunzip.js"
,
"rfb
.js"
,
"keysym.js"
]);
"
keysymdef.js"
,
"keyboard.js"
,
"input.js"
,
"display
.js"
,
"
jsunzip.js"
,
"rfb.js"
,
"
keysym.js"
]);
var
UI
=
{
...
...
tests/viewport.html
View file @
2ea40fdf
...
...
@@ -37,6 +37,8 @@
<script
src=
"../include/util.js"
></script>
<script
src=
"../include/webutil.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/display.js"
></script>
<script>
...
...
tests/vnc_perf.html
View file @
2ea40fdf
...
...
@@ -47,7 +47,8 @@
<script>
// Load supporting scripts
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
,
encOrder
=
[
'raw'
,
'rre'
,
'hextile'
,
'tightpng'
,
'copyrect'
],
...
...
tests/vnc_playback.html
View file @
2ea40fdf
...
...
@@ -60,8 +60,8 @@
message
(
"Loading "
+
fname
);
// Load supporting scripts
Util
.
load_scripts
([
"base64.js"
,
"websock.js"
,
"des.js"
,
"
input.js"
,
"display.js"
,
"jsunzip.js"
,
"rfb
.js"
,
"playback.js"
,
fname
]);
"
keysymdef.js"
,
"keyboard.js"
,
"input.js"
,
"display
.js"
,
"
jsunzip.js"
,
"rfb.js"
,
"
playback.js"
,
fname
]);
}
else
{
message
(
"Must specify data=FOO in query string."
);
...
...
vnc_auto.html
View file @
2ea40fdf
...
...
@@ -68,7 +68,8 @@
// Load supporting scripts
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
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment