~loggerhead-team/loggerhead/trunk-rich

« back to all changes in this revision

Viewing changes to loggerhead/zptsupport.py

  • Committer: Launchpad Patch Queue Manager
  • Date: 2008-02-27 11:38:19 UTC
  • mfrom: (144.1.10 fix-pyflakes-notes)
  • Revision ID: launchpad@pqm.canonical.com-20080227113819-soawqhenqe9znu1p
[r=thumper][!log] remove unused files and imports and normalize the whitespace

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."""
17
 
 
18
 
import logging
19
 
import os
20
 
import pkg_resources
21
 
import re
22
 
import StringIO
23
 
 
24
 
from simpletal import simpleTAL, simpleTALES
25
 
 
26
 
logging.getLogger("simpleTAL").setLevel(logging.INFO)
27
 
logging.getLogger("simpleTALES").setLevel(logging.INFO)
28
 
 
29
 
 
30
 
_zpt_cache = {}
31
 
 
32
 
 
33
 
def zpt(tfile):
34
 
    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)
40
 
        tinstance = _zpt_cache[tfile] = TemplateWrapper(
41
 
            simpleTAL.compileXMLTemplate(text), tfile, stat)
42
 
    return tinstance
43
 
 
44
 
 
45
 
class TemplateWrapper(object):
46
 
 
47
 
    def __init__(self, template, filename, stat):
48
 
        self.template = template
49
 
        self.filename = filename
50
 
        self.stat = stat
51
 
 
52
 
    def expand(self, **info):
53
 
        context = simpleTALES.Context(allowPythonPath=1)
54
 
        for k, v in info.iteritems():
55
 
            context.addGlobal(k, v)
56
 
        s = StringIO.StringIO()
57
 
        self.template.expandInline(context, s)
58
 
        return s.getvalue()
59
 
 
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
 
    @property
67
 
    def macros(self):
68
 
        return self.template.macros
69
 
 
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)