move framebuffer tip to /help page
authorGreg Price <price@mit.edu>
Sat, 29 Mar 2008 15:54:58 +0000 (11:54 -0400)
committerGreg Price <price@mit.edu>
Sat, 29 Mar 2008 15:54:58 +0000 (11:54 -0400)
svn path=/trunk/packages/sipb-xen-www/; revision=309

code/main.py
code/templates/vnc.tmpl

index a3c84ee..31465f6 100755 (executable)
@@ -445,7 +445,13 @@ group.""",
                         quotas="""
 Quotas are determined on a per-locker basis.  Each quota may have a
 maximum of 512 megabytes of active ram, 50 gigabytes of disk, and 4
-active machines."""
+active machines.""",
+                        console="""
+<strong>Framebuffer:</strong> At a Linux boot prompt in your VM, try
+setting <tt>fb=false</tt> to disable the framebuffer.  If you don't,
+your machine will run just fine, but the applet's display of the
+console will suffer artifacts.
+"""
                    )
     
     if not subjects:
index a0b8b01..7ae0607 100644 (file)
@@ -6,13 +6,13 @@ Console to $machine.name
 #end def
 
 #def body
-<h1>Console</h1>
+<h1>Console to ${machine.name}</h1>
 #if not $on
 <p> Your machine appears to be off.</p>
 #else if not $has_vnc
 <p> Your machine appears to not be accepting VNC connections. Perhaps you have a ParaVM machine?</p>
 #end if
-<p>Here is a console to ${machine.name}.</p>
+<p>See <a href="help?subject=console">tips</a> about framebuffer and other issues.</p>
 <APPLET CODE="VncViewer.class" ARCHIVE="https://$hostname:446/static/VncViewer.jar"
         WIDTH="100%" HEIGHT="1000">
 <PARAM NAME="PASSWORD" VALUE="moocow">
@@ -22,8 +22,4 @@ Console to $machine.name
 <PARAM NAME="AUTHTOKEN" VALUE="$authtoken">
 <PARAM NAME="SocketFactory" VALUE="VNCProxyConnectSocketFactory">
 </APPLET>
-<p><strong>Tip:</strong> At a Linux boot prompt, try setting <tt>fb=false</tt> to disable the framebuffer.  If you don't, your machine will run just fine, but this applet's display of the console will suffer artifacts.</p>
-#*
-java VncViewer HOST black-mesa PORT 10003 VMNAME tabbott_test AUTHTOKEN quentin SocketFactory VNCProxyConnectSocketFactory
-*#
 #end def