[205] | 1 | #from functions import functions |
---|
| 2 | #extends functions |
---|
| 3 | |
---|
| 4 | #def full_body |
---|
| 5 | <!DOCTYPE html |
---|
| 6 | PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" |
---|
| 7 | "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> |
---|
[113] | 8 | <html> |
---|
[139] | 9 | <head><title>$title</title> |
---|
[184] | 10 | <link href="static/favicon.ico" type="image/x-icon" rel="shortcut icon"> |
---|
| 11 | <link rel="stylesheet" href="static/style.css" type="text/css" /> |
---|
| 12 | <link rel="stylesheet" href="static/layout.css" type="text/css" media="screen" /> |
---|
[205] | 13 | <script type="text/javascript" src="static/prototype.js"></script> |
---|
[139] | 14 | <script type="text/javascript"> |
---|
| 15 | var helpWin = null; |
---|
| 16 | function closeWin(){ |
---|
| 17 | if (helpWin != null){ |
---|
| 18 | if(!helpWin.closed) |
---|
| 19 | helpWin.close(); |
---|
| 20 | } |
---|
| 21 | } |
---|
| 22 | |
---|
| 23 | function helppopup(name){ |
---|
| 24 | closeWin() |
---|
[153] | 25 | helpWin = window.open("help?simple=true&subject="+encodeURIComponent(name), "Help", |
---|
[139] | 26 | "status, height = 300, width = 400"); |
---|
| 27 | if (window.focus){helpWin.focus();} |
---|
| 28 | return false; |
---|
| 29 | } |
---|
| 30 | </script> |
---|
| 31 | </head> |
---|
[205] | 32 | <body id="body"> |
---|
| 33 | |
---|
[267] | 34 | #if False |
---|
[235] | 35 | <div> |
---|
| 36 | <p>We are in the process of modifying the service. Things likely will not work.</p> |
---|
| 37 | </div> |
---|
| 38 | #end if |
---|
| 39 | |
---|
[205] | 40 | <div id="err"> |
---|
| 41 | #if $varExists('error_text') |
---|
| 42 | <p>STDERR:</p><pre>$error_text</pre> |
---|
| 43 | #end if |
---|
| 44 | </div> |
---|
| 45 | |
---|
[139] | 46 | #if not $varExists('simple') or not $simple |
---|
[228] | 47 | <p>[You are logged in as $user.]</p> |
---|
[205] | 48 | |
---|
| 49 | <div class="navigation"> |
---|
[187] | 50 | <p><a href="list">List</a> |
---|
| 51 | #if $varExists('machine') |
---|
| 52 | <a href="info?machine_id=$machine.machine_id">Info</a> |
---|
| 53 | <a href="vnc?machine_id=$machine.machine_id">Console</a> |
---|
[139] | 54 | #end if |
---|
[187] | 55 | <a href="help">Help</a></p> |
---|
| 56 | #end if |
---|
[205] | 57 | </div> |
---|
| 58 | |
---|
| 59 | <div id="loadingnotice" class="loadingnotice">LOADING</div> |
---|
[207] | 60 | <div id="result" class="result"> |
---|
| 61 | #if $varExists('result') |
---|
| 62 | $result |
---|
| 63 | #end if |
---|
| 64 | </div> |
---|
[205] | 65 | |
---|
[113] | 66 | $body |
---|
[139] | 67 | #if not $varExists('simple') or not $simple |
---|
[113] | 68 | <hr /> |
---|
| 69 | Questions? Contact <a href="mailto:sipb-xen-dev@mit.edu">sipb-xen-dev@mit.edu</a>. |
---|
[139] | 70 | #end if |
---|
[113] | 71 | </body> |
---|
| 72 | </html> |
---|
[205] | 73 | #end def |
---|