annotate markup/template.py @ 14:76b5d4b189e6

The `<py:match>` directive now protects itself against simple infinite recursion (see MatchDirective), while still allowing recursion in general.
author cmlenz
date Tue, 13 Jun 2006 17:56:42 +0000
parents bf9de5a4c896
children ad63ad459524
rev   line source
1
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
1 # -*- coding: utf-8 -*-
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
2 #
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
3 # Copyright (C) 2006 Christopher Lenz
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
4 # All rights reserved.
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
5 #
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
6 # This software is licensed as described in the file COPYING, which
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
7 # you should have received as part of this distribution. The terms
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
8 # are also available at http://trac.edgewall.com/license.html.
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
9 #
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
10 # This software consists of voluntary contributions made by many
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
11 # individuals. For the exact contribution history, see the revision
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
12 # history and logs, available at http://projects.edgewall.com/trac/.
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
13
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
14 """Template engine that is compatible with Kid (http://kid.lesscode.org) to a
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
15 certain extent.
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
16
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
17 Differences include:
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
18 * No generation of Python code for a template; the template is "interpreted"
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
19 * No support for <?python ?> processing instructions
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
20 * Expressions are evaluated in a more flexible manner, meaning you can use e.g.
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
21 attribute access notation to access items in a dictionary, etc
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
22 * Use of XInclude and match templates instead of Kid's py:extends/py:layout
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
23 directives
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
24 * Real (thread-safe) search path support
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
25 * No dependency on ElementTree (due to the lack of pos info)
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
26 * The original pos of parse events is kept throughout the processing
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
27 pipeline, so that errors can be tracked back to a specific line/column in
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
28 the template file
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
29 * py:match directives use (basic) XPath expressions to match against input
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
30 nodes, making match templates more powerful while keeping the syntax simple
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
31
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
32 Todo items:
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
33 * Improved error reporting
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
34 * Support for using directives as elements and not just as attributes, reducing
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
35 the need for wrapper elements with py:strip=""
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
36 * Support for py:choose/py:when/py:otherwise (similar to XSLT)
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
37 * Support for list comprehensions and generator expressions in expressions
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
38
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
39 Random thoughts:
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
40 * Is there any need to support py:extends and/or py:layout?
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
41 * Could we generate byte code from expressions?
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
42 """
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
43
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
44 import compiler
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
45 from itertools import chain
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
46 import os
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
47 import re
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
48 from StringIO import StringIO
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
49
10
c5890ef863ba Moved the template-specific stream event kinds into the template module.
cmlenz
parents: 6
diff changeset
50 from markup.core import Attributes, Stream, StreamEventKind
1
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
51 from markup.eval import Expression
14
76b5d4b189e6 The `<py:match>` directive now protects itself against simple infinite recursion (see MatchDirective), while still allowing recursion in general.
cmlenz
parents: 13
diff changeset
52 from markup.filters import EvalFilter, IncludeFilter, WhitespaceFilter
1
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
53 from markup.input import HTML, XMLParser, XML
14
76b5d4b189e6 The `<py:match>` directive now protects itself against simple infinite recursion (see MatchDirective), while still allowing recursion in general.
cmlenz
parents: 13
diff changeset
54 from markup.path import Path
1
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
55
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
56 __all__ = ['Context', 'BadDirectiveError', 'TemplateError',
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
57 'TemplateSyntaxError', 'TemplateNotFound', 'Template',
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
58 'TemplateLoader']
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
59
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
60
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
61 class TemplateError(Exception):
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
62 """Base exception class for errors related to template processing."""
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
63
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
64
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
65 class TemplateSyntaxError(TemplateError):
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
66 """Exception raised when an expression in a template causes a Python syntax
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
67 error."""
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
68
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
69 def __init__(self, message, filename='<string>', lineno=-1, offset=-1):
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
70 if isinstance(message, SyntaxError) and message.lineno is not None:
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
71 message = str(message).replace(' (line %d)' % message.lineno, '')
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
72 TemplateError.__init__(self, message)
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
73 self.filename = filename
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
74 self.lineno = lineno
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
75 self.offset = offset
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
76
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
77
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
78 class BadDirectiveError(TemplateSyntaxError):
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
79 """Exception raised when an unknown directive is encountered when parsing
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
80 a template.
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
81
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
82 An unknown directive is any attribute using the namespace for directives,
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
83 with a local name that doesn't match any registered directive.
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
84 """
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
85
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
86 def __init__(self, name, filename='<string>', lineno=-1):
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
87 TemplateSyntaxError.__init__(self, 'Bad directive "%s"' % name.localname,
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
88 filename, lineno)
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
89
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
90
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
91 class TemplateNotFound(TemplateError):
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
92 """Exception raised when a specific template file could not be found."""
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
93
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
94 def __init__(self, name, search_path):
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
95 TemplateError.__init__(self, 'Template "%s" not found' % name)
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
96 self.search_path = search_path
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
97
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
98
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
99 class Context(object):
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
100 """A container for template input data.
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
101
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
102 A context provides a stack of scopes. Template directives such as loops can
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
103 push a new scope on the stack with data that should only be available
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
104 inside the loop. When the loop terminates, that scope can get popped off
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
105 the stack again.
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
106
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
107 >>> ctxt = Context(one='foo', other=1)
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
108 >>> ctxt.get('one')
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
109 'foo'
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
110 >>> ctxt.get('other')
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
111 1
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
112 >>> ctxt.push(one='frost')
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
113 >>> ctxt.get('one')
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
114 'frost'
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
115 >>> ctxt.get('other')
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
116 1
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
117 >>> ctxt.pop()
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
118 >>> ctxt.get('one')
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
119 'foo'
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
120 """
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
121
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
122 def __init__(self, **data):
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
123 self.stack = [data]
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
124
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
125 def __getitem__(self, key):
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
126 """Get a variable's value, starting at the current context and going
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
127 upward.
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
128 """
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
129 return self.get(key)
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
130
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
131 def __repr__(self):
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
132 return repr(self.stack)
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
133
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
134 def __setitem__(self, key, value):
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
135 """Set a variable in the current context."""
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
136 self.stack[0][key] = value
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
137
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
138 def get(self, key):
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
139 for frame in self.stack:
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
140 if key in frame:
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
141 return frame[key]
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
142
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
143 def push(self, **data):
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
144 self.stack.insert(0, data)
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
145
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
146 def pop(self):
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
147 assert self.stack, 'Pop from empty context stack'
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
148 self.stack.pop(0)
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
149
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
150
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
151 class Directive(object):
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
152 """Abstract base class for template directives.
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
153
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
154 A directive is basically a callable that takes two parameters: `ctxt` is
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
155 the template data context, and `stream` is an iterable over the events that
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
156 the directive applies to.
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
157
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
158 Directives can be "anonymous" or "registered". Registered directives can be
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
159 applied by the template author using an XML attribute with the
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
160 corresponding name in the template. Such directives should be subclasses of
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
161 this base class that can be instantiated with two parameters: `template`
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
162 is the `Template` instance, and `value` is the value of the directive
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
163 attribute.
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
164
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
165 Anonymous directives are simply functions conforming to the protocol
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
166 described above, and can only be applied programmatically (for example by
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
167 template filters).
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
168 """
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
169 __slots__ = ['expr']
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
170
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
171 def __init__(self, template, value, pos):
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
172 self.expr = value and Expression(value) or None
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
173
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
174 def __call__(self, stream, ctxt):
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
175 raise NotImplementedError
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
176
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
177 def __repr__(self):
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
178 expr = ''
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
179 if self.expr is not None:
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
180 expr = ' "%s"' % self.expr.source
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
181 return '<%s%s>' % (self.__class__.__name__, expr)
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
182
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
183
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
184 class AttrsDirective(Directive):
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
185 """Implementation of the `py:attrs` template directive.
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
186
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
187 The value of the `py:attrs` attribute should be a dictionary. The keys and
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
188 values of that dictionary will be added as attributes to the element:
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
189
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
190 >>> ctxt = Context(foo={'class': 'collapse'})
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
191 >>> tmpl = Template('''<ul xmlns:py="http://purl.org/kid/ns#">
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
192 ... <li py:attrs="foo">Bar</li>
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
193 ... </ul>''')
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
194 >>> print tmpl.generate(ctxt)
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
195 <ul>
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
196 <li class="collapse">Bar</li>
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
197 </ul>
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
198
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
199 If the value evaluates to `None` (or any other non-truth value), no
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
200 attributes are added:
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
201
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
202 >>> ctxt = Context(foo=None)
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
203 >>> print tmpl.generate(ctxt)
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
204 <ul>
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
205 <li>Bar</li>
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
206 </ul>
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
207 """
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
208 def __call__(self, stream, ctxt):
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
209 kind, (tag, attrib), pos = stream.next()
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
210 attrs = self.expr.evaluate(ctxt)
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
211 if attrs:
5
1add946decb8 Improved `py:attrs` directive so that it removes existing attributes if they evaluate to `None` (AFAICT matching Kid behavior).
cmlenz
parents: 1
diff changeset
212 attrib = Attributes(attrib[:])
1add946decb8 Improved `py:attrs` directive so that it removes existing attributes if they evaluate to `None` (AFAICT matching Kid behavior).
cmlenz
parents: 1
diff changeset
213 if not isinstance(attrs, list): # assume it's a dict
1add946decb8 Improved `py:attrs` directive so that it removes existing attributes if they evaluate to `None` (AFAICT matching Kid behavior).
cmlenz
parents: 1
diff changeset
214 attrs = attrs.items()
1add946decb8 Improved `py:attrs` directive so that it removes existing attributes if they evaluate to `None` (AFAICT matching Kid behavior).
cmlenz
parents: 1
diff changeset
215 for name, value in attrs:
1add946decb8 Improved `py:attrs` directive so that it removes existing attributes if they evaluate to `None` (AFAICT matching Kid behavior).
cmlenz
parents: 1
diff changeset
216 if value is None:
1add946decb8 Improved `py:attrs` directive so that it removes existing attributes if they evaluate to `None` (AFAICT matching Kid behavior).
cmlenz
parents: 1
diff changeset
217 attrib.remove(name)
1add946decb8 Improved `py:attrs` directive so that it removes existing attributes if they evaluate to `None` (AFAICT matching Kid behavior).
cmlenz
parents: 1
diff changeset
218 else:
1add946decb8 Improved `py:attrs` directive so that it removes existing attributes if they evaluate to `None` (AFAICT matching Kid behavior).
cmlenz
parents: 1
diff changeset
219 attrib.set(name, unicode(value).strip())
1add946decb8 Improved `py:attrs` directive so that it removes existing attributes if they evaluate to `None` (AFAICT matching Kid behavior).
cmlenz
parents: 1
diff changeset
220 yield kind, (tag, attrib), pos
1
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
221 for event in stream:
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
222 yield event
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
223
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
224
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
225 class ContentDirective(Directive):
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
226 """Implementation of the `py:content` template directive.
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
227
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
228 This directive replaces the content of the element with the result of
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
229 evaluating the value of the `py:content` attribute:
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
230
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
231 >>> ctxt = Context(bar='Bye')
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
232 >>> tmpl = Template('''<ul xmlns:py="http://purl.org/kid/ns#">
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
233 ... <li py:content="bar">Hello</li>
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
234 ... </ul>''')
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
235 >>> print tmpl.generate(ctxt)
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
236 <ul>
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
237 <li>Bye</li>
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
238 </ul>
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
239 """
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
240 def __call__(self, stream, ctxt):
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
241 kind, data, pos = stream.next()
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
242 if kind is Stream.START:
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
243 yield kind, data, pos # emit start tag
10
c5890ef863ba Moved the template-specific stream event kinds into the template module.
cmlenz
parents: 6
diff changeset
244 yield Template.EXPR, self.expr, pos
6
5da45906dda7 Simplified implementation of `py:content` directive.
cmlenz
parents: 5
diff changeset
245 previous = stream.next()
5da45906dda7 Simplified implementation of `py:content` directive.
cmlenz
parents: 5
diff changeset
246 for event in stream:
5da45906dda7 Simplified implementation of `py:content` directive.
cmlenz
parents: 5
diff changeset
247 previous = event
10
c5890ef863ba Moved the template-specific stream event kinds into the template module.
cmlenz
parents: 6
diff changeset
248 if previous is not None:
c5890ef863ba Moved the template-specific stream event kinds into the template module.
cmlenz
parents: 6
diff changeset
249 yield previous
1
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
250
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
251
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
252 class DefDirective(Directive):
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
253 """Implementation of the `py:def` template directive.
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
254
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
255 This directive can be used to create "Named Template Functions", which
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
256 are template snippets that are not actually output during normal
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
257 processing, but rather can be expanded from expressions in other places
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
258 in the template.
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
259
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
260 A named template function can be used just like a normal Python function
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
261 from template expressions:
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
262
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
263 >>> ctxt = Context(bar='Bye')
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
264 >>> tmpl = Template('''<div xmlns:py="http://purl.org/kid/ns#">
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
265 ... <p py:def="echo(greeting, name='world')" class="message">
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
266 ... ${greeting}, ${name}!
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
267 ... </p>
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
268 ... ${echo('hi', name='you')}
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
269 ... </div>''')
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
270 >>> print tmpl.generate(ctxt)
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
271 <div>
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
272 <p class="message">
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
273 hi, you!
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
274 </p>
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
275 </div>
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
276
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
277 >>> ctxt = Context(bar='Bye')
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
278 >>> tmpl = Template('''<div xmlns:py="http://purl.org/kid/ns#">
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
279 ... <p py:def="echo(greeting, name='world')" class="message">
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
280 ... ${greeting}, ${name}!
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
281 ... </p>
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
282 ... <div py:replace="echo('hello')"></div>
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
283 ... </div>''')
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
284 >>> print tmpl.generate(ctxt)
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
285 <div>
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
286 <p class="message">
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
287 hello, world!
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
288 </p>
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
289 </div>
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
290 """
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
291 __slots__ = ['name', 'args', 'defaults', 'stream']
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
292
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
293 def __init__(self, template, args, pos):
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
294 Directive.__init__(self, template, None, pos)
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
295 ast = compiler.parse(args, 'eval').node
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
296 self.args = []
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
297 self.defaults = {}
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
298 if isinstance(ast, compiler.ast.CallFunc):
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
299 self.name = ast.node.name
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
300 for arg in ast.args:
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
301 if isinstance(arg, compiler.ast.Keyword):
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
302 self.args.append(arg.name)
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
303 self.defaults[arg.name] = arg.expr.value
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
304 else:
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
305 self.args.append(arg.name)
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
306 else:
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
307 self.name = ast.name
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
308 self.stream = []
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
309
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
310 def __call__(self, stream, ctxt):
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
311 self.stream = list(stream)
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
312 ctxt[self.name] = lambda *args, **kwargs: self._exec(ctxt, *args,
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
313 **kwargs)
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
314 return []
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
315
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
316 def _exec(self, ctxt, *args, **kwargs):
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
317 scope = {}
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
318 args = list(args) # make mutable
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
319 for name in self.args:
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
320 if args:
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
321 scope[name] = args.pop(0)
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
322 else:
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
323 scope[name] = kwargs.pop(name, self.defaults.get(name))
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
324 ctxt.push(**scope)
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
325 for event in self.stream:
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
326 yield event
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
327 ctxt.pop()
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
328
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
329
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
330 class ForDirective(Directive):
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
331 """Implementation of the `py:for` template directive.
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
332
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
333 >>> ctxt = Context(items=[1, 2, 3])
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
334 >>> tmpl = Template('''<ul xmlns:py="http://purl.org/kid/ns#">
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
335 ... <li py:for="item in items">${item}</li>
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
336 ... </ul>''')
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
337 >>> print tmpl.generate(ctxt)
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
338 <ul>
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
339 <li>1</li><li>2</li><li>3</li>
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
340 </ul>
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
341 """
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
342 __slots__ = ['targets']
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
343
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
344 def __init__(self, template, value, pos):
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
345 targets, expr_source = value.split(' in ', 1)
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
346 self.targets = [str(name.strip()) for name in targets.split(',')]
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
347 Directive.__init__(self, template, expr_source, pos)
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
348
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
349 def __call__(self, stream, ctxt):
14
76b5d4b189e6 The `<py:match>` directive now protects itself against simple infinite recursion (see MatchDirective), while still allowing recursion in general.
cmlenz
parents: 13
diff changeset
350 iterable = self.expr.evaluate(ctxt) or []
1
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
351 if iterable is not None:
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
352 stream = list(stream)
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
353 for item in iter(iterable):
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
354 if len(self.targets) == 1:
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
355 item = [item]
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
356 scope = {}
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
357 for idx, name in enumerate(self.targets):
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
358 scope[name] = item[idx]
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
359 ctxt.push(**scope)
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
360 for event in stream:
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
361 yield event
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
362 ctxt.pop()
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
363
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
364 def __repr__(self):
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
365 return '<%s "%s in %s">' % (self.__class__.__name__,
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
366 ', '.join(self.targets), self.expr.source)
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
367
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
368
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
369 class IfDirective(Directive):
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
370 """Implementation of the `py:if` template directive.
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
371
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
372 >>> ctxt = Context(foo=True, bar='Hello')
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
373 >>> tmpl = Template('''<div xmlns:py="http://purl.org/kid/ns#">
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
374 ... <b py:if="foo">${bar}</b>
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
375 ... </div>''')
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
376 >>> print tmpl.generate(ctxt)
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
377 <div>
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
378 <b>Hello</b>
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
379 </div>
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
380 """
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
381 def __call__(self, stream, ctxt):
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
382 if self.expr.evaluate(ctxt):
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
383 return stream
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
384 return []
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
385
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
386
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
387 class MatchDirective(Directive):
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
388 """Implementation of the `py:match` template directive.
14
76b5d4b189e6 The `<py:match>` directive now protects itself against simple infinite recursion (see MatchDirective), while still allowing recursion in general.
cmlenz
parents: 13
diff changeset
389
1
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
390 >>> tmpl = Template('''<div xmlns:py="http://purl.org/kid/ns#">
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
391 ... <span py:match="div/greeting">
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
392 ... Hello ${select('@name')}
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
393 ... </span>
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
394 ... <greeting name="Dude" />
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
395 ... </div>''')
14
76b5d4b189e6 The `<py:match>` directive now protects itself against simple infinite recursion (see MatchDirective), while still allowing recursion in general.
cmlenz
parents: 13
diff changeset
396 >>> print tmpl.generate()
1
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
397 <div>
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
398 <span>
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
399 Hello Dude
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
400 </span>
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
401 </div>
14
76b5d4b189e6 The `<py:match>` directive now protects itself against simple infinite recursion (see MatchDirective), while still allowing recursion in general.
cmlenz
parents: 13
diff changeset
402
76b5d4b189e6 The `<py:match>` directive now protects itself against simple infinite recursion (see MatchDirective), while still allowing recursion in general.
cmlenz
parents: 13
diff changeset
403 A match template can produce the same kind of element that it matched
76b5d4b189e6 The `<py:match>` directive now protects itself against simple infinite recursion (see MatchDirective), while still allowing recursion in general.
cmlenz
parents: 13
diff changeset
404 without entering an infinite recursion:
76b5d4b189e6 The `<py:match>` directive now protects itself against simple infinite recursion (see MatchDirective), while still allowing recursion in general.
cmlenz
parents: 13
diff changeset
405
76b5d4b189e6 The `<py:match>` directive now protects itself against simple infinite recursion (see MatchDirective), while still allowing recursion in general.
cmlenz
parents: 13
diff changeset
406 >>> tmpl = Template('''<doc xmlns:py="http://purl.org/kid/ns#">
76b5d4b189e6 The `<py:match>` directive now protects itself against simple infinite recursion (see MatchDirective), while still allowing recursion in general.
cmlenz
parents: 13
diff changeset
407 ... <elem py:match="elem">
76b5d4b189e6 The `<py:match>` directive now protects itself against simple infinite recursion (see MatchDirective), while still allowing recursion in general.
cmlenz
parents: 13
diff changeset
408 ... <div class="elem">${select('*/text()')}</div>
76b5d4b189e6 The `<py:match>` directive now protects itself against simple infinite recursion (see MatchDirective), while still allowing recursion in general.
cmlenz
parents: 13
diff changeset
409 ... </elem>
76b5d4b189e6 The `<py:match>` directive now protects itself against simple infinite recursion (see MatchDirective), while still allowing recursion in general.
cmlenz
parents: 13
diff changeset
410 ... <elem>Hey Joe</elem>
76b5d4b189e6 The `<py:match>` directive now protects itself against simple infinite recursion (see MatchDirective), while still allowing recursion in general.
cmlenz
parents: 13
diff changeset
411 ... </doc>''')
76b5d4b189e6 The `<py:match>` directive now protects itself against simple infinite recursion (see MatchDirective), while still allowing recursion in general.
cmlenz
parents: 13
diff changeset
412 >>> print tmpl.generate()
76b5d4b189e6 The `<py:match>` directive now protects itself against simple infinite recursion (see MatchDirective), while still allowing recursion in general.
cmlenz
parents: 13
diff changeset
413 <doc>
76b5d4b189e6 The `<py:match>` directive now protects itself against simple infinite recursion (see MatchDirective), while still allowing recursion in general.
cmlenz
parents: 13
diff changeset
414 <elem>
76b5d4b189e6 The `<py:match>` directive now protects itself against simple infinite recursion (see MatchDirective), while still allowing recursion in general.
cmlenz
parents: 13
diff changeset
415 <div class="elem">Hey Joe</div>
76b5d4b189e6 The `<py:match>` directive now protects itself against simple infinite recursion (see MatchDirective), while still allowing recursion in general.
cmlenz
parents: 13
diff changeset
416 </elem>
76b5d4b189e6 The `<py:match>` directive now protects itself against simple infinite recursion (see MatchDirective), while still allowing recursion in general.
cmlenz
parents: 13
diff changeset
417 </doc>
76b5d4b189e6 The `<py:match>` directive now protects itself against simple infinite recursion (see MatchDirective), while still allowing recursion in general.
cmlenz
parents: 13
diff changeset
418
76b5d4b189e6 The `<py:match>` directive now protects itself against simple infinite recursion (see MatchDirective), while still allowing recursion in general.
cmlenz
parents: 13
diff changeset
419 Match directives are applied recursively, meaning that they are also
76b5d4b189e6 The `<py:match>` directive now protects itself against simple infinite recursion (see MatchDirective), while still allowing recursion in general.
cmlenz
parents: 13
diff changeset
420 applied to any content they may have produced themselves:
76b5d4b189e6 The `<py:match>` directive now protects itself against simple infinite recursion (see MatchDirective), while still allowing recursion in general.
cmlenz
parents: 13
diff changeset
421
76b5d4b189e6 The `<py:match>` directive now protects itself against simple infinite recursion (see MatchDirective), while still allowing recursion in general.
cmlenz
parents: 13
diff changeset
422 >>> tmpl = Template('''<doc xmlns:py="http://purl.org/kid/ns#">
76b5d4b189e6 The `<py:match>` directive now protects itself against simple infinite recursion (see MatchDirective), while still allowing recursion in general.
cmlenz
parents: 13
diff changeset
423 ... <elem py:match="elem">
76b5d4b189e6 The `<py:match>` directive now protects itself against simple infinite recursion (see MatchDirective), while still allowing recursion in general.
cmlenz
parents: 13
diff changeset
424 ... <div class="elem">
76b5d4b189e6 The `<py:match>` directive now protects itself against simple infinite recursion (see MatchDirective), while still allowing recursion in general.
cmlenz
parents: 13
diff changeset
425 ... ${select('*/*')}
76b5d4b189e6 The `<py:match>` directive now protects itself against simple infinite recursion (see MatchDirective), while still allowing recursion in general.
cmlenz
parents: 13
diff changeset
426 ... </div>
76b5d4b189e6 The `<py:match>` directive now protects itself against simple infinite recursion (see MatchDirective), while still allowing recursion in general.
cmlenz
parents: 13
diff changeset
427 ... </elem>
76b5d4b189e6 The `<py:match>` directive now protects itself against simple infinite recursion (see MatchDirective), while still allowing recursion in general.
cmlenz
parents: 13
diff changeset
428 ... <elem>
76b5d4b189e6 The `<py:match>` directive now protects itself against simple infinite recursion (see MatchDirective), while still allowing recursion in general.
cmlenz
parents: 13
diff changeset
429 ... <subelem>
76b5d4b189e6 The `<py:match>` directive now protects itself against simple infinite recursion (see MatchDirective), while still allowing recursion in general.
cmlenz
parents: 13
diff changeset
430 ... <elem/>
76b5d4b189e6 The `<py:match>` directive now protects itself against simple infinite recursion (see MatchDirective), while still allowing recursion in general.
cmlenz
parents: 13
diff changeset
431 ... </subelem>
76b5d4b189e6 The `<py:match>` directive now protects itself against simple infinite recursion (see MatchDirective), while still allowing recursion in general.
cmlenz
parents: 13
diff changeset
432 ... </elem>
76b5d4b189e6 The `<py:match>` directive now protects itself against simple infinite recursion (see MatchDirective), while still allowing recursion in general.
cmlenz
parents: 13
diff changeset
433 ... </doc>''')
76b5d4b189e6 The `<py:match>` directive now protects itself against simple infinite recursion (see MatchDirective), while still allowing recursion in general.
cmlenz
parents: 13
diff changeset
434 >>> print tmpl.generate()
76b5d4b189e6 The `<py:match>` directive now protects itself against simple infinite recursion (see MatchDirective), while still allowing recursion in general.
cmlenz
parents: 13
diff changeset
435 <doc>
76b5d4b189e6 The `<py:match>` directive now protects itself against simple infinite recursion (see MatchDirective), while still allowing recursion in general.
cmlenz
parents: 13
diff changeset
436 <elem>
76b5d4b189e6 The `<py:match>` directive now protects itself against simple infinite recursion (see MatchDirective), while still allowing recursion in general.
cmlenz
parents: 13
diff changeset
437 <div class="elem">
76b5d4b189e6 The `<py:match>` directive now protects itself against simple infinite recursion (see MatchDirective), while still allowing recursion in general.
cmlenz
parents: 13
diff changeset
438 <subelem>
76b5d4b189e6 The `<py:match>` directive now protects itself against simple infinite recursion (see MatchDirective), while still allowing recursion in general.
cmlenz
parents: 13
diff changeset
439 <elem>
76b5d4b189e6 The `<py:match>` directive now protects itself against simple infinite recursion (see MatchDirective), while still allowing recursion in general.
cmlenz
parents: 13
diff changeset
440 <div class="elem">
76b5d4b189e6 The `<py:match>` directive now protects itself against simple infinite recursion (see MatchDirective), while still allowing recursion in general.
cmlenz
parents: 13
diff changeset
441 </div>
76b5d4b189e6 The `<py:match>` directive now protects itself against simple infinite recursion (see MatchDirective), while still allowing recursion in general.
cmlenz
parents: 13
diff changeset
442 </elem>
76b5d4b189e6 The `<py:match>` directive now protects itself against simple infinite recursion (see MatchDirective), while still allowing recursion in general.
cmlenz
parents: 13
diff changeset
443 </subelem>
76b5d4b189e6 The `<py:match>` directive now protects itself against simple infinite recursion (see MatchDirective), while still allowing recursion in general.
cmlenz
parents: 13
diff changeset
444 </div>
76b5d4b189e6 The `<py:match>` directive now protects itself against simple infinite recursion (see MatchDirective), while still allowing recursion in general.
cmlenz
parents: 13
diff changeset
445 </elem>
76b5d4b189e6 The `<py:match>` directive now protects itself against simple infinite recursion (see MatchDirective), while still allowing recursion in general.
cmlenz
parents: 13
diff changeset
446 </doc>
1
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
447 """
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
448 __slots__ = ['path', 'stream']
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
449
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
450 def __init__(self, template, value, pos):
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
451 Directive.__init__(self, template, None, pos)
14
76b5d4b189e6 The `<py:match>` directive now protects itself against simple infinite recursion (see MatchDirective), while still allowing recursion in general.
cmlenz
parents: 13
diff changeset
452 self.path = Path(value)
1
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
453 self.stream = []
14
76b5d4b189e6 The `<py:match>` directive now protects itself against simple infinite recursion (see MatchDirective), while still allowing recursion in general.
cmlenz
parents: 13
diff changeset
454 template.filters.append(self._filter)
1
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
455
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
456 def __call__(self, stream, ctxt):
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
457 self.stream = list(stream)
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
458 return []
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
459
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
460 def __repr__(self):
14
76b5d4b189e6 The `<py:match>` directive now protects itself against simple infinite recursion (see MatchDirective), while still allowing recursion in general.
cmlenz
parents: 13
diff changeset
461 return '<%s "%s">' % (self.__class__.__name__, self.path.source)
1
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
462
14
76b5d4b189e6 The `<py:match>` directive now protects itself against simple infinite recursion (see MatchDirective), while still allowing recursion in general.
cmlenz
parents: 13
diff changeset
463 def _filter(self, stream, ctxt=None):
76b5d4b189e6 The `<py:match>` directive now protects itself against simple infinite recursion (see MatchDirective), while still allowing recursion in general.
cmlenz
parents: 13
diff changeset
464 test = self.path.test()
76b5d4b189e6 The `<py:match>` directive now protects itself against simple infinite recursion (see MatchDirective), while still allowing recursion in general.
cmlenz
parents: 13
diff changeset
465 for event in stream:
76b5d4b189e6 The `<py:match>` directive now protects itself against simple infinite recursion (see MatchDirective), while still allowing recursion in general.
cmlenz
parents: 13
diff changeset
466 if self.stream and event in self.stream[::len(self.stream)]:
76b5d4b189e6 The `<py:match>` directive now protects itself against simple infinite recursion (see MatchDirective), while still allowing recursion in general.
cmlenz
parents: 13
diff changeset
467 # This is the event this filter produced itself, so matching it
76b5d4b189e6 The `<py:match>` directive now protects itself against simple infinite recursion (see MatchDirective), while still allowing recursion in general.
cmlenz
parents: 13
diff changeset
468 # again would result in an infinite loop
76b5d4b189e6 The `<py:match>` directive now protects itself against simple infinite recursion (see MatchDirective), while still allowing recursion in general.
cmlenz
parents: 13
diff changeset
469 yield event
76b5d4b189e6 The `<py:match>` directive now protects itself against simple infinite recursion (see MatchDirective), while still allowing recursion in general.
cmlenz
parents: 13
diff changeset
470 continue
76b5d4b189e6 The `<py:match>` directive now protects itself against simple infinite recursion (see MatchDirective), while still allowing recursion in general.
cmlenz
parents: 13
diff changeset
471 result = test(*event)
76b5d4b189e6 The `<py:match>` directive now protects itself against simple infinite recursion (see MatchDirective), while still allowing recursion in general.
cmlenz
parents: 13
diff changeset
472 if result is True:
76b5d4b189e6 The `<py:match>` directive now protects itself against simple infinite recursion (see MatchDirective), while still allowing recursion in general.
cmlenz
parents: 13
diff changeset
473 content = [event]
76b5d4b189e6 The `<py:match>` directive now protects itself against simple infinite recursion (see MatchDirective), while still allowing recursion in general.
cmlenz
parents: 13
diff changeset
474 depth = 1
76b5d4b189e6 The `<py:match>` directive now protects itself against simple infinite recursion (see MatchDirective), while still allowing recursion in general.
cmlenz
parents: 13
diff changeset
475 while depth > 0:
76b5d4b189e6 The `<py:match>` directive now protects itself against simple infinite recursion (see MatchDirective), while still allowing recursion in general.
cmlenz
parents: 13
diff changeset
476 ev = stream.next()
76b5d4b189e6 The `<py:match>` directive now protects itself against simple infinite recursion (see MatchDirective), while still allowing recursion in general.
cmlenz
parents: 13
diff changeset
477 if ev[0] is Stream.START:
76b5d4b189e6 The `<py:match>` directive now protects itself against simple infinite recursion (see MatchDirective), while still allowing recursion in general.
cmlenz
parents: 13
diff changeset
478 depth += 1
76b5d4b189e6 The `<py:match>` directive now protects itself against simple infinite recursion (see MatchDirective), while still allowing recursion in general.
cmlenz
parents: 13
diff changeset
479 elif ev[0] is Stream.END:
76b5d4b189e6 The `<py:match>` directive now protects itself against simple infinite recursion (see MatchDirective), while still allowing recursion in general.
cmlenz
parents: 13
diff changeset
480 depth -= 1
76b5d4b189e6 The `<py:match>` directive now protects itself against simple infinite recursion (see MatchDirective), while still allowing recursion in general.
cmlenz
parents: 13
diff changeset
481 content.append(ev)
76b5d4b189e6 The `<py:match>` directive now protects itself against simple infinite recursion (see MatchDirective), while still allowing recursion in general.
cmlenz
parents: 13
diff changeset
482 test(*ev)
76b5d4b189e6 The `<py:match>` directive now protects itself against simple infinite recursion (see MatchDirective), while still allowing recursion in general.
cmlenz
parents: 13
diff changeset
483
76b5d4b189e6 The `<py:match>` directive now protects itself against simple infinite recursion (see MatchDirective), while still allowing recursion in general.
cmlenz
parents: 13
diff changeset
484 yield (Template.SUB,
76b5d4b189e6 The `<py:match>` directive now protects itself against simple infinite recursion (see MatchDirective), while still allowing recursion in general.
cmlenz
parents: 13
diff changeset
485 ([lambda stream, ctxt: self._apply(content, ctxt)], []),
76b5d4b189e6 The `<py:match>` directive now protects itself against simple infinite recursion (see MatchDirective), while still allowing recursion in general.
cmlenz
parents: 13
diff changeset
486 content[0][-1])
76b5d4b189e6 The `<py:match>` directive now protects itself against simple infinite recursion (see MatchDirective), while still allowing recursion in general.
cmlenz
parents: 13
diff changeset
487 else:
76b5d4b189e6 The `<py:match>` directive now protects itself against simple infinite recursion (see MatchDirective), while still allowing recursion in general.
cmlenz
parents: 13
diff changeset
488 yield event
76b5d4b189e6 The `<py:match>` directive now protects itself against simple infinite recursion (see MatchDirective), while still allowing recursion in general.
cmlenz
parents: 13
diff changeset
489
76b5d4b189e6 The `<py:match>` directive now protects itself against simple infinite recursion (see MatchDirective), while still allowing recursion in general.
cmlenz
parents: 13
diff changeset
490 def _apply(self, orig_stream, ctxt):
1
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
491 ctxt.push(select=lambda path: Stream(orig_stream).select(path))
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
492 for event in self.stream:
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
493 yield event
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
494 ctxt.pop()
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
495
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
496
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
497 class ReplaceDirective(Directive):
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
498 """Implementation of the `py:replace` template directive.
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
499
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
500 >>> ctxt = Context(bar='Bye')
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
501 >>> tmpl = Template('''<div xmlns:py="http://purl.org/kid/ns#">
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
502 ... <span py:replace="bar">Hello</span>
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
503 ... </div>''')
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
504 >>> print tmpl.generate(ctxt)
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
505 <div>
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
506 Bye
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
507 </div>
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
508
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
509 This directive is equivalent to `py:content` combined with `py:strip`,
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
510 providing a less verbose way to achieve the same effect:
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
511
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
512 >>> ctxt = Context(bar='Bye')
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
513 >>> tmpl = Template('''<div xmlns:py="http://purl.org/kid/ns#">
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
514 ... <span py:content="bar" py:strip="">Hello</span>
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
515 ... </div>''')
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
516 >>> print tmpl.generate(ctxt)
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
517 <div>
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
518 Bye
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
519 </div>
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
520 """
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
521 def __call__(self, stream, ctxt):
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
522 kind, data, pos = stream.next()
10
c5890ef863ba Moved the template-specific stream event kinds into the template module.
cmlenz
parents: 6
diff changeset
523 yield Template.EXPR, self.expr, pos
1
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
524
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
525
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
526 class StripDirective(Directive):
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
527 """Implementation of the `py:strip` template directive.
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
528
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
529 When the value of the `py:strip` attribute evaluates to `True`, the element
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
530 is stripped from the output
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
531
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
532 >>> tmpl = Template('''<div xmlns:py="http://purl.org/kid/ns#">
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
533 ... <div py:strip="True"><b>foo</b></div>
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
534 ... </div>''')
14
76b5d4b189e6 The `<py:match>` directive now protects itself against simple infinite recursion (see MatchDirective), while still allowing recursion in general.
cmlenz
parents: 13
diff changeset
535 >>> print tmpl.generate()
1
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
536 <div>
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
537 <b>foo</b>
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
538 </div>
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
539
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
540 On the other hand, when the attribute evaluates to `False`, the element is
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
541 not stripped:
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
542
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
543 >>> tmpl = Template('''<div xmlns:py="http://purl.org/kid/ns#">
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
544 ... <div py:strip="False"><b>foo</b></div>
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
545 ... </div>''')
14
76b5d4b189e6 The `<py:match>` directive now protects itself against simple infinite recursion (see MatchDirective), while still allowing recursion in general.
cmlenz
parents: 13
diff changeset
546 >>> print tmpl.generate()
1
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
547 <div>
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
548 <div><b>foo</b></div>
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
549 </div>
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
550
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
551 Leaving the attribute value empty is equivalent to a truth value:
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
552
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
553 >>> tmpl = Template('''<div xmlns:py="http://purl.org/kid/ns#">
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
554 ... <div py:strip=""><b>foo</b></div>
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
555 ... </div>''')
14
76b5d4b189e6 The `<py:match>` directive now protects itself against simple infinite recursion (see MatchDirective), while still allowing recursion in general.
cmlenz
parents: 13
diff changeset
556 >>> print tmpl.generate()
1
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
557 <div>
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
558 <b>foo</b>
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
559 </div>
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
560
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
561 This directive is particulary interesting for named template functions or
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
562 match templates that do not generate a top-level element:
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
563
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
564 >>> tmpl = Template('''<div xmlns:py="http://purl.org/kid/ns#">
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
565 ... <div py:def="echo(what)" py:strip="">
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
566 ... <b>${what}</b>
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
567 ... </div>
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
568 ... ${echo('foo')}
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
569 ... </div>''')
14
76b5d4b189e6 The `<py:match>` directive now protects itself against simple infinite recursion (see MatchDirective), while still allowing recursion in general.
cmlenz
parents: 13
diff changeset
570 >>> print tmpl.generate()
1
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
571 <div>
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
572 <b>foo</b>
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
573 </div>
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
574 """
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
575 def __call__(self, stream, ctxt):
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
576 if self.expr:
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
577 strip = self.expr.evaluate(ctxt)
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
578 else:
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
579 strip = True
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
580 if strip:
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
581 stream.next() # skip start tag
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
582 previous = stream.next()
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
583 for event in stream:
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
584 yield previous
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
585 previous = event
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
586 else:
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
587 for event in stream:
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
588 yield event
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
589
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
590
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
591 class Template(object):
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
592 """Can parse a template and transform it into the corresponding output
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
593 based on context data.
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
594 """
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
595 NAMESPACE = 'http://purl.org/kid/ns#'
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
596
10
c5890ef863ba Moved the template-specific stream event kinds into the template module.
cmlenz
parents: 6
diff changeset
597 EXPR = StreamEventKind('expr') # an expression
c5890ef863ba Moved the template-specific stream event kinds into the template module.
cmlenz
parents: 6
diff changeset
598 SUB = StreamEventKind('sub') # a "subprogram"
c5890ef863ba Moved the template-specific stream event kinds into the template module.
cmlenz
parents: 6
diff changeset
599
1
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
600 directives = [('def', DefDirective),
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
601 ('match', MatchDirective),
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
602 ('for', ForDirective),
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
603 ('if', IfDirective),
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
604 ('replace', ReplaceDirective),
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
605 ('content', ContentDirective),
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
606 ('attrs', AttrsDirective),
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
607 ('strip', StripDirective)]
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
608 _dir_by_name = dict(directives)
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
609 _dir_order = [directive[1] for directive in directives]
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
610
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
611 def __init__(self, source, filename=None):
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
612 """Initialize a template from either a string or a file-like object."""
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
613 if isinstance(source, basestring):
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
614 self.source = StringIO(source)
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
615 else:
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
616 self.source = source
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
617 self.filename = filename or '<string>'
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
618
14
76b5d4b189e6 The `<py:match>` directive now protects itself against simple infinite recursion (see MatchDirective), while still allowing recursion in general.
cmlenz
parents: 13
diff changeset
619 self.input_filters = [EvalFilter()]
1
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
620 self.filters = []
14
76b5d4b189e6 The `<py:match>` directive now protects itself against simple infinite recursion (see MatchDirective), while still allowing recursion in general.
cmlenz
parents: 13
diff changeset
621 self.output_filters = [WhitespaceFilter()]
1
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
622 self.parse()
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
623
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
624 def __repr__(self):
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
625 return '<%s "%s">' % (self.__class__.__name__,
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
626 os.path.basename(self.filename))
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
627
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
628 def parse(self):
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
629 """Parse the template.
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
630
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
631 The parsing stage parses the XML template and constructs a list of
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
632 directives that will be executed in the render stage. The input is
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
633 split up into literal output (markup that does not depend on the
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
634 context data) and actual directives (commands or variable
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
635 substitution).
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
636 """
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
637 stream = [] # list of events of the "compiled" template
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
638 dirmap = {} # temporary mapping of directives to elements
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
639 ns_prefix = {}
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
640 depth = 0
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
641
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
642 for kind, data, pos in XMLParser(self.source):
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
643
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
644 if kind is Stream.START_NS:
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
645 # Strip out the namespace declaration for template directives
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
646 prefix, uri = data
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
647 if uri == self.NAMESPACE:
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
648 ns_prefix[prefix] = uri
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
649 else:
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
650 stream.append((kind, data, pos))
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
651
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
652 elif kind is Stream.END_NS:
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
653 if data in ns_prefix:
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
654 del ns_prefix[data]
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
655 else:
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
656 stream.append((kind, data, pos))
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
657
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
658 elif kind is Stream.START:
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
659 # Record any directive attributes in start tags
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
660 tag, attrib = data
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
661 directives = []
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
662 new_attrib = []
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
663 for name, value in attrib:
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
664 if name.namespace == self.NAMESPACE:
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
665 cls = self._dir_by_name.get(name.localname)
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
666 if cls is None:
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
667 raise BadDirectiveError(name, self.filename, pos[0])
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
668 else:
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
669 directives.append(cls(self, value, pos))
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
670 else:
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
671 value = list(self._interpolate(value, *pos))
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
672 new_attrib.append((name, value))
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
673 if directives:
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
674 directives.sort(lambda a, b: cmp(self._dir_order.index(a.__class__),
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
675 self._dir_order.index(b.__class__)))
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
676 dirmap[(depth, tag)] = (directives, len(stream))
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
677
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
678 stream.append((kind, (tag, Attributes(new_attrib)), pos))
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
679 depth += 1
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
680
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
681 elif kind is Stream.END:
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
682 depth -= 1
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
683 stream.append((kind, data, pos))
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
684
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
685 # If there have have directive attributes with the corresponding
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
686 # start tag, move the events inbetween into a "subprogram"
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
687 if (depth, data) in dirmap:
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
688 directives, start_offset = dirmap.pop((depth, data))
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
689 substream = stream[start_offset:]
10
c5890ef863ba Moved the template-specific stream event kinds into the template module.
cmlenz
parents: 6
diff changeset
690 stream[start_offset:] = [(Template.SUB,
1
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
691 (directives, substream), pos)]
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
692
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
693 elif kind is Stream.TEXT:
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
694 for kind, data, pos in self._interpolate(data, *pos):
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
695 stream.append((kind, data, pos))
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
696
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
697 else:
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
698 stream.append((kind, data, pos))
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
699
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
700 self.stream = stream
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
701
14
76b5d4b189e6 The `<py:match>` directive now protects itself against simple infinite recursion (see MatchDirective), while still allowing recursion in general.
cmlenz
parents: 13
diff changeset
702 def generate(self, ctxt=None):
1
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
703 """Transform the template based on the given context data."""
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
704
14
76b5d4b189e6 The `<py:match>` directive now protects itself against simple infinite recursion (see MatchDirective), while still allowing recursion in general.
cmlenz
parents: 13
diff changeset
705 if ctxt is None:
76b5d4b189e6 The `<py:match>` directive now protects itself against simple infinite recursion (see MatchDirective), while still allowing recursion in general.
cmlenz
parents: 13
diff changeset
706 ctxt = Context()
76b5d4b189e6 The `<py:match>` directive now protects itself against simple infinite recursion (see MatchDirective), while still allowing recursion in general.
cmlenz
parents: 13
diff changeset
707
1
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
708 def _transform(stream):
14
76b5d4b189e6 The `<py:match>` directive now protects itself against simple infinite recursion (see MatchDirective), while still allowing recursion in general.
cmlenz
parents: 13
diff changeset
709 # Apply input filters
76b5d4b189e6 The `<py:match>` directive now protects itself against simple infinite recursion (see MatchDirective), while still allowing recursion in general.
cmlenz
parents: 13
diff changeset
710 for filter_ in chain(self.input_filters, self.filters):
1
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
711 stream = filter_(iter(stream), ctxt)
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
712
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
713 try:
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
714 for kind, data, pos in stream:
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
715
10
c5890ef863ba Moved the template-specific stream event kinds into the template module.
cmlenz
parents: 6
diff changeset
716 if kind is Template.SUB:
1
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
717 # This event is a list of directives and a list of
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
718 # nested events to which those directives should be
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
719 # applied
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
720 directives, substream = data
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
721 directives.reverse()
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
722 for directive in directives:
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
723 substream = directive(iter(substream), ctxt)
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
724 for event in _transform(iter(substream)):
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
725 yield event
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
726
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
727 else:
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
728 yield kind, data, pos
14
76b5d4b189e6 The `<py:match>` directive now protects itself against simple infinite recursion (see MatchDirective), while still allowing recursion in general.
cmlenz
parents: 13
diff changeset
729
1
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
730 except SyntaxError, err:
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
731 raise TemplateSyntaxError(err, self.filename, pos[0],
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
732 pos[1] + (err.offset or 0))
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
733
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
734 stream = _transform(self.stream)
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
735
14
76b5d4b189e6 The `<py:match>` directive now protects itself against simple infinite recursion (see MatchDirective), while still allowing recursion in general.
cmlenz
parents: 13
diff changeset
736 # Apply output filters
76b5d4b189e6 The `<py:match>` directive now protects itself against simple infinite recursion (see MatchDirective), while still allowing recursion in general.
cmlenz
parents: 13
diff changeset
737 for filter_ in self.output_filters:
1
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
738 stream = filter_(iter(stream), ctxt)
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
739
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
740 return Stream(stream)
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
741
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
742 _FULL_EXPR_RE = re.compile(r'(?<!\$)\$\{(.+?)\}')
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
743 _SHORT_EXPR_RE = re.compile(r'(?<!\$)\$([a-zA-Z][a-zA-Z0-9_\.]*)')
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
744
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
745 def _interpolate(cls, text, lineno=-1, offset=-1):
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
746 """Parse the given string and extract expressions.
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
747
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
748 This method returns a list containing both literal text and `Expression`
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
749 objects.
14
76b5d4b189e6 The `<py:match>` directive now protects itself against simple infinite recursion (see MatchDirective), while still allowing recursion in general.
cmlenz
parents: 13
diff changeset
750
1
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
751 @param text: the text to parse
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
752 @param lineno: the line number at which the text was found (optional)
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
753 @param offset: the column number at which the text starts in the source
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
754 (optional)
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
755 """
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
756 patterns = [cls._FULL_EXPR_RE, cls._SHORT_EXPR_RE]
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
757 def _interpolate(text):
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
758 for idx, group in enumerate(patterns.pop(0).split(text)):
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
759 if idx % 2:
10
c5890ef863ba Moved the template-specific stream event kinds into the template module.
cmlenz
parents: 6
diff changeset
760 yield Template.EXPR, Expression(group), (lineno, offset)
1
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
761 elif group:
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
762 if patterns:
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
763 for result in _interpolate(group):
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
764 yield result
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
765 else:
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
766 yield Stream.TEXT, group.replace('$$', '$'), \
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
767 (lineno, offset)
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
768 return _interpolate(text)
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
769 _interpolate = classmethod(_interpolate)
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
770
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
771
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
772 class TemplateLoader(object):
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
773 """Responsible for loading templates from files on the specified search
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
774 path.
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
775
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
776 >>> import tempfile
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
777 >>> fd, path = tempfile.mkstemp(suffix='.html', prefix='template')
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
778 >>> os.write(fd, '<p>$var</p>')
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
779 11
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
780 >>> os.close(fd)
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
781
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
782 The template loader accepts a list of directory paths that are then used
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
783 when searching for template files, in the given order:
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
784
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
785 >>> loader = TemplateLoader([os.path.dirname(path)])
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
786
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
787 The `load()` method first checks the template cache whether the requested
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
788 template has already been loaded. If not, it attempts to locate the
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
789 template file, and returns the corresponding `Template` object:
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
790
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
791 >>> template = loader.load(os.path.basename(path))
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
792 >>> isinstance(template, Template)
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
793 True
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
794
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
795 Template instances are cached: requesting a template with the same name
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
796 results in the same instance being returned:
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
797
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
798 >>> loader.load(os.path.basename(path)) is template
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
799 True
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
800 """
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
801 def __init__(self, search_path=None, auto_reload=False):
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
802 """Create the template laoder.
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
803
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
804 @param search_path: a list of absolute path names that should be
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
805 searched for template files
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
806 @param auto_reload: whether to check the last modification time of
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
807 template files, and reload them if they have changed
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
808 """
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
809 self.search_path = search_path
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
810 if self.search_path is None:
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
811 self.search_path = []
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
812 self.auto_reload = auto_reload
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
813 self._cache = {}
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
814 self._mtime = {}
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
815
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
816 def load(self, filename):
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
817 """Load the template with the given name.
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
818
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
819 This method searches the search path trying to locate a template
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
820 matching the given name. If no such template is found, a
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
821 `TemplateNotFound` exception is raised. Otherwise, a `Template` object
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
822 representing the requested template is returned.
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
823
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
824 Template searches are cached to avoid having to parse the same template
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
825 file more than once. Thus, subsequent calls of this method with the
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
826 same template file name will return the same `Template` object.
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
827
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
828 @param filename: the relative path of the template file to load
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
829 """
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
830 filename = os.path.normpath(filename)
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
831 try:
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
832 tmpl = self._cache[filename]
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
833 if not self.auto_reload or \
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
834 os.path.getmtime(tmpl.filename) == self._mtime[filename]:
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
835 return tmpl
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
836 except KeyError:
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
837 pass
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
838 for dirname in self.search_path:
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
839 filepath = os.path.join(dirname, filename)
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
840 try:
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
841 fileobj = file(filepath, 'rt')
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
842 try:
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
843 tmpl = Template(fileobj, filename=filepath)
14
76b5d4b189e6 The `<py:match>` directive now protects itself against simple infinite recursion (see MatchDirective), while still allowing recursion in general.
cmlenz
parents: 13
diff changeset
844 tmpl.input_filters.append(IncludeFilter(self, tmpl))
1
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
845 finally:
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
846 fileobj.close()
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
847 self._cache[filename] = tmpl
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
848 self._mtime[filename] = os.path.getmtime(filepath)
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
849 return tmpl
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
850 except IOError:
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
851 continue
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
852 raise TemplateNotFound(filename, self.search_path)
Copyright (C) 2012-2017 Edgewall Software