~loggerhead-team/loggerhead/trunk-rich

« back to all changes in this revision

Viewing changes to turbosimpletal/zptsupport.py

  • Committer: Michael Hudson
  • Date: 2008-06-17 00:01:47 UTC
  • mto: This revision was merged to the branch mainline in revision 164.
  • Revision ID: michael.hudson@canonical.com-20080617000147-d3wf2fdf6arrmfo2
extract some methods

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 logging
 
3
import StringIO
4
4
import os
5
5
import pkg_resources
6
 
import StringIO
7
6
 
8
7
from simpletal import simpleTAL, simpleTALES
9
8
 
10
 
logging.getLogger("simpleTAL").setLevel(logging.INFO)
11
 
logging.getLogger("simpleTALES").setLevel(logging.INFO)
12
 
 
13
9
 
14
10
_zpt_cache = {}
15
11
def zpt(tfile):
36
32
        self.template.expandInline(context, s)
37
33
        return s.getvalue()
38
34
 
39
 
    def expand_into(self, f, **info):
 
35
    def expand_(self, f, **info):
40
36
        context = simpleTALES.Context(allowPythonPath=1)
41
37
        for k, v in info.iteritems():
42
38
            context.addGlobal(k, v)
47
43
        return self.template.macros
48
44
 
49
45
 
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)
 
46
class TurboZpt(object):
 
47
    extension = "pt"
 
48
 
 
49
    def __init__(self, extra_vars_func=None):
 
50
        self.get_extra_vars = extra_vars_func
 
51
 
 
52
    def load_template(self, classname, loadingSite=False):
 
53
        """Searches for a template along the Python path.
 
54
 
 
55
        Template files must end in ".pt" and be in legitimate packages.
 
56
        Templates are automatically checked for changes and reloaded as
 
57
        neccessary.
 
58
        """
 
59
        divider = classname.rfind(".")
 
60
        if divider > -1:
 
61
            package = classname[0:divider]
 
62
            basename = classname[divider+1:]
 
63
        else:
 
64
            raise ValueError, "All templates must be in a package"
 
65
 
 
66
        tfile = pkg_resources.resource_filename(
 
67
            package, "%s.%s" % (basename, self.extension))
 
68
        return zpt(tfile)
 
69