- Timestamp:
- Oct 10, 2007, 10:06:16 AM (17 years ago)
- Location:
- trunk/web/templates
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/web/templates/skeleton.py
r183 r184 32 32 VFN=valueForName 33 33 currentTime=time.time 34 __CHEETAH_version__ = '2.0rc 7'35 __CHEETAH_versionTuple__ = (2, 0, 0, 'candidate', 7)36 __CHEETAH_genTime__ = 119202 4329.374473137 __CHEETAH_genTimestamp__ = 'Wed Oct 10 09:52:092007'34 __CHEETAH_version__ = '2.0rc8' 35 __CHEETAH_versionTuple__ = (2, 0, 0, 'candidate', 8) 36 __CHEETAH_genTime__ = 1192025116.0694621 37 __CHEETAH_genTimestamp__ = 'Wed Oct 10 10:05:16 2007' 38 38 __CHEETAH_src__ = 'skeleton.tmpl' 39 __CHEETAH_srcLastModified__ = 'Wed Oct 10 09:51:292007'39 __CHEETAH_srcLastModified__ = 'Wed Oct 10 10:04:55 2007' 40 40 __CHEETAH_docstring__ = 'Autogenerated by CHEETAH: The Python-Powered Template Engine' 41 41 … … 84 84 ## START - generated method body 85 85 86 write('<html>\n<head><title>') 86 write('''<html> 87 <head><title>''') 87 88 _v = VFFSL(SL,"title",True) # '$title' on line 2, col 14 88 89 if _v is not None: write(_filter(_v, rawExpr='$title')) # from line 2, col 14. 89 90 write('''</title> 90 <link href=" /static/favicon.ico" type="image/x-icon" rel="shortcut icon">91 <link rel="stylesheet" href=" /static/style.css" type="text/css" />92 <link rel="stylesheet" href=" /static/layout.css" type="text/css" media="screen" />91 <link href="static/favicon.ico" type="image/x-icon" rel="shortcut icon"> 92 <link rel="stylesheet" href="static/style.css" type="text/css" /> 93 <link rel="stylesheet" href="static/layout.css" type="text/css" media="screen" /> 93 94 <script type="text/javascript"> 94 95 var helpWin = null; 95 96 function closeWin(){ 96 97 98 99 97 \tif (helpWin != null){ 98 \t\tif(!helpWin.closed) 99 \t\t\thelpWin.close(); 100 \t} 100 101 } 101 102 … … 112 113 ''') 113 114 if not VFFSL(SL,"varExists",False)('simple') or not VFFSL(SL,"simple",True): # generated from line 25, col 1 114 write(' <p>[You are logged in as')115 write('''<p>[You are logged in as ''') 115 116 _v = VFFSL(SL,"user.username",True) # '$user.username' on line 26, col 26 116 117 if _v is not None: write(_filter(_v, rawExpr='$user.username')) # from line 26, col 26. 117 write('.]</p>\n') 118 write('''.]</p> 119 ''') 118 120 _v = VFFSL(SL,"body",True) # '$body' on line 28, col 1 119 121 if _v is not None: write(_filter(_v, rawExpr='$body')) # from line 28, col 1. 120 write('\n') 122 write(''' 123 ''') 121 124 if not VFFSL(SL,"varExists",False)('simple') or not VFFSL(SL,"simple",True): # generated from line 29, col 1 122 write('<hr />\nQuestions? Contact <a href="mailto:sipb-xen-dev@mit.edu">sipb-xen-dev@mit.edu</a>.\n') 123 write('</body>\n</html>\n') 125 write('''<hr /> 126 Questions? Contact <a href="mailto:sipb-xen-dev@mit.edu">sipb-xen-dev@mit.edu</a>. 127 ''') 128 write('''</body> 129 </html> 130 ''') 124 131 125 132 ######################################## -
trunk/web/templates/skeleton.tmpl
r182 r184 1 1 <html> 2 2 <head><title>$title</title> 3 <link href=" /static/favicon.ico" type="image/x-icon" rel="shortcut icon">4 <link rel="stylesheet" href=" /static/style.css" type="text/css" />5 <link rel="stylesheet" href=" /static/layout.css" type="text/css" media="screen" />3 <link href="static/favicon.ico" type="image/x-icon" rel="shortcut icon"> 4 <link rel="stylesheet" href="static/style.css" type="text/css" /> 5 <link rel="stylesheet" href="static/layout.css" type="text/css" media="screen" /> 6 6 <script type="text/javascript"> 7 7 var helpWin = null;
Note: See TracChangeset
for help on using the changeset viewer.