~loggerhead-team/loggerhead/trunk-rich

« back to all changes in this revision

Viewing changes to turbozpt/zptsupport.py

bah css mumble

Show diffs side-by-side

added added

removed removed

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