comparison src/web/viewer-applet-example.html @ 0:4689cc86d6cb

create TreeViewer2 Repository
author Yu Taninari <you@cr.ie.u-ryukyu.ac.jp>
date Tue, 03 Jul 2012 13:20:49 +0900
parents
children 472a9bcacb21
comparison
equal deleted inserted replaced
-1:000000000000 0:4689cc86d6cb
1 <!-- Copyright (C) 2010, 2011, 2012 GlavSoft LLC. -->
2 <!-- All rights reserved. -->
3 <!-- -->
4 <!-- DO NOT USE OR REDISTRIBUTE THE CODE, UNLESS YOU HAVE OBTAINED A LICENSE. -->
5 <!-- -->
6
7 <html>
8 <title>TightVNC desktop</title>
9 <body>
10 <applet archive="${archive_name}.jar"
11 code="com.glavsoft.viewer.Viewer"
12 width="1" height="1">
13 <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 -->
15 <!--param name="Password" value="" /--> <!-- Password to the server (not recommended to use this parameter here) -->
16 <param name="OpenNewWindow" value="yes" /> <!-- yes/true or no/false. Default: yes/true -->
17 <param name="ShowControls" value="yes" /> <!-- yes/true or no/false. Default: yes/true -->
18 <param name="ViewOnly" value="no" /> <!-- yes/true or no/false. Default: no/false -->
19 <param name="AllowClipboardTransfer" value="yes" /> <!-- yes/true or no/false. Default: yes/true -->
20 <param name="RemoteCharset" value="standard" /> <!-- Charset encoding is used on remote system. Use this option to specify character encoding will be used for encoding clipboard text content to. Default value (when parameter is empty): local system default character encoding. Set the value to 'standard' for using 'Latin-1' charset which is only specified by rfb standard for clipboard transfers. -->
21
22 <param name="ShareDesktop" value="yes" /> <!-- yes/true or no/false. Default: yes/true -->
23 <param name="AllowCopyRect" value="yes" /> <!-- yes/true or no/false. Default: yes/true -->
24 <param name="Encoding" value="Tight" /> <!-- Possible values: "Tight", "Hextile", "ZRLE", and "Raw". Default: Tight -->
25 <param name="CompressionLevel" value="" /> <!-- 1-9 or empty. Empty means server default -->
26 <param name="JpegImageQuality" value="" /> <!-- 1-9, Lossless or empty. When param is set to "Lossless" no jpeg compression used. Empty means server default -->
27 <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"-->
29
30 <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% -->
32 </applet>
33 <br />
34 <a href="http://www.tightvnc.com/">TightVNC Web Site</a>
35 </body>
36 </html>