~loggerhead-team/loggerhead/trunk-rich

« back to all changes in this revision

Viewing changes to turbosimpletal/zptsupport.py

  • Committer: Michael Hudson
  • Date: 2008-06-13 05:33:39 UTC
  • mto: This revision was merged to the branch mainline in revision 164.
  • Revision ID: michael.hudson@canonical.com-20080613053339-w1in3qyd8gq3e8zg
more progress

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