752f7843b1033c7e6e554eb979ac452279e6d136
[invirt/packages/invirt-web.git] / templates / vnc.tmpl
1 #from skeleton import skeleton
2 #extends skeleton
3
4 #def title
5 Console to $machine.name
6 #end def
7
8 #def body
9 <h1>Console</h1>
10 <p>Here is a console to ${machine.name}.</p>
11 <APPLET CODE="VncViewer.class" ARCHIVE="../VncViewer.jar"
12         WIDTH="800" HEIGHT="632">
13 <PARAM NAME="PORT" VALUE="10003">
14 <PARAM NAME="HOST" VALUE="$hostname">
15 <PARAM NAME="VMNAME" VALUE="$machine.name">
16 <PARAM NAME="AUTHTOKEN" VALUE="$authtoken">
17 <PARAM NAME="SocketFactory" VALUE="VNCProxyConnectSocketFactory">
18 </APPLET>
19 <!-- 
20 java VncViewer HOST black-mesa PORT 10003 VMNAME tabbott_test AUTHTOKEN quentin SocketFactory VNCProxyConnectSocketFactory
21 -->
22 #end def