1
"TurboGears support for Zope Page Templates"
8
from simpletal import simpleTAL, simpleTALES
10
log = logging.getLogger("turbogears.zptsupport")
15
tinstance = _zpt_cache.get(tfile)
17
if tinstance is None or tinstance.stat != stat:
18
tinstance = _zpt_cache[tfile] = TemplateWrapper(
19
simpleTAL.compileXMLTemplate(open(tfile)), tfile, stat)
23
class TemplateWrapper(object):
25
def __init__(self, template, filename, stat):
26
self.template = template
27
self.filename = filename
30
def expand(self, **info):
31
context = simpleTALES.Context(allowPythonPath=1)
32
for k, v in info.iteritems():
33
context.addGlobal(k, v)
34
s = StringIO.StringIO()
35
self.template.expandInline(context, s)
38
def expand_(self, f, **info):
39
context = simpleTALES.Context(allowPythonPath=1)
40
for k, v in info.iteritems():
41
context.addGlobal(k, v)
42
self.template.expand(context, f, 'utf-8')
46
return self.template.macros
49
class TurboZpt(object):
52
def __init__(self, extra_vars_func=None):
53
self.get_extra_vars = extra_vars_func
55
def load_template(self, classname, loadingSite=False):
56
"""Searches for a template along the Python path.
58
Template files must end in ".pt" and be in legitimate packages.
59
Templates are automatically checked for changes and reloaded as
62
divider = classname.rfind(".")
64
package = classname[0:divider]
65
basename = classname[divider+1:]
67
raise ValueError, "All templates must be in a package"
69
tfile = pkg_resources.resource_filename(
70
package, "%s.%s" % (basename, self.extension))