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
dbe28302
Commit
dbe28302
authored
Feb 04, 2011
by
Joel Martin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Just link to submodule favicon from each page.
parent
432c54b6
Changes
7
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
125 additions
and
0 deletions
+125
-0
demo1.html
demo1.html
+1
-0
favicon.ico
favicon.ico
+0
-0
index.html
index.html
+1
-0
monitor.html
monitor.html
+120
-0
screenshots.html
screenshots.html
+1
-0
vnc.html
vnc.html
+1
-0
webkit_canvas_bug.html
webkit_canvas_bug.html
+1
-0
No files found.
demo1.html
View file @
dbe28302
...
...
@@ -2,6 +2,7 @@
<html>
<head>
<title>
noVNC Demo
</title>
<link
rel=
"shortcut icon"
href=
"noVNC/favicon.ico"
/>
<link
rel=
"stylesheet"
href=
"noVNC/include/plain.css"
>
</head>
<body>
...
...
favicon.ico
deleted
100644 → 0
View file @
432c54b6
1.12 KB
index.html
View file @
dbe28302
...
...
@@ -4,6 +4,7 @@
<html
xmlns=
"http://www.w3.org/1999/xhtml"
xml:lang=
"en"
lang=
"en"
>
<head>
<meta
http-equiv=
"Content-Type"
content=
"text/html; charset=utf-8"
/>
<link
rel=
"shortcut icon"
href=
"noVNC/favicon.ico"
/>
<title>
noVNC
</title>
...
...
monitor.html
0 → 100644
View file @
dbe28302
<!DOCTYPE html>
<html>
<!--
noVNC example: simple example using default UI
Copyright (C) 2010 Joel Martin
Licensed under LGPL-3 (see noVNC/LICENSE.txt)
-->
<head>
<title>
noVNC
</title>
<meta
http-equiv=
"X-UA-Compatible"
content=
"chrome=1"
>
<link
rel=
"shortcut icon"
href=
"noVNC/favicon.ico"
/>
<link
rel=
"stylesheet"
href=
"noVNC/include/plain.css"
>
<link
rel=
"alternate stylesheet"
href=
"noVNC/include/black.css"
TITLE=
"Black"
>
<!--
<script type='text/javascript'
src='http://getfirebug.com/releases/lite/1.2/firebug-lite-compressed.js'></script>
-->
<script>
INCLUDE_URI
=
"noVNC/include/"
;
</script>
<script
src=
"noVNC/include/vnc.js"
></script>
<script
src=
"noVNC/include/ui.js"
></script>
<style>
#scr_table
{
padding
:
0px
;
border
:
0px
none
;
border-collapse
:
collapse
;
}
#scr_table
td
{
padding
:
0px
;
margin
:
0px
;
border
:
0px
none
;
border-collapse
:
collapse
;
}
#scr_tl
{
width
:
34px
;
height
:
34px
;
background
:
url('noVNC/images/full_700_topleft.png')
no-repeat
;
}
#scr_t
{
height
:
34px
;
background
:
url('noVNC/images/full_700_top.png')
repeat-x
;
}
#scr_tr
{
width
:
34px
;
height
:
34px
;
background
:
url('noVNC/images/full_700_topright.png')
no-repeat
;
}
#scr_l
{
width
:
34px
;
background
:
url('noVNC/images/full_700_left.png')
repeat-y
;
}
#scr_center
{
height
:
203px
;
background
:
url('noVNC/images/full_700_base.png')
center
top
no-repeat
;
}
#scr_r
{
width
:
34px
;
background
:
url('noVNC/images/full_700_right.png')
repeat-y
;
}
#scr_bl
{
width
:
34px
;
height
:
34px
;
background
:
url('noVNC/images/full_700_bottomleft.png')
no-repeat
;
}
#scr_b
{
height
:
34px
;
background
:
url('noVNC/images/full_700_bottom.png')
repeat-x
;
}
#scr_br
{
width
:
34px
;
height
:
34px
;
background
:
url('noVNC/images/full_700_bottomright.png')
no-repeat
;
}
#VNC_clipboard
{
display
:
none
;
}
#vnc
{
margin
:
0px
;
}
</style>
</head>
<body>
<div
style=
"width: 600px"
>
noVNC is a full VNC client implemented using HTML5 Canvas and WebSockets.
You will need to either use a VNC server with WebSockets
support or use
<a
href=
"https://github.com/kanaka/websockify"
>
websockify
</a>
to proxy the raw TCP socket data to the WebSockets API of
your browser. See the noVNC
<a
href=
"https://github.com/kanaka/noVNC"
>
README
</a>
and
<a
href=
"http://kanaka.github.com/noVNC"
>
website
</a>
for more information.
</div>
<br>
<table
id=
"scr_table"
>
<tr>
<td
id=
scr_tl
></td><td
id=
scr_t
></td><td
id=
scr_tr
></td>
</tr>
<tr>
<td
id=
scr_l
></td>
<td
id=
scr_c
>
<div
id=
'vnc'
>
Loading
</div>
</td>
<td
id=
scr_r
></td>
</tr>
<tr>
<td
id=
scr_bl
></td><td
id=
scr_b
></td><td
id=
scr_br
></td>
</tr>
<tr>
<td></td><td
id=
scr_center
></td><td></td>
</tr>
</table>
<script>
window
.
onload
=
function
()
{
UI
.
load
(
'vnc'
);
};
</script>
</body>
</html>
screenshots.html
View file @
dbe28302
...
...
@@ -4,6 +4,7 @@
<html
xmlns=
"http://www.w3.org/1999/xhtml"
xml:lang=
"en"
lang=
"en"
>
<head>
<meta
http-equiv=
"Content-Type"
content=
"text/html; charset=utf-8"
/>
<link
rel=
"shortcut icon"
href=
"noVNC/favicon.ico"
/>
<title>
noVNC Videos and Screenshots
</title>
...
...
vnc.html
View file @
dbe28302
...
...
@@ -8,6 +8,7 @@
<head>
<title>
noVNC
</title>
<meta
http-equiv=
"X-UA-Compatible"
content=
"chrome=1"
>
<link
rel=
"shortcut icon"
href=
"noVNC/favicon.ico"
/>
<link
rel=
"stylesheet"
href=
"noVNC/include/plain.css"
>
<link
rel=
"alternate stylesheet"
href=
"noVNC/include/black.css"
TITLE=
"Black"
>
<!--
...
...
webkit_canvas_bug.html
View file @
dbe28302
<html>
<head>
<title>
WebKit Canvas Rendering Bug
</title>
<link
rel=
"shortcut icon"
href=
"noVNC/favicon.ico"
/>
</head>
<body>
...
...
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