annotate html/index.html @ 145:8bdbed4c4505

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