source: trunk/web/templates/skeleton.py @ 183

Last change on this file since 183 was 183, checked in by ecprice, 17 years ago

Not clear that skeleton.py should be in the repository, though.

File size: 5.6 KB
Line 
1#!/usr/bin/env python
2
3
4
5
6##################################################
7## DEPENDENCIES
8import sys
9import os
10import os.path
11from os.path import getmtime, exists
12import time
13import types
14import __builtin__
15from Cheetah.Version import MinCompatibleVersion as RequiredCheetahVersion
16from Cheetah.Version import MinCompatibleVersionTuple as RequiredCheetahVersionTuple
17from Cheetah.Template import Template
18from Cheetah.DummyTransaction import DummyTransaction
19from Cheetah.NameMapper import NotFound, valueForName, valueFromSearchList, valueFromFrameOrSearchList
20from Cheetah.CacheRegion import CacheRegion
21import Cheetah.Filters as Filters
22import Cheetah.ErrorCatchers as ErrorCatchers
23
24##################################################
25## MODULE CONSTANTS
26try:
27    True, False
28except NameError:
29    True, False = (1==1), (1==0)
30VFFSL=valueFromFrameOrSearchList
31VFSL=valueFromSearchList
32VFN=valueForName
33currentTime=time.time
34__CHEETAH_version__ = '2.0rc7'
35__CHEETAH_versionTuple__ = (2, 0, 0, 'candidate', 7)
36__CHEETAH_genTime__ = 1192024329.3744731
37__CHEETAH_genTimestamp__ = 'Wed Oct 10 09:52:09 2007'
38__CHEETAH_src__ = 'skeleton.tmpl'
39__CHEETAH_srcLastModified__ = 'Wed Oct 10 09:51:29 2007'
40__CHEETAH_docstring__ = 'Autogenerated by CHEETAH: The Python-Powered Template Engine'
41
42if __CHEETAH_versionTuple__ < RequiredCheetahVersionTuple:
43    raise AssertionError(
44      'This template was compiled with Cheetah version'
45      ' %s. Templates compiled before version %s must be recompiled.'%(
46         __CHEETAH_version__, RequiredCheetahVersion))
47
48##################################################
49## CLASSES
50
51class skeleton(Template):
52
53    ##################################################
54    ## CHEETAH GENERATED METHODS
55
56
57    def __init__(self, *args, **KWs):
58
59        Template.__init__(self, *args, **KWs)
60        if not self._CHEETAH__instanceInitialized:
61            cheetahKWArgs = {}
62            allowedKWs = 'searchList namespaces filter filtersLib errorCatcher'.split()
63            for k,v in KWs.items():
64                if k in allowedKWs: cheetahKWArgs[k] = v
65            self._initCheetahInstance(**cheetahKWArgs)
66       
67
68    def respond(self, trans=None):
69
70
71
72        ## CHEETAH: main method generated for this template
73        if (not trans and not self._CHEETAH__isBuffering and not callable(self.transaction)):
74            trans = self.transaction # is None unless self.awake() was called
75        if not trans:
76            trans = DummyTransaction()
77            _dummyTrans = True
78        else: _dummyTrans = False
79        write = trans.response().write
80        SL = self._CHEETAH__searchList
81        _filter = self._CHEETAH__currentFilter
82       
83        ########################################
84        ## START - generated method body
85       
86        write('<html>\n<head><title>')
87        _v = VFFSL(SL,"title",True) # '$title' on line 2, col 14
88        if _v is not None: write(_filter(_v, rawExpr='$title')) # from line 2, col 14.
89        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" />
93  <script type="text/javascript">
94var helpWin = null;
95function closeWin(){
96        if (helpWin != null){
97                if(!helpWin.closed)
98                        helpWin.close();
99        }
100}
101
102function helppopup(name){
103   closeWin()
104   helpWin = window.open("help?simple=true&subject="+encodeURIComponent(name), "Help",
105"status, height = 300, width = 400");
106   if (window.focus){helpWin.focus();}
107   return false;
108}
109</script>
110</head>
111<body>
112''')
113        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            _v = VFFSL(SL,"user.username",True) # '$user.username' on line 26, col 26
116            if _v is not None: write(_filter(_v, rawExpr='$user.username')) # from line 26, col 26.
117            write('.]</p>\n')
118        _v = VFFSL(SL,"body",True) # '$body' on line 28, col 1
119        if _v is not None: write(_filter(_v, rawExpr='$body')) # from line 28, col 1.
120        write('\n')
121        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')
124       
125        ########################################
126        ## END - generated method body
127       
128        return _dummyTrans and trans.response().getvalue() or ""
129       
130    ##################################################
131    ## CHEETAH GENERATED ATTRIBUTES
132
133
134    _CHEETAH__instanceInitialized = False
135
136    _CHEETAH_version = __CHEETAH_version__
137
138    _CHEETAH_versionTuple = __CHEETAH_versionTuple__
139
140    _CHEETAH_genTime = __CHEETAH_genTime__
141
142    _CHEETAH_genTimestamp = __CHEETAH_genTimestamp__
143
144    _CHEETAH_src = __CHEETAH_src__
145
146    _CHEETAH_srcLastModified = __CHEETAH_srcLastModified__
147
148    _mainCheetahMethod_for_skeleton= 'respond'
149
150## END CLASS DEFINITION
151
152if not hasattr(skeleton, '_initCheetahAttributes'):
153    templateAPIClass = getattr(skeleton, '_CHEETAH_templateClass', Template)
154    templateAPIClass._addCheetahPlumbingCodeToClass(skeleton)
155
156
157# CHEETAH was developed by Tavis Rudd and Mike Orr
158# with code, advice and input from many other volunteers.
159# For more information visit http://www.CheetahTemplate.org/
160
161##################################################
162## if run from command line:
163if __name__ == '__main__':
164    from Cheetah.TemplateCmdLineIface import CmdLineIface
165    CmdLineIface(templateObj=skeleton()).run()
166
167
Note: See TracBrowser for help on using the repository browser.