1 <%page expression_filter="h"/>
3 PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
4 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
6 <head><title>${self.title()} — XVM</title>
7 <link href="static/favicon.ico" type="image/x-icon" rel="shortcut icon">
8 <link rel="stylesheet" href="static/style.css" type="text/css" />
9 <link rel="stylesheet" href="static/layout.css" type="text/css" media="screen" />
10 <script type="text/javascript" src="static/prototype.js"></script>
11 <script type="text/javascript">
20 function helppopup(name){
22 helpWin = window.open("help?simple=true&subject="+encodeURIComponent(name), "Help",
23 "status, height = 300, width = 400");
24 if (window.focus){helpWin.focus();}
30 % if hasattr(self.attr, 'pageclass'):
31 class="${self.attr.pageclass}"
37 <p>We are in the process of modifying the service. Things likely will not work.</p>
41 % if error_text is not UNDEFINED:
43 <p>STDERR:</p><pre>${error_text}</pre>
49 <p class="loggedin">Welcome, <span class="name">${user}</span>.</p>
52 <ul class="navigation">
53 <li><a href="list">List</a></li>
55 <li><a href="info?machine_id=${machine.machine_id}">Info</a></li>
56 <li><a href="vnc?machine_id=${machine.machine_id}">Console</a></li>
58 <li><a href="help">Help</a></li>
63 <div id="result" class="result">
70 <h1>${self.title()} — XVM</h1>
75 Questions? Contact <a href="mailto:xvm@mit.edu">xvm@mit.edu</a>.