~loggerhead-team/loggerhead/trunk-rich

« back to all changes in this revision

Viewing changes to turbosimpletal/zptsupport.py

this doesn't seem relevant any more

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
2
 
 
3
import StringIO
3
4
import logging
4
5
import os
5
6
import pkg_resources
6
 
import StringIO
7
7
 
8
8
from simpletal import simpleTAL, simpleTALES
9
9
 
10
 
logging.getLogger("simpleTAL").setLevel(logging.INFO)
11
 
logging.getLogger("simpleTALES").setLevel(logging.INFO)
 
10
log = logging.getLogger("turbogears.zptsupport")
12
11
 
13
12
 
14
13
_zpt_cache = {}
36
35
        self.template.expandInline(context, s)
37
36
        return s.getvalue()
38
37
 
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
38
    @property
46
39
    def macros(self):
47
40
        return self.template.macros
48
41
 
49
42
 
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)
 
43
class TurboZpt(object):
 
44
    extension = "pt"
 
45
 
 
46
    def __init__(self, extra_vars_func=None):
 
47
        self.get_extra_vars = extra_vars_func
 
48
 
 
49
    def load_template(self, classname, loadingSite=False):
 
50
        """Searches for a template along the Python path.
 
51
 
 
52
        Template files must end in ".pt" and be in legitimate packages.
 
53
        Templates are automatically checked for changes and reloaded as
 
54
        neccessary.
 
55
        """
 
56
        divider = classname.rfind(".")
 
57
        if divider > -1:
 
58
            package = classname[0:divider]
 
59
            basename = classname[divider+1:]
 
60
        else:
 
61
            raise ValueError, "All templates must be in a package"
 
62
 
 
63
        tfile = pkg_resources.resource_filename(
 
64
            package, "%s.%s" % (basename, self.extension))
 
65
        return zpt(tfile)
 
66
 
 
67
    def render(self, info, format="html", fragment=False, template=None):
 
68
        """Renders data in the desired format.
 
69
 
 
70
        @param info: the data / context itself
 
71
        @type info: dict
 
72
        @para format: "html"
 
73
        @type format: "string"
 
74
        @para template: name of the template to use
 
75
        @type template: string
 
76
        """
 
77
        tinstance = self.load_template(template)
 
78
        log.debug("Applying template %s" % (tinstance.filename))
 
79
        data = dict()
 
80
        if self.get_extra_vars:
 
81
            data.update(self.get_extra_vars())
 
82
        data.update(info)
 
83
        return tinstance.expand(**data).encode('utf-8')