~loggerhead-team/loggerhead/trunk-rich

« back to all changes in this revision

Viewing changes to turbosimpletal/zptsupport.py

tweaks to changelog view

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