~loggerhead-team/loggerhead/trunk-rich

« back to all changes in this revision

Viewing changes to turbozpt/zptsupport.py

add a lightly hacked copy of turbozpt (it's not much code)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#
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.
6
 
#
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.
11
 
#
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
15
 
#
16
 
"""Support for Zope Page Templates using the simpletal library."""
 
1
"TurboGears support for Zope Page Templates"
 
2
 
 
3
import sys, os
 
4
 
 
5
from template import PageTemplate
 
6
import pkg_resources
17
7
 
18
8
import logging
19
 
import os
20
 
import pkg_resources
21
 
import StringIO
22
 
 
23
 
from simpletal import simpleTAL, simpleTALES
24
 
 
25
 
logging.getLogger("simpleTAL").setLevel(logging.INFO)
26
 
logging.getLogger("simpleTALES").setLevel(logging.INFO)
27
 
 
28
 
 
29
 
_zpt_cache = {}
30
 
def zpt(tfile):
31
 
    tinstance = _zpt_cache.get(tfile)
32
 
    stat = os.stat(tfile)
33
 
    if tinstance is None or tinstance.stat != stat:
34
 
        tinstance = _zpt_cache[tfile] = TemplateWrapper(
35
 
            simpleTAL.compileXMLTemplate(open(tfile)), tfile, stat)
36
 
    return tinstance
37
 
 
38
 
 
39
 
class TemplateWrapper(object):
40
 
 
41
 
    def __init__(self, template, filename, stat):
42
 
        self.template = template
43
 
        self.filename = filename
44
 
        self.stat = stat
45
 
 
46
 
    def expand(self, **info):
47
 
        context = simpleTALES.Context(allowPythonPath=1)
48
 
        for k, v in info.iteritems():
49
 
            context.addGlobal(k, v)
50
 
        s = StringIO.StringIO()
51
 
        self.template.expandInline(context, s)
52
 
        return s.getvalue()
53
 
 
54
 
    def expand_into(self, f, **info):
55
 
        context = simpleTALES.Context(allowPythonPath=1)
56
 
        for k, v in info.iteritems():
57
 
            context.addGlobal(k, v)
58
 
        self.template.expand(context, f, 'utf-8')
59
 
 
60
 
    @property
61
 
    def macros(self):
62
 
        return self.template.macros
63
 
 
64
 
 
65
 
def load_template(classname):
66
 
    """Searches for a template along the Python path.
67
 
 
68
 
    Template files must end in ".pt" and be in legitimate packages.
69
 
    Templates are automatically checked for changes and reloaded as
70
 
    neccessary.
71
 
    """
72
 
    divider = classname.rfind(".")
73
 
    if divider > -1:
74
 
        package = classname[0:divider]
75
 
        basename = classname[divider+1:]
76
 
    else:
77
 
        raise ValueError, "All templates must be in a package"
78
 
 
79
 
    tfile = pkg_resources.resource_filename(
80
 
        package, "%s.%s" % (basename, "pt"))
81
 
    return zpt(tfile)
 
9
log = logging.getLogger("turbogears.zptsupport")
 
10
 
 
11
def _recompile_template(package, basename, tfile, classname):
 
12
    log.debug("Recompiling template for %s" % classname)
 
13
    mod = PageTemplate(tfile)
 
14
    mtime = os.stat(tfile).st_mtime
 
15
    mod.__mtime__ = mtime
 
16
    return mod
 
17
 
 
18
class TurboZpt:
 
19
    extension = "pt"
 
20
    
 
21
    def __init__(self, extra_vars_func=None, options={}):
 
22
        self.options = options
 
23
        self.get_extra_vars = extra_vars_func
 
24
        self.compiledTemplates = {}
 
25
    
 
26
    def load_template(self, classname, loadingSite=False):
 
27
        """Searches for a template along the Python path.
 
28
 
 
29
        Template files must end in ".pt" and be in legitimate packages.
 
30
        U can set "zpt.cache_templates" option to cache a loaded template
 
31
        class and only check for updates. Templates are automatically
 
32
        checked for changes and reloaded as neccessary.
 
33
        """
 
34
        ct = self.compiledTemplates
 
35
 
 
36
        divider = classname.rfind(".")
 
37
        if divider > -1:
 
38
            package = classname[0:divider]
 
39
            basename = classname[divider+1:]
 
40
        else:
 
41
            raise ValueError, "All templates must be in a package"
 
42
 
 
43
        cache_templates = self.options.get("zpt.cache_templates", True)
 
44
        tfile = pkg_resources.resource_filename(package, 
 
45
                                                "%s.%s" % 
 
46
                                                (basename,
 
47
                                                self.extension))
 
48
                                                
 
49
        if cache_templates:
 
50
            if ct.has_key(classname):
 
51
                mtime = os.stat(tfile).st_mtime
 
52
                mod = ct[classname]
 
53
                if mod.__mtime__ != mtime:
 
54
                    # Recompile template
 
55
                    mod = _recompile_template(package, basename, tfile, classname)
 
56
                    ct[classname] = mod
 
57
                #else:
 
58
                    # use template from cache    
 
59
                    # pass 
 
60
            else:
 
61
                # First time compile template
 
62
                mod = PageTemplate(tfile)
 
63
                mod.__mtime__ = os.stat(tfile).st_mtime
 
64
                ct[classname] = mod
 
65
        else:
 
66
            mod = PageTemplate(tfile)
 
67
 
 
68
        return mod
 
69
 
 
70
    def render(self, info, format="html", fragment=False, template=None):
 
71
        """Renders data in the desired format.
 
72
        
 
73
        @param info: the data / context itself
 
74
        @type info: dict
 
75
        @para format: "html"
 
76
        @type format: "string"
 
77
        @para template: name of the template to use
 
78
        @type template: string
 
79
        """
 
80
        #if isinstance(template, type):
 
81
        #    tclass = template
 
82
        #else:
 
83
        
 
84
        tinstance = self.load_template(template)
 
85
        log.debug("Applying template %s" % (tinstance.filename))
 
86
        data = dict()
 
87
        if self.get_extra_vars:
 
88
            data.update(self.get_extra_vars())
 
89
        data.update(info)
 
90
        
 
91
        return str(tinstance(**data))
 
92
 
 
93
    def transform(self, info, template):
 
94
        "Render the output to Elements"
 
95
        pass