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."""
24
from simpletal import simpleTAL, simpleTALES
30
tinstance = _zpt_cache.get(tfile)
32
if tinstance is None or tinstance.stat != stat:
33
text = open(tfile).read()
34
text = re.sub(r'\s*\n\s*', '\n', text)
35
text = re.sub(r'[ \t]+', ' ', text)
36
tinstance = _zpt_cache[tfile] = TemplateWrapper(
37
simpleTAL.compileXMLTemplate(text), tfile, stat)
41
class TemplateWrapper(object):
43
def __init__(self, template, filename, stat):
44
self.template = template
45
self.filename = filename
48
def expand(self, **info):
49
context = simpleTALES.Context(allowPythonPath=1)
50
for k, v in info.iteritems():
51
context.addGlobal(k, v)
52
s = StringIO.StringIO()
53
self.template.expandInline(context, s)
56
def expand_into(self, f, **info):
57
context = simpleTALES.Context(allowPythonPath=1)
58
for k, v in info.iteritems():
59
context.addGlobal(k, v)
60
self.template.expand(context, f, 'utf-8')
64
return self.template.macros
67
def load_template(classname):
68
"""Searches for a template along the Python path.
70
Template files must end in ".pt" and be in legitimate packages.
71
Templates are automatically checked for changes and reloaded as
74
divider = classname.rfind(".")
76
package = classname[0:divider]
77
basename = classname[divider+1:]
79
raise ValueError("All templates must be in a package")
81
tfile = pkg_resources.resource_filename(
82
package, "%s.%s" % (basename, "pt"))