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

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

Initial import of web interface.

File size: 638 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="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<!--
20java VncViewer HOST black-mesa PORT 10003 VMNAME tabbott_test AUTHTOKEN quentin SocketFactory VNCProxyConnectSocketFactory
21-->
22#end def
Note: See TracBrowser for help on using the repository browser.