comparison src/web/viewer-applet-example.html @ 57:17b702648079

version2.7.2 original version.
author Taninari YU <you@cr.ie.u-ryukyu.ac.jp>
date Sun, 15 Dec 2013 18:04:03 +0900
parents 4689cc86d6cb
children
comparison
equal deleted inserted replaced
0:4689cc86d6cb 57:17b702648079
1 <!-- Copyright (C) 2010, 2011, 2012 GlavSoft LLC. --> 1 <!-- Copyright (C) 2010, 2011, 2012, 2013 GlavSoft LLC. -->
2 <!-- All rights reserved. --> 2 <!-- All rights reserved. -->
3 <!-- --> 3 <!-- -->
4 <!-- DO NOT USE OR REDISTRIBUTE THE CODE, UNLESS YOU HAVE OBTAINED A LICENSE. --> 4 <!-- ------------------------------------------------------------------------- -->
5 <!-- This file is part of the TightVNC software. Please visit our Web site: -->
6 <!-- -->
7 <!-- http://www.tightvnc.com/ -->
8 <!-- -->
9 <!-- This program is free software; you can redistribute it and/or modify -->
10 <!-- it under the terms of the GNU General Public License as published by -->
11 <!-- the Free Software Foundation; either version 2 of the License, or -->
12 <!-- (at your option) any later version. -->
13 <!-- -->
14 <!-- This program is distributed in the hope that it will be useful, -->
15 <!-- but WITHOUT ANY WARRANTY; without even the implied warranty of -->
16 <!-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -->
17 <!-- GNU General Public License for more details. -->
18 <!-- -->
19 <!-- You should have received a copy of the GNU General Public License along -->
20 <!-- with this program; if not, write to the Free Software Foundation, Inc., -->
21 <!-- 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. -->
22 <!-- ------------------------------------------------------------------------- -->
5 <!-- --> 23 <!-- -->
6 24
7 <html> 25 <html>
8 <title>TightVNC desktop</title> 26 <title>TightVNC desktop</title>
9 <body> 27 <body>
10 <applet archive="${archive_name}.jar" 28 <applet archive="tightvnc-jviewer.jar"
11 code="com.glavsoft.viewer.Viewer" 29 code="com.glavsoft.viewer.Viewer"
12 width="1" height="1"> 30 width="1" height="1">
13 <param name="Host" value="localhost" /> <!-- Host to connect. Default: the host from which the applet was loaded. --> 31 <param name="Host" value="localhost" /> <!-- Host to connect. Default: the host from which the applet was loaded. -->
14 <param name="Port" value="5900" /> <!-- Port number to connect. Default: 5900 --> 32 <param name="Port" value="5900" /> <!-- Port number to connect. Default: 5900 -->
15 <!--param name="Password" value="" /--> <!-- Password to the server (not recommended to use this parameter here) --> 33 <!--param name="Password" value="" /--> <!-- Password to the server (not recommended to use this parameter here) -->
27 <param name="LocalPointer" value="On" /> <!-- Possible values: on/yes/true (draw pointer locally), off/no/false (let server draw pointer), hide). Default: "On"--> 45 <param name="LocalPointer" value="On" /> <!-- Possible values: on/yes/true (draw pointer locally), off/no/false (let server draw pointer), hide). Default: "On"-->
28 <param name="ConvertToASCII" value="no" /> <!-- Whether to convert keyboard input to ASCII ignoring locale. Possible values: yes/true, no/false). Default: "No"--> 46 <param name="ConvertToASCII" value="no" /> <!-- Whether to convert keyboard input to ASCII ignoring locale. Possible values: yes/true, no/false). Default: "No"-->
29 47
30 <param name="colorDepth" value="" /> <!-- Reserved for future. Possible values: 6, 8, 16, 24, 32 (equals to 24). Only 24/32 is supported now --> 48 <param name="colorDepth" value="" /> <!-- Reserved for future. Possible values: 6, 8, 16, 24, 32 (equals to 24). Only 24/32 is supported now -->
31 <param name="ScalingFactor" value="100" /> <!-- Scale local representation of the remote desktop on startup. Default is 100 means 100% --> 49 <param name="ScalingFactor" value="100" /> <!-- Scale local representation of the remote desktop on startup. Default is 100 means 100% -->
32 </applet> 50 <!--param name="AllowAppletInteractiveConnections" value="no" /--> <!-- Allow applet interactively connect to other hosts then in HostName param or hostbase. Possible values: yes/true, no/false. Default: false. -->
51 <!-- SSH tunneling options -->
52 <param name="sshHost" value="" /><!-- SSH host name. -->
53 <param name="sshUser" value="" /><!-- SSH port number. When empty, standard SSH port number (22) is used -->
54 <param name="sshPort" value="" /><!-- SSH user name. -->
55
56 </applet>
33 <br /> 57 <br />
34 <a href="http://www.tightvnc.com/">TightVNC Web Site</a> 58 <a href="http://www.tightvnc.com/">TightVNC Web Site</a>
35 </body> 59 </body>
36 </html> 60 </html>