comparison html/index.html @ 12:ac847013174d

add html and Makefile
author e085711
date Sat, 16 Apr 2011 20:43:07 +0900
parents
children
comparison
equal deleted inserted replaced
11:2869ca1579ae 12:ac847013174d
1 <!--
2 index.html - an example HTML page for TightVNC Java viewer applet, to be
3 used with a standalone Web server running on the same machine where the
4 TightVNC server is running. Before using this example, please MAKE SURE
5 to check the following:
6
7 * the value of the PORT parameter should be set correctly (normally, the
8 port number is 5900 + display number);
9
10 * the CODE and ARCHIVE attributes of the <APPLET> tag should point to
11 the correct directory (this example assumes that this page is in the
12 same directory with .jar and .class files);
13
14 * the WIDTH and HEIGHT attributes of the <APPLET> tag correspond to the
15 actual desktop size on the server (height should be increased to leave
16 enough space for the button panel).
17 -->
18
19 <HTML>
20 <TITLE>
21 TightVNC desktop
22 </TITLE>
23 <APPLET CODE="VncViewer.class" ARCHIVE="VncViewer.jar"
24 WIDTH="800" HEIGHT="632">
25 <PARAM NAME="PORT" VALUE="5901">
26 <PARAM NAME="HOST" VALUE="hades.cr.ie.u-ryukyu.ac.jp">
27 </APPLET>
28 <BR>
29 <A href="http://www.tightvnc.com/">TightVNC site</A>
30 </HTML>