source: trunk/web/templates/vnc.tmpl @ 133

Last change on this file since 133 was 133, checked in by ecprice, 17 years ago

Update

File size: 677 bytes
Line 
1#from skeleton import skeleton
2#extends skeleton
3
4#def title
5Console 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="PASSWORD" VALUE="moocow">
14<PARAM NAME="PORT" VALUE="10003">
15<PARAM NAME="HOST" VALUE="$hostname">
16<PARAM NAME="VMNAME" VALUE="$machine.name">
17<PARAM NAME="AUTHTOKEN" VALUE="$authtoken">
18<PARAM NAME="SocketFactory" VALUE="VNCProxyConnectSocketFactory">
19</APPLET>
20<!--
21java VncViewer HOST black-mesa PORT 10003 VMNAME tabbott_test AUTHTOKEN quentin SocketFactory VNCProxyConnectSocketFactory
22-->
23#end def
Note: See TracBrowser for help on using the repository browser.