blob: 96805dc57f6f19ed5124a2408fe2f0c861d76539 (
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
|
<!--
index.html - an example HTML page for TigerVNC Java viewer applet, to be
used with a standalone Web server running on the same machine where the
TigerVNC server is running. Before using this example, please MAKE SURE
to check the following:
* the value of the PORT parameter should be set correctly (normally, the
port number is 5900 + display number);
* the CODE and ARCHIVE attributes of the <APPLET> tag should point to
the correct directory (this example assumes that this page is in the
same directory with .jar and .class files);
* the WIDTH and HEIGHT attributes of the <APPLET> tag correspond to the
actual desktop size on the server (height should be increased to leave
enough space for the button panel).
-->
<HTML>
<TITLE>
TigerVNC desktop
</TITLE>
<APPLET CODE="VncViewer.class" ARCHIVE="VncViewer.jar"
WIDTH="800" HEIGHT="632">
<PARAM NAME="PORT" VALUE="5901">
</APPLET>
<BR>
<A href="http://www.tigervnc.org/">TigerVNC site</A>
</HTML>
|