source: package_tags/sipb-xen-www/3.1/code/templates/skeleton.tmpl

Last change on this file was 267, checked in by quentin, 16 years ago

Fixing VNC client height and turning off "service is being changed" message

File size: 1.7 KB
Line 
1#from functions import functions
2#extends functions
3
4#def full_body
5<!DOCTYPE html
6PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
7"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
8<html>
9<head><title>$title</title>
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" />
13  <script type="text/javascript" src="static/prototype.js"></script>
14  <script type="text/javascript">
15var helpWin = null;
16function closeWin(){
17        if (helpWin != null){
18                if(!helpWin.closed)
19                        helpWin.close();
20        }
21}
22
23function helppopup(name){
24   closeWin()
25   helpWin = window.open("help?simple=true&subject="+encodeURIComponent(name), "Help",
26"status, height = 300, width = 400");
27   if (window.focus){helpWin.focus();}
28   return false;
29}
30</script>
31</head>
32<body id="body">
33
34#if False
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
40<div id="err">
41#if $varExists('error_text')
42<p>STDERR:</p><pre>$error_text</pre>
43#end if
44</div>
45
46#if not $varExists('simple') or not $simple
47<p>[You are logged in as $user.]</p>
48
49<div class="navigation">
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>
54#end if
55<a href="help">Help</a></p>
56#end if
57</div>
58
59<div id="loadingnotice" class="loadingnotice">LOADING</div>
60<div id="result" class="result">
61#if $varExists('result')
62$result
63#end if
64</div>
65
66$body
67#if not $varExists('simple') or not $simple
68<hr />
69Questions? Contact <a href="mailto:sipb-xen-dev@mit.edu">sipb-xen-dev@mit.edu</a>.
70#end if
71</body>
72</html>
73#end def
Note: See TracBrowser for help on using the repository browser.