2
# This program is free software; you can redistribute it and/or modify
3
# it under the terms of the GNU General Public License as published by
4
# the Free Software Foundation; either version 2 of the License, or
5
# (at your option) any later version.
7
# This program is distributed in the hope that it will be useful,
8
# but WITHOUT ANY WARRANTY; without even the implied warranty of
9
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10
# GNU General Public License for more details.
12
# You should have received a copy of the GNU General Public License
13
# along with this program; if not, write to the Free Software
14
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
16
"""Support for Zope Page Templates using the simpletal library."""
1
"TurboGears support for Zope Page Templates"
20
6
import pkg_resources
24
8
from simpletal import simpleTAL, simpleTALES
26
logging.getLogger("simpleTAL").setLevel(logging.INFO)
27
logging.getLogger("simpleTALES").setLevel(logging.INFO)
10
log = logging.getLogger("turbogears.zptsupport")
34
15
tinstance = _zpt_cache.get(tfile)
35
16
stat = os.stat(tfile)
36
17
if tinstance is None or tinstance.stat != stat:
37
text = open(tfile).read()
38
text = re.sub(r'\s*\n\s*', '\n', text)
39
text = re.sub(r'[ \t]+', ' ', text)
40
18
tinstance = _zpt_cache[tfile] = TemplateWrapper(
41
simpleTAL.compileXMLTemplate(text), tfile, stat)
19
simpleTAL.compileXMLTemplate(open(tfile)), tfile, stat)
57
35
self.template.expandInline(context, s)
58
36
return s.getvalue()
60
def expand_into(self, f, **info):
61
context = simpleTALES.Context(allowPythonPath=1)
62
for k, v in info.iteritems():
63
context.addGlobal(k, v)
64
self.template.expand(context, f, 'utf-8')
68
40
return self.template.macros
71
def load_template(classname):
72
"""Searches for a template along the Python path.
74
Template files must end in ".pt" and be in legitimate packages.
75
Templates are automatically checked for changes and reloaded as
78
divider = classname.rfind(".")
80
package = classname[0:divider]
81
basename = classname[divider+1:]
83
raise ValueError("All templates must be in a package")
85
tfile = pkg_resources.resource_filename(
86
package, "%s.%s" % (basename, "pt"))
43
class TurboZpt(object):
46
def __init__(self, extra_vars_func=None):
47
self.get_extra_vars = extra_vars_func
49
def load_template(self, classname, loadingSite=False):
50
"""Searches for a template along the Python path.
52
Template files must end in ".pt" and be in legitimate packages.
53
Templates are automatically checked for changes and reloaded as
56
divider = classname.rfind(".")
58
package = classname[0:divider]
59
basename = classname[divider+1:]
61
raise ValueError, "All templates must be in a package"
63
tfile = pkg_resources.resource_filename(
64
package, "%s.%s" % (basename, self.extension))
67
def render(self, info, format="html", fragment=False, template=None):
68
"""Renders data in the desired format.
70
@param info: the data / context itself
73
@type format: "string"
74
@para template: name of the template to use
75
@type template: string
77
tinstance = self.load_template(template)
78
log.debug("Applying template %s" % (tinstance.filename))
80
if self.get_extra_vars:
81
data.update(self.get_extra_vars())
83
return tinstance.expand(**data).encode('utf-8')