Last change
on this file since 161 was
153,
checked in by ecprice, 17 years ago
|
Improve the error infrastructure. Hopefully this works; I haven't
really tested it.
|
File size:
853 bytes
|
Rev | Line | |
---|
[113] | 1 | <html> |
---|
[139] | 2 | <head><title>$title</title> |
---|
| 3 | <link href="/static/favicon.ico" type="image/x-icon" rel="shortcut icon"> |
---|
| 4 | <style media="screen" type="text/css"> |
---|
| 5 | @import "static/css/all.css"; |
---|
| 6 | </style> |
---|
| 7 | <script type="text/javascript"> |
---|
| 8 | var helpWin = null; |
---|
| 9 | function closeWin(){ |
---|
| 10 | if (helpWin != null){ |
---|
| 11 | if(!helpWin.closed) |
---|
| 12 | helpWin.close(); |
---|
| 13 | } |
---|
| 14 | } |
---|
| 15 | |
---|
| 16 | function helppopup(name){ |
---|
| 17 | closeWin() |
---|
[153] | 18 | helpWin = window.open("help?simple=true&subject="+encodeURIComponent(name), "Help", |
---|
[139] | 19 | "status, height = 300, width = 400"); |
---|
| 20 | if (window.focus){helpWin.focus();} |
---|
| 21 | return false; |
---|
| 22 | } |
---|
| 23 | </script> |
---|
| 24 | </head> |
---|
[113] | 25 | <body> |
---|
[139] | 26 | #if not $varExists('simple') or not $simple |
---|
[113] | 27 | <p>[You are logged in as $user.username.]</p> |
---|
[139] | 28 | #end if |
---|
[113] | 29 | $body |
---|
[139] | 30 | #if not $varExists('simple') or not $simple |
---|
[113] | 31 | <hr /> |
---|
| 32 | Questions? Contact <a href="mailto:sipb-xen-dev@mit.edu">sipb-xen-dev@mit.edu</a>. |
---|
[139] | 33 | #end if |
---|
[113] | 34 | </body> |
---|
| 35 | </html> |
---|
Note: See
TracBrowser
for help on using the repository browser.