1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
"TurboGears support for Zope Page Templates"
import StringIO
import os
import pkg_resources
from simpletal import simpleTAL, simpleTALES
_zpt_cache = {}
def zpt(tfile):
tinstance = _zpt_cache.get(tfile)
stat = os.stat(tfile)
if tinstance is None or tinstance.stat != stat:
tinstance = _zpt_cache[tfile] = TemplateWrapper(
simpleTAL.compileXMLTemplate(open(tfile)), tfile, stat)
return tinstance
class TemplateWrapper(object):
def __init__(self, template, filename, stat):
self.template = template
self.filename = filename
self.stat = stat
def expand(self, **info):
context = simpleTALES.Context(allowPythonPath=1)
for k, v in info.iteritems():
context.addGlobal(k, v)
s = StringIO.StringIO()
self.template.expandInline(context, s)
return s.getvalue()
def expand_(self, f, **info):
context = simpleTALES.Context(allowPythonPath=1)
for k, v in info.iteritems():
context.addGlobal(k, v)
self.template.expand(context, f, 'utf-8')
@property
def macros(self):
return self.template.macros
class TurboZpt(object):
extension = "pt"
def __init__(self, extra_vars_func=None):
self.get_extra_vars = extra_vars_func
def load_template(self, classname, loadingSite=False):
"""Searches for a template along the Python path.
Template files must end in ".pt" and be in legitimate packages.
Templates are automatically checked for changes and reloaded as
neccessary.
"""
divider = classname.rfind(".")
if divider > -1:
package = classname[0:divider]
basename = classname[divider+1:]
else:
raise ValueError, "All templates must be in a package"
tfile = pkg_resources.resource_filename(
package, "%s.%s" % (basename, self.extension))
return zpt(tfile)
|