annotate markup/template.py @ 50:d3842cd76e92 trunk

Fix the way multiple directives are applied to a single `SUB` in many cases by making the directives themselves responsible for applying any remaining directives.
author cmlenz
date Tue, 04 Jul 2006 08:37:25 +0000
parents a5d585dd38c4
children b2383634ec04
rev   line source
1
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
1 # -*- coding: utf-8 -*-
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
2 #
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
3 # Copyright (C) 2006 Christopher Lenz
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
4 # All rights reserved.
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
5 #
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
6 # This software is licensed as described in the file COPYING, which
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
7 # you should have received as part of this distribution. The terms
27
b4f78c05e5c9 * Fix the boilerplate in the Python source files.
cmlenz
parents: 23
diff changeset
8 # are also available at http://markup.cmlenz.net/wiki/License.
1
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
9 #
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
10 # This software consists of voluntary contributions made by many
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
11 # individuals. For the exact contribution history, see the revision
27
b4f78c05e5c9 * Fix the boilerplate in the Python source files.
cmlenz
parents: 23
diff changeset
12 # history and logs, available at http://markup.cmlenz.net/log/.
1
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
13
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
14 """Template engine that is compatible with Kid (http://kid.lesscode.org) to a
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
15 certain extent.
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
16
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
17 Differences include:
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
18 * No generation of Python code for a template; the template is "interpreted"
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
19 * No support for <?python ?> processing instructions
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
20 * Expressions are evaluated in a more flexible manner, meaning you can use e.g.
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
21 attribute access notation to access items in a dictionary, etc
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
22 * Use of XInclude and match templates instead of Kid's py:extends/py:layout
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
23 directives
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
24 * Real (thread-safe) search path support
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
25 * No dependency on ElementTree (due to the lack of pos info)
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
26 * The original pos of parse events is kept throughout the processing
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
27 pipeline, so that errors can be tracked back to a specific line/column in
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
28 the template file
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
29 * py:match directives use (basic) XPath expressions to match against input
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
30 nodes, making match templates more powerful while keeping the syntax simple
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
31
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
32 Todo items:
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
33 * Improved error reporting
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
34 * Support for using directives as elements and not just as attributes, reducing
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
35 the need for wrapper elements with py:strip=""
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
36 * Support for list comprehensions and generator expressions in expressions
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
37
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
38 Random thoughts:
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
39 * Is there any need to support py:extends and/or py:layout?
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
40 * Could we generate byte code from expressions?
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
41 """
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
42
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
43 import compiler
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
44 import os
21
b4d17897d053 * Include paths are now interpreted relative to the path of the including template. Closes #3.
cmlenz
parents: 18
diff changeset
45 import posixpath
1
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
46 import re
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
47 from StringIO import StringIO
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
48
18
5420cfe42d36 Actually make use of the `markup.core.Namespace` class, and add a couple of doctests.
cmlenz
parents: 17
diff changeset
49 from markup.core import Attributes, Namespace, Stream, StreamEventKind
1
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
50 from markup.eval import Expression
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
51 from markup.input import HTML, XMLParser, XML
14
c7d33e0c9839 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.path import Path
1
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
53
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
54 __all__ = ['Context', 'BadDirectiveError', 'TemplateError',
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
55 'TemplateSyntaxError', 'TemplateNotFound', 'Template',
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
56 'TemplateLoader']
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
57
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
58
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
59 class TemplateError(Exception):
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
60 """Base exception class for errors related to template processing."""
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
61
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
62
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
63 class TemplateSyntaxError(TemplateError):
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
64 """Exception raised when an expression in a template causes a Python syntax
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
65 error."""
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
66
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
67 def __init__(self, message, filename='<string>', lineno=-1, offset=-1):
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
68 if isinstance(message, SyntaxError) and message.lineno is not None:
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
69 message = str(message).replace(' (line %d)' % message.lineno, '')
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
70 TemplateError.__init__(self, message)
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
71 self.filename = filename
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
72 self.lineno = lineno
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
73 self.offset = offset
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
74
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
75
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
76 class BadDirectiveError(TemplateSyntaxError):
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
77 """Exception raised when an unknown directive is encountered when parsing
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
78 a template.
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
79
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
80 An unknown directive is any attribute using the namespace for directives,
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
81 with a local name that doesn't match any registered directive.
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
82 """
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
83
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
84 def __init__(self, name, filename='<string>', lineno=-1):
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
85 TemplateSyntaxError.__init__(self, 'Bad directive "%s"' % name.localname,
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
86 filename, lineno)
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
87
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
88
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
89 class TemplateNotFound(TemplateError):
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
90 """Exception raised when a specific template file could not be found."""
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
91
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
92 def __init__(self, name, search_path):
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
93 TemplateError.__init__(self, 'Template "%s" not found' % name)
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
94 self.search_path = search_path
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
95
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
96
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
97 class Context(object):
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
98 """A container for template input data.
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
99
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
100 A context provides a stack of scopes. Template directives such as loops can
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
101 push a new scope on the stack with data that should only be available
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
102 inside the loop. When the loop terminates, that scope can get popped off
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
103 the stack again.
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
104
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
105 >>> ctxt = Context(one='foo', other=1)
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
106 >>> ctxt.get('one')
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
107 'foo'
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
108 >>> ctxt.get('other')
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
109 1
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
110 >>> ctxt.push(one='frost')
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
111 >>> ctxt.get('one')
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
112 'frost'
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
113 >>> ctxt.get('other')
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
114 1
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
115 >>> ctxt.pop()
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
116 >>> ctxt.get('one')
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
117 'foo'
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
118 """
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
119
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
120 def __init__(self, **data):
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
121 self.stack = [data]
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
122
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
123 def __getitem__(self, key):
29
ab8703fa68b8 * Minor simplification of template directives: they no longer get passed the template instance and the position, as no directive was actually using
cmlenz
parents: 27
diff changeset
124 """Get a variable's value, starting at the current context frame and
ab8703fa68b8 * Minor simplification of template directives: they no longer get passed the template instance and the position, as no directive was actually using
cmlenz
parents: 27
diff changeset
125 going upward.
1
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
126 """
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
127 return self.get(key)
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
128
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
129 def __repr__(self):
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
130 return repr(self.stack)
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
131
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
132 def __setitem__(self, key, value):
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
133 """Set a variable in the current context."""
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
134 self.stack[0][key] = value
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
135
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
136 def get(self, key):
29
ab8703fa68b8 * Minor simplification of template directives: they no longer get passed the template instance and the position, as no directive was actually using
cmlenz
parents: 27
diff changeset
137 """Get a variable's value, starting at the current context frame and
ab8703fa68b8 * Minor simplification of template directives: they no longer get passed the template instance and the position, as no directive was actually using
cmlenz
parents: 27
diff changeset
138 going upward.
ab8703fa68b8 * Minor simplification of template directives: they no longer get passed the template instance and the position, as no directive was actually using
cmlenz
parents: 27
diff changeset
139 """
1
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
140 for frame in self.stack:
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
141 if key in frame:
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
142 return frame[key]
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
143
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
144 def push(self, **data):
29
ab8703fa68b8 * Minor simplification of template directives: they no longer get passed the template instance and the position, as no directive was actually using
cmlenz
parents: 27
diff changeset
145 """Push a new context frame on the stack."""
1
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
146 self.stack.insert(0, data)
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
147
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
148 def pop(self):
29
ab8703fa68b8 * Minor simplification of template directives: they no longer get passed the template instance and the position, as no directive was actually using
cmlenz
parents: 27
diff changeset
149 """Pop the top-most context frame from the stack.
ab8703fa68b8 * Minor simplification of template directives: they no longer get passed the template instance and the position, as no directive was actually using
cmlenz
parents: 27
diff changeset
150
ab8703fa68b8 * Minor simplification of template directives: they no longer get passed the template instance and the position, as no directive was actually using
cmlenz
parents: 27
diff changeset
151 If the stack is empty, an `AssertionError` is raised.
ab8703fa68b8 * Minor simplification of template directives: they no longer get passed the template instance and the position, as no directive was actually using
cmlenz
parents: 27
diff changeset
152 """
1
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
153 assert self.stack, 'Pop from empty context stack'
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
154 self.stack.pop(0)
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
155
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
156
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
157 class Directive(object):
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
158 """Abstract base class for template directives.
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
159
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
160 A directive is basically a callable that takes two parameters: `ctxt` is
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
161 the template data context, and `stream` is an iterable over the events that
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
162 the directive applies to.
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
163
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
164 Directives can be "anonymous" or "registered". Registered directives can be
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
165 applied by the template author using an XML attribute with the
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
166 corresponding name in the template. Such directives should be subclasses of
31
2ab5fa60575d * More test cases for expression evaluation.
cmlenz
parents: 29
diff changeset
167 this base class that can be instantiated with the value of the directive
2ab5fa60575d * More test cases for expression evaluation.
cmlenz
parents: 29
diff changeset
168 attribute as parameter.
1
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
169
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
170 Anonymous directives are simply functions conforming to the protocol
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
171 described above, and can only be applied programmatically (for example by
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
172 template filters).
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
173 """
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
174 __slots__ = ['expr']
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
175
29
ab8703fa68b8 * Minor simplification of template directives: they no longer get passed the template instance and the position, as no directive was actually using
cmlenz
parents: 27
diff changeset
176 def __init__(self, value):
1
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
177 self.expr = value and Expression(value) or None
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
178
50
d3842cd76e92 Fix the way multiple directives are applied to a single `SUB` in many cases by making the directives themselves responsible for applying any remaining directives.
cmlenz
parents: 48
diff changeset
179 def __call__(self, stream, ctxt, directives=None):
1
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
180 raise NotImplementedError
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
181
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
182 def __repr__(self):
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
183 expr = ''
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
184 if self.expr is not None:
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
185 expr = ' "%s"' % self.expr.source
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
186 return '<%s%s>' % (self.__class__.__name__, expr)
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
187
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
188
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
189 class AttrsDirective(Directive):
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
190 """Implementation of the `py:attrs` template directive.
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
191
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
192 The value of the `py:attrs` attribute should be a dictionary. The keys and
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
193 values of that dictionary will be added as attributes to the element:
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
194
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
195 >>> ctxt = Context(foo={'class': 'collapse'})
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
196 >>> tmpl = Template('''<ul xmlns:py="http://purl.org/kid/ns#">
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
197 ... <li py:attrs="foo">Bar</li>
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
198 ... </ul>''')
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
199 >>> print tmpl.generate(ctxt)
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
200 <ul>
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
201 <li class="collapse">Bar</li>
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
202 </ul>
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
203
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
204 If the value evaluates to `None` (or any other non-truth value), no
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
205 attributes are added:
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
206
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
207 >>> ctxt = Context(foo=None)
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
208 >>> print tmpl.generate(ctxt)
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
209 <ul>
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
210 <li>Bar</li>
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
211 </ul>
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
212 """
50
d3842cd76e92 Fix the way multiple directives are applied to a single `SUB` in many cases by making the directives themselves responsible for applying any remaining directives.
cmlenz
parents: 48
diff changeset
213 __slots__ = []
d3842cd76e92 Fix the way multiple directives are applied to a single `SUB` in many cases by making the directives themselves responsible for applying any remaining directives.
cmlenz
parents: 48
diff changeset
214
d3842cd76e92 Fix the way multiple directives are applied to a single `SUB` in many cases by making the directives themselves responsible for applying any remaining directives.
cmlenz
parents: 48
diff changeset
215 def __call__(self, stream, ctxt, directives=None):
1
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
216 kind, (tag, attrib), pos = stream.next()
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
217 attrs = self.expr.evaluate(ctxt)
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
218 if attrs:
5
dbb08edbc615 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 = Attributes(attrib[:])
dbb08edbc615 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 if not isinstance(attrs, list): # assume it's a dict
dbb08edbc615 Improved `py:attrs` directive so that it removes existing attributes if they evaluate to `None` (AFAICT matching Kid behavior).
cmlenz
parents: 1
diff changeset
221 attrs = attrs.items()
dbb08edbc615 Improved `py:attrs` directive so that it removes existing attributes if they evaluate to `None` (AFAICT matching Kid behavior).
cmlenz
parents: 1
diff changeset
222 for name, value in attrs:
dbb08edbc615 Improved `py:attrs` directive so that it removes existing attributes if they evaluate to `None` (AFAICT matching Kid behavior).
cmlenz
parents: 1
diff changeset
223 if value is None:
dbb08edbc615 Improved `py:attrs` directive so that it removes existing attributes if they evaluate to `None` (AFAICT matching Kid behavior).
cmlenz
parents: 1
diff changeset
224 attrib.remove(name)
dbb08edbc615 Improved `py:attrs` directive so that it removes existing attributes if they evaluate to `None` (AFAICT matching Kid behavior).
cmlenz
parents: 1
diff changeset
225 else:
dbb08edbc615 Improved `py:attrs` directive so that it removes existing attributes if they evaluate to `None` (AFAICT matching Kid behavior).
cmlenz
parents: 1
diff changeset
226 attrib.set(name, unicode(value).strip())
dbb08edbc615 Improved `py:attrs` directive so that it removes existing attributes if they evaluate to `None` (AFAICT matching Kid behavior).
cmlenz
parents: 1
diff changeset
227 yield kind, (tag, attrib), pos
1
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
228 for event in stream:
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
229 yield event
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
230
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
231
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
232 class ContentDirective(Directive):
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
233 """Implementation of the `py:content` template directive.
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
234
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
235 This directive replaces the content of the element with the result of
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
236 evaluating the value of the `py:content` attribute:
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
237
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
238 >>> ctxt = Context(bar='Bye')
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
239 >>> tmpl = Template('''<ul xmlns:py="http://purl.org/kid/ns#">
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
240 ... <li py:content="bar">Hello</li>
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
241 ... </ul>''')
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
242 >>> print tmpl.generate(ctxt)
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
243 <ul>
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
244 <li>Bye</li>
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
245 </ul>
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
246 """
50
d3842cd76e92 Fix the way multiple directives are applied to a single `SUB` in many cases by making the directives themselves responsible for applying any remaining directives.
cmlenz
parents: 48
diff changeset
247 __slots__ = []
d3842cd76e92 Fix the way multiple directives are applied to a single `SUB` in many cases by making the directives themselves responsible for applying any remaining directives.
cmlenz
parents: 48
diff changeset
248
d3842cd76e92 Fix the way multiple directives are applied to a single `SUB` in many cases by making the directives themselves responsible for applying any remaining directives.
cmlenz
parents: 48
diff changeset
249 def __call__(self, stream, ctxt, directives):
d3842cd76e92 Fix the way multiple directives are applied to a single `SUB` in many cases by making the directives themselves responsible for applying any remaining directives.
cmlenz
parents: 48
diff changeset
250 def generate():
d3842cd76e92 Fix the way multiple directives are applied to a single `SUB` in many cases by making the directives themselves responsible for applying any remaining directives.
cmlenz
parents: 48
diff changeset
251 kind, data, pos = stream.next()
d3842cd76e92 Fix the way multiple directives are applied to a single `SUB` in many cases by making the directives themselves responsible for applying any remaining directives.
cmlenz
parents: 48
diff changeset
252 if kind is Stream.START:
d3842cd76e92 Fix the way multiple directives are applied to a single `SUB` in many cases by making the directives themselves responsible for applying any remaining directives.
cmlenz
parents: 48
diff changeset
253 yield kind, data, pos # emit start tag
d3842cd76e92 Fix the way multiple directives are applied to a single `SUB` in many cases by making the directives themselves responsible for applying any remaining directives.
cmlenz
parents: 48
diff changeset
254 yield Template.EXPR, self.expr, pos
d3842cd76e92 Fix the way multiple directives are applied to a single `SUB` in many cases by making the directives themselves responsible for applying any remaining directives.
cmlenz
parents: 48
diff changeset
255 previous = stream.next()
d3842cd76e92 Fix the way multiple directives are applied to a single `SUB` in many cases by making the directives themselves responsible for applying any remaining directives.
cmlenz
parents: 48
diff changeset
256 for event in stream:
d3842cd76e92 Fix the way multiple directives are applied to a single `SUB` in many cases by making the directives themselves responsible for applying any remaining directives.
cmlenz
parents: 48
diff changeset
257 previous = event
d3842cd76e92 Fix the way multiple directives are applied to a single `SUB` in many cases by making the directives themselves responsible for applying any remaining directives.
cmlenz
parents: 48
diff changeset
258 if previous is not None:
d3842cd76e92 Fix the way multiple directives are applied to a single `SUB` in many cases by making the directives themselves responsible for applying any remaining directives.
cmlenz
parents: 48
diff changeset
259 yield previous
d3842cd76e92 Fix the way multiple directives are applied to a single `SUB` in many cases by making the directives themselves responsible for applying any remaining directives.
cmlenz
parents: 48
diff changeset
260 output = generate()
d3842cd76e92 Fix the way multiple directives are applied to a single `SUB` in many cases by making the directives themselves responsible for applying any remaining directives.
cmlenz
parents: 48
diff changeset
261 if directives:
d3842cd76e92 Fix the way multiple directives are applied to a single `SUB` in many cases by making the directives themselves responsible for applying any remaining directives.
cmlenz
parents: 48
diff changeset
262 output = directives[0](output, ctxt, directives[1:])
d3842cd76e92 Fix the way multiple directives are applied to a single `SUB` in many cases by making the directives themselves responsible for applying any remaining directives.
cmlenz
parents: 48
diff changeset
263 return output
1
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
264
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
265
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
266 class DefDirective(Directive):
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
267 """Implementation of the `py:def` template directive.
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
268
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
269 This directive can be used to create "Named Template Functions", which
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
270 are template snippets that are not actually output during normal
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
271 processing, but rather can be expanded from expressions in other places
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
272 in the template.
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
273
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
274 A named template function can be used just like a normal Python function
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
275 from template expressions:
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
276
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
277 >>> ctxt = Context(bar='Bye')
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
278 >>> tmpl = Template('''<div xmlns:py="http://purl.org/kid/ns#">
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
279 ... <p py:def="echo(greeting, name='world')" class="message">
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
280 ... ${greeting}, ${name}!
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
281 ... </p>
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
282 ... ${echo('hi', name='you')}
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
283 ... </div>''')
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
284 >>> print tmpl.generate(ctxt)
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
285 <div>
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
286 <p class="message">
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
287 hi, you!
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
288 </p>
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
289 </div>
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
290
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
291 >>> ctxt = Context(bar='Bye')
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
292 >>> tmpl = Template('''<div xmlns:py="http://purl.org/kid/ns#">
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
293 ... <p py:def="echo(greeting, name='world')" class="message">
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
294 ... ${greeting}, ${name}!
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
295 ... </p>
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
296 ... <div py:replace="echo('hello')"></div>
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
297 ... </div>''')
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
298 >>> print tmpl.generate(ctxt)
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
299 <div>
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
300 <p class="message">
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
301 hello, world!
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
302 </p>
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
303 </div>
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
304 """
50
d3842cd76e92 Fix the way multiple directives are applied to a single `SUB` in many cases by making the directives themselves responsible for applying any remaining directives.
cmlenz
parents: 48
diff changeset
305 __slots__ = ['name', 'args', 'defaults', 'stream', 'directives']
1
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
306
29
ab8703fa68b8 * Minor simplification of template directives: they no longer get passed the template instance and the position, as no directive was actually using
cmlenz
parents: 27
diff changeset
307 def __init__(self, args):
ab8703fa68b8 * Minor simplification of template directives: they no longer get passed the template instance and the position, as no directive was actually using
cmlenz
parents: 27
diff changeset
308 Directive.__init__(self, None)
1
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
309 ast = compiler.parse(args, 'eval').node
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
310 self.args = []
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
311 self.defaults = {}
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
312 if isinstance(ast, compiler.ast.CallFunc):
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
313 self.name = ast.node.name
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
314 for arg in ast.args:
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
315 if isinstance(arg, compiler.ast.Keyword):
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
316 self.args.append(arg.name)
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
317 self.defaults[arg.name] = arg.expr.value
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
318 else:
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
319 self.args.append(arg.name)
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
320 else:
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
321 self.name = ast.name
50
d3842cd76e92 Fix the way multiple directives are applied to a single `SUB` in many cases by making the directives themselves responsible for applying any remaining directives.
cmlenz
parents: 48
diff changeset
322 self.stream, self.directives = [], []
1
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
323
50
d3842cd76e92 Fix the way multiple directives are applied to a single `SUB` in many cases by making the directives themselves responsible for applying any remaining directives.
cmlenz
parents: 48
diff changeset
324 def __call__(self, stream, ctxt, directives):
1
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
325 self.stream = list(stream)
50
d3842cd76e92 Fix the way multiple directives are applied to a single `SUB` in many cases by making the directives themselves responsible for applying any remaining directives.
cmlenz
parents: 48
diff changeset
326 self.directives = directives
1
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
327 ctxt[self.name] = lambda *args, **kwargs: self._exec(ctxt, *args,
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
328 **kwargs)
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
329 return []
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
330
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
331 def _exec(self, ctxt, *args, **kwargs):
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
332 scope = {}
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
333 args = list(args) # make mutable
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
334 for name in self.args:
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
335 if args:
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
336 scope[name] = args.pop(0)
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
337 else:
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
338 scope[name] = kwargs.pop(name, self.defaults.get(name))
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
339 ctxt.push(**scope)
50
d3842cd76e92 Fix the way multiple directives are applied to a single `SUB` in many cases by making the directives themselves responsible for applying any remaining directives.
cmlenz
parents: 48
diff changeset
340 stream = iter(self.stream)
d3842cd76e92 Fix the way multiple directives are applied to a single `SUB` in many cases by making the directives themselves responsible for applying any remaining directives.
cmlenz
parents: 48
diff changeset
341 if self.directives:
d3842cd76e92 Fix the way multiple directives are applied to a single `SUB` in many cases by making the directives themselves responsible for applying any remaining directives.
cmlenz
parents: 48
diff changeset
342 stream = self.directives[0](stream, ctxt, self.directives[1:])
d3842cd76e92 Fix the way multiple directives are applied to a single `SUB` in many cases by making the directives themselves responsible for applying any remaining directives.
cmlenz
parents: 48
diff changeset
343 for event in stream:
1
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
344 yield event
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
345 ctxt.pop()
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
346
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
347
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
348 class ForDirective(Directive):
31
2ab5fa60575d * More test cases for expression evaluation.
cmlenz
parents: 29
diff changeset
349 """Implementation of the `py:for` template directive for repeating an
2ab5fa60575d * More test cases for expression evaluation.
cmlenz
parents: 29
diff changeset
350 element based on an iterable in the context data.
1
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
351
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
352 >>> ctxt = Context(items=[1, 2, 3])
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
353 >>> tmpl = Template('''<ul xmlns:py="http://purl.org/kid/ns#">
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
354 ... <li py:for="item in items">${item}</li>
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
355 ... </ul>''')
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
356 >>> print tmpl.generate(ctxt)
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
357 <ul>
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
358 <li>1</li><li>2</li><li>3</li>
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
359 </ul>
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
360 """
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
361 __slots__ = ['targets']
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
362
29
ab8703fa68b8 * Minor simplification of template directives: they no longer get passed the template instance and the position, as no directive was actually using
cmlenz
parents: 27
diff changeset
363 def __init__(self, value):
ab8703fa68b8 * Minor simplification of template directives: they no longer get passed the template instance and the position, as no directive was actually using
cmlenz
parents: 27
diff changeset
364 targets, value = value.split(' in ', 1)
1
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
365 self.targets = [str(name.strip()) for name in targets.split(',')]
29
ab8703fa68b8 * Minor simplification of template directives: they no longer get passed the template instance and the position, as no directive was actually using
cmlenz
parents: 27
diff changeset
366 Directive.__init__(self, value)
1
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
367
50
d3842cd76e92 Fix the way multiple directives are applied to a single `SUB` in many cases by making the directives themselves responsible for applying any remaining directives.
cmlenz
parents: 48
diff changeset
368 def __call__(self, stream, ctxt, directives):
14
c7d33e0c9839 The `<py:match>` directive now protects itself against simple infinite recursion (see MatchDirective), while still allowing recursion in general.
cmlenz
parents: 13
diff changeset
369 iterable = self.expr.evaluate(ctxt) or []
1
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
370 if iterable is not None:
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
371 stream = list(stream)
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
372 for item in iter(iterable):
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
373 if len(self.targets) == 1:
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
374 item = [item]
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
375 scope = {}
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
376 for idx, name in enumerate(self.targets):
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
377 scope[name] = item[idx]
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
378 ctxt.push(**scope)
50
d3842cd76e92 Fix the way multiple directives are applied to a single `SUB` in many cases by making the directives themselves responsible for applying any remaining directives.
cmlenz
parents: 48
diff changeset
379 if directives:
d3842cd76e92 Fix the way multiple directives are applied to a single `SUB` in many cases by making the directives themselves responsible for applying any remaining directives.
cmlenz
parents: 48
diff changeset
380 stream = list(directives[0](iter(stream), ctxt,
d3842cd76e92 Fix the way multiple directives are applied to a single `SUB` in many cases by making the directives themselves responsible for applying any remaining directives.
cmlenz
parents: 48
diff changeset
381 directives[1:]))
1
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
382 for event in stream:
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
383 yield event
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
384 ctxt.pop()
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
385
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
386 def __repr__(self):
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
387 return '<%s "%s in %s">' % (self.__class__.__name__,
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
388 ', '.join(self.targets), self.expr.source)
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
389
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
390
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
391 class IfDirective(Directive):
31
2ab5fa60575d * More test cases for expression evaluation.
cmlenz
parents: 29
diff changeset
392 """Implementation of the `py:if` template directive for conditionally
2ab5fa60575d * More test cases for expression evaluation.
cmlenz
parents: 29
diff changeset
393 excluding elements from being output.
1
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
394
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
395 >>> ctxt = Context(foo=True, bar='Hello')
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
396 >>> tmpl = Template('''<div xmlns:py="http://purl.org/kid/ns#">
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
397 ... <b py:if="foo">${bar}</b>
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
398 ... </div>''')
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
399 >>> print tmpl.generate(ctxt)
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
400 <div>
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
401 <b>Hello</b>
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
402 </div>
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
403 """
50
d3842cd76e92 Fix the way multiple directives are applied to a single `SUB` in many cases by making the directives themselves responsible for applying any remaining directives.
cmlenz
parents: 48
diff changeset
404 __slots__ = []
d3842cd76e92 Fix the way multiple directives are applied to a single `SUB` in many cases by making the directives themselves responsible for applying any remaining directives.
cmlenz
parents: 48
diff changeset
405
d3842cd76e92 Fix the way multiple directives are applied to a single `SUB` in many cases by making the directives themselves responsible for applying any remaining directives.
cmlenz
parents: 48
diff changeset
406 def __call__(self, stream, ctxt, directives):
1
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
407 if self.expr.evaluate(ctxt):
50
d3842cd76e92 Fix the way multiple directives are applied to a single `SUB` in many cases by making the directives themselves responsible for applying any remaining directives.
cmlenz
parents: 48
diff changeset
408 if directives:
d3842cd76e92 Fix the way multiple directives are applied to a single `SUB` in many cases by making the directives themselves responsible for applying any remaining directives.
cmlenz
parents: 48
diff changeset
409 stream = directives[0](stream, ctxt, directives[1:])
1
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
410 return stream
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
411 return []
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
412
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
413
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
414 class MatchDirective(Directive):
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
415 """Implementation of the `py:match` template directive.
14
c7d33e0c9839 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
1
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
417 >>> tmpl = Template('''<div xmlns:py="http://purl.org/kid/ns#">
17
74cc70129d04 Refactoring to address #6: all match templates are now processed by a single filter, which means that match templates added by included templates are properly applied. A side effect of this refactoring is that `Context` objects may not be reused across multiple template processing runs.
cmlenz
parents: 14
diff changeset
418 ... <span py:match="greeting">
1
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
419 ... Hello ${select('@name')}
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
420 ... </span>
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
421 ... <greeting name="Dude" />
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
422 ... </div>''')
14
c7d33e0c9839 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 >>> print tmpl.generate()
1
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
424 <div>
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
425 <span>
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
426 Hello Dude
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
427 </span>
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
428 </div>
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
429 """
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
430 __slots__ = ['path', 'stream']
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
431
29
ab8703fa68b8 * Minor simplification of template directives: they no longer get passed the template instance and the position, as no directive was actually using
cmlenz
parents: 27
diff changeset
432 def __init__(self, value):
ab8703fa68b8 * Minor simplification of template directives: they no longer get passed the template instance and the position, as no directive was actually using
cmlenz
parents: 27
diff changeset
433 Directive.__init__(self, None)
14
c7d33e0c9839 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 self.path = Path(value)
1
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
435 self.stream = []
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
436
50
d3842cd76e92 Fix the way multiple directives are applied to a single `SUB` in many cases by making the directives themselves responsible for applying any remaining directives.
cmlenz
parents: 48
diff changeset
437 def __call__(self, stream, ctxt, directives):
1
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
438 self.stream = list(stream)
38
ee669cb9cccc Fix for #2 (incorrect context node in path expressions). Still some paths that produce incorrect results, but the common case seems to work now.
cmlenz
parents: 37
diff changeset
439 ctxt._match_templates.append((self.path.test(ignore_context=True),
50
d3842cd76e92 Fix the way multiple directives are applied to a single `SUB` in many cases by making the directives themselves responsible for applying any remaining directives.
cmlenz
parents: 48
diff changeset
440 self.path, self.stream, directives))
1
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
441 return []
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
442
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
443 def __repr__(self):
14
c7d33e0c9839 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 return '<%s "%s">' % (self.__class__.__name__, self.path.source)
1
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
445
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
446
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
447 class ReplaceDirective(Directive):
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
448 """Implementation of the `py:replace` template directive.
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
449
31
2ab5fa60575d * More test cases for expression evaluation.
cmlenz
parents: 29
diff changeset
450 This directive replaces the element with the result of evaluating the
2ab5fa60575d * More test cases for expression evaluation.
cmlenz
parents: 29
diff changeset
451 value of the `py:replace` attribute:
2ab5fa60575d * More test cases for expression evaluation.
cmlenz
parents: 29
diff changeset
452
1
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
453 >>> ctxt = Context(bar='Bye')
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
454 >>> tmpl = Template('''<div xmlns:py="http://purl.org/kid/ns#">
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
455 ... <span py:replace="bar">Hello</span>
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
456 ... </div>''')
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
457 >>> print tmpl.generate(ctxt)
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
458 <div>
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
459 Bye
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
460 </div>
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
461
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
462 This directive is equivalent to `py:content` combined with `py:strip`,
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
463 providing a less verbose way to achieve the same effect:
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
464
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
465 >>> ctxt = Context(bar='Bye')
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
466 >>> tmpl = Template('''<div xmlns:py="http://purl.org/kid/ns#">
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
467 ... <span py:content="bar" py:strip="">Hello</span>
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
468 ... </div>''')
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
469 >>> print tmpl.generate(ctxt)
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
470 <div>
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
471 Bye
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
472 </div>
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
473 """
50
d3842cd76e92 Fix the way multiple directives are applied to a single `SUB` in many cases by making the directives themselves responsible for applying any remaining directives.
cmlenz
parents: 48
diff changeset
474 __slots__ = []
d3842cd76e92 Fix the way multiple directives are applied to a single `SUB` in many cases by making the directives themselves responsible for applying any remaining directives.
cmlenz
parents: 48
diff changeset
475
d3842cd76e92 Fix the way multiple directives are applied to a single `SUB` in many cases by making the directives themselves responsible for applying any remaining directives.
cmlenz
parents: 48
diff changeset
476 def __call__(self, stream, ctxt, directives=None):
1
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
477 kind, data, pos = stream.next()
10
f77f7a91aa46 Moved the template-specific stream event kinds into the template module.
cmlenz
parents: 6
diff changeset
478 yield Template.EXPR, self.expr, pos
1
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
479
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
480
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
481 class StripDirective(Directive):
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
482 """Implementation of the `py:strip` template directive.
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
483
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
484 When the value of the `py:strip` attribute evaluates to `True`, the element
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
485 is stripped from the output
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
486
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
487 >>> tmpl = Template('''<div xmlns:py="http://purl.org/kid/ns#">
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
488 ... <div py:strip="True"><b>foo</b></div>
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
489 ... </div>''')
14
c7d33e0c9839 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 >>> print tmpl.generate()
1
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
491 <div>
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
492 <b>foo</b>
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
493 </div>
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
494
37
37557b8fb925 Moved some of the tests for the strip directive to a new unittest test case to not clutter up the documentation.
cmlenz
parents: 36
diff changeset
495 Leaving the attribute value empty is equivalent to a truth value.
1
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
496
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
497 This directive is particulary interesting for named template functions or
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
498 match templates that do not generate a top-level element:
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
499
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
500 >>> tmpl = Template('''<div xmlns:py="http://purl.org/kid/ns#">
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
501 ... <div py:def="echo(what)" py:strip="">
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
502 ... <b>${what}</b>
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
503 ... </div>
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
504 ... ${echo('foo')}
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
505 ... </div>''')
14
c7d33e0c9839 The `<py:match>` directive now protects itself against simple infinite recursion (see MatchDirective), while still allowing recursion in general.
cmlenz
parents: 13
diff changeset
506 >>> print tmpl.generate()
1
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
507 <div>
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
508 <b>foo</b>
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
509 </div>
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
510 """
50
d3842cd76e92 Fix the way multiple directives are applied to a single `SUB` in many cases by making the directives themselves responsible for applying any remaining directives.
cmlenz
parents: 48
diff changeset
511 __slots__ = []
d3842cd76e92 Fix the way multiple directives are applied to a single `SUB` in many cases by making the directives themselves responsible for applying any remaining directives.
cmlenz
parents: 48
diff changeset
512
d3842cd76e92 Fix the way multiple directives are applied to a single `SUB` in many cases by making the directives themselves responsible for applying any remaining directives.
cmlenz
parents: 48
diff changeset
513 def __call__(self, stream, ctxt, directives=None):
1
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
514 if self.expr:
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
515 strip = self.expr.evaluate(ctxt)
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
516 else:
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
517 strip = True
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
518 if strip:
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
519 stream.next() # skip start tag
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
520 previous = stream.next()
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
521 for event in stream:
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
522 yield previous
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
523 previous = event
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
524 else:
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
525 for event in stream:
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
526 yield event
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
527
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
528
44
436e30c8420b implement `py:choose/when/otherwise` directives for conditionally selecting one of several blocks
mgood
parents: 38
diff changeset
529 class ChooseDirective(Directive):
436e30c8420b implement `py:choose/when/otherwise` directives for conditionally selecting one of several blocks
mgood
parents: 38
diff changeset
530 """Implementation of the `py:choose` directive for conditionally selecting
436e30c8420b implement `py:choose/when/otherwise` directives for conditionally selecting one of several blocks
mgood
parents: 38
diff changeset
531 one of several body elements to display.
436e30c8420b implement `py:choose/when/otherwise` directives for conditionally selecting one of several blocks
mgood
parents: 38
diff changeset
532
436e30c8420b implement `py:choose/when/otherwise` directives for conditionally selecting one of several blocks
mgood
parents: 38
diff changeset
533 If the `py:choose` expression is empty the expressions of nested `py:when`
436e30c8420b implement `py:choose/when/otherwise` directives for conditionally selecting one of several blocks
mgood
parents: 38
diff changeset
534 directives are tested for truth. The first true `py:when` body is output.
436e30c8420b implement `py:choose/when/otherwise` directives for conditionally selecting one of several blocks
mgood
parents: 38
diff changeset
535
436e30c8420b implement `py:choose/when/otherwise` directives for conditionally selecting one of several blocks
mgood
parents: 38
diff changeset
536 >>> ctxt = Context()
436e30c8420b implement `py:choose/when/otherwise` directives for conditionally selecting one of several blocks
mgood
parents: 38
diff changeset
537 >>> tmpl = Template('''<div xmlns:py="http://purl.org/kid/ns#"
436e30c8420b implement `py:choose/when/otherwise` directives for conditionally selecting one of several blocks
mgood
parents: 38
diff changeset
538 ... py:choose="">
436e30c8420b implement `py:choose/when/otherwise` directives for conditionally selecting one of several blocks
mgood
parents: 38
diff changeset
539 ... <span py:when="0 == 1">0</span>
436e30c8420b implement `py:choose/when/otherwise` directives for conditionally selecting one of several blocks
mgood
parents: 38
diff changeset
540 ... <span py:when="1 == 1">1</span>
436e30c8420b implement `py:choose/when/otherwise` directives for conditionally selecting one of several blocks
mgood
parents: 38
diff changeset
541 ... </div>''')
436e30c8420b implement `py:choose/when/otherwise` directives for conditionally selecting one of several blocks
mgood
parents: 38
diff changeset
542 >>> print tmpl.generate(ctxt)
436e30c8420b implement `py:choose/when/otherwise` directives for conditionally selecting one of several blocks
mgood
parents: 38
diff changeset
543 <div>
436e30c8420b implement `py:choose/when/otherwise` directives for conditionally selecting one of several blocks
mgood
parents: 38
diff changeset
544 <span>1</span>
436e30c8420b implement `py:choose/when/otherwise` directives for conditionally selecting one of several blocks
mgood
parents: 38
diff changeset
545 </div>
436e30c8420b implement `py:choose/when/otherwise` directives for conditionally selecting one of several blocks
mgood
parents: 38
diff changeset
546
436e30c8420b implement `py:choose/when/otherwise` directives for conditionally selecting one of several blocks
mgood
parents: 38
diff changeset
547 If multiple `py:when` bodies match only the first is output.
436e30c8420b implement `py:choose/when/otherwise` directives for conditionally selecting one of several blocks
mgood
parents: 38
diff changeset
548 >>> tmpl = Template('''<div xmlns:py="http://purl.org/kid/ns#"
436e30c8420b implement `py:choose/when/otherwise` directives for conditionally selecting one of several blocks
mgood
parents: 38
diff changeset
549 ... py:choose="">
436e30c8420b implement `py:choose/when/otherwise` directives for conditionally selecting one of several blocks
mgood
parents: 38
diff changeset
550 ... <span py:when="1 == 1">1</span>
436e30c8420b implement `py:choose/when/otherwise` directives for conditionally selecting one of several blocks
mgood
parents: 38
diff changeset
551 ... <span py:when="2 == 2">2</span>
436e30c8420b implement `py:choose/when/otherwise` directives for conditionally selecting one of several blocks
mgood
parents: 38
diff changeset
552 ... </div>''')
436e30c8420b implement `py:choose/when/otherwise` directives for conditionally selecting one of several blocks
mgood
parents: 38
diff changeset
553 >>> print tmpl.generate(ctxt)
436e30c8420b implement `py:choose/when/otherwise` directives for conditionally selecting one of several blocks
mgood
parents: 38
diff changeset
554 <div>
436e30c8420b implement `py:choose/when/otherwise` directives for conditionally selecting one of several blocks
mgood
parents: 38
diff changeset
555 <span>1</span>
436e30c8420b implement `py:choose/when/otherwise` directives for conditionally selecting one of several blocks
mgood
parents: 38
diff changeset
556 </div>
436e30c8420b implement `py:choose/when/otherwise` directives for conditionally selecting one of several blocks
mgood
parents: 38
diff changeset
557
436e30c8420b implement `py:choose/when/otherwise` directives for conditionally selecting one of several blocks
mgood
parents: 38
diff changeset
558 If the `py:choose` directive contains an expression, the nested `py:when`
436e30c8420b implement `py:choose/when/otherwise` directives for conditionally selecting one of several blocks
mgood
parents: 38
diff changeset
559 directives are tested for equality to the `py:choose` expression.
436e30c8420b implement `py:choose/when/otherwise` directives for conditionally selecting one of several blocks
mgood
parents: 38
diff changeset
560 >>> tmpl = Template('''<div xmlns:py="http://purl.org/kid/ns#"
436e30c8420b implement `py:choose/when/otherwise` directives for conditionally selecting one of several blocks
mgood
parents: 38
diff changeset
561 ... py:choose="2">
436e30c8420b implement `py:choose/when/otherwise` directives for conditionally selecting one of several blocks
mgood
parents: 38
diff changeset
562 ... <span py:when="1">1</span>
436e30c8420b implement `py:choose/when/otherwise` directives for conditionally selecting one of several blocks
mgood
parents: 38
diff changeset
563 ... <span py:when="2">2</span>
436e30c8420b implement `py:choose/when/otherwise` directives for conditionally selecting one of several blocks
mgood
parents: 38
diff changeset
564 ... </div>''')
436e30c8420b implement `py:choose/when/otherwise` directives for conditionally selecting one of several blocks
mgood
parents: 38
diff changeset
565 >>> print tmpl.generate(ctxt)
436e30c8420b implement `py:choose/when/otherwise` directives for conditionally selecting one of several blocks
mgood
parents: 38
diff changeset
566 <div>
436e30c8420b implement `py:choose/when/otherwise` directives for conditionally selecting one of several blocks
mgood
parents: 38
diff changeset
567 <span>2</span>
436e30c8420b implement `py:choose/when/otherwise` directives for conditionally selecting one of several blocks
mgood
parents: 38
diff changeset
568 </div>
436e30c8420b implement `py:choose/when/otherwise` directives for conditionally selecting one of several blocks
mgood
parents: 38
diff changeset
569
436e30c8420b implement `py:choose/when/otherwise` directives for conditionally selecting one of several blocks
mgood
parents: 38
diff changeset
570 If no `py:when` directive is matched then the fallback directive
436e30c8420b implement `py:choose/when/otherwise` directives for conditionally selecting one of several blocks
mgood
parents: 38
diff changeset
571 `py:otherwise` will be used.
436e30c8420b implement `py:choose/when/otherwise` directives for conditionally selecting one of several blocks
mgood
parents: 38
diff changeset
572 >>> tmpl = Template('''<div xmlns:py="http://purl.org/kid/ns#"
436e30c8420b implement `py:choose/when/otherwise` directives for conditionally selecting one of several blocks
mgood
parents: 38
diff changeset
573 ... py:choose="">
436e30c8420b implement `py:choose/when/otherwise` directives for conditionally selecting one of several blocks
mgood
parents: 38
diff changeset
574 ... <span py:when="False">hidden</span>
436e30c8420b implement `py:choose/when/otherwise` directives for conditionally selecting one of several blocks
mgood
parents: 38
diff changeset
575 ... <span py:otherwise="">hello</span>
436e30c8420b implement `py:choose/when/otherwise` directives for conditionally selecting one of several blocks
mgood
parents: 38
diff changeset
576 ... </div>''')
436e30c8420b implement `py:choose/when/otherwise` directives for conditionally selecting one of several blocks
mgood
parents: 38
diff changeset
577 >>> print tmpl.generate(ctxt)
436e30c8420b implement `py:choose/when/otherwise` directives for conditionally selecting one of several blocks
mgood
parents: 38
diff changeset
578 <div>
436e30c8420b implement `py:choose/when/otherwise` directives for conditionally selecting one of several blocks
mgood
parents: 38
diff changeset
579 <span>hello</span>
436e30c8420b implement `py:choose/when/otherwise` directives for conditionally selecting one of several blocks
mgood
parents: 38
diff changeset
580 </div>
436e30c8420b implement `py:choose/when/otherwise` directives for conditionally selecting one of several blocks
mgood
parents: 38
diff changeset
581
436e30c8420b implement `py:choose/when/otherwise` directives for conditionally selecting one of several blocks
mgood
parents: 38
diff changeset
582 `py:choose` blocks can be nested:
436e30c8420b implement `py:choose/when/otherwise` directives for conditionally selecting one of several blocks
mgood
parents: 38
diff changeset
583 >>> tmpl = Template('''<div xmlns:py="http://purl.org/kid/ns#"
436e30c8420b implement `py:choose/when/otherwise` directives for conditionally selecting one of several blocks
mgood
parents: 38
diff changeset
584 ... py:choose="1">
436e30c8420b implement `py:choose/when/otherwise` directives for conditionally selecting one of several blocks
mgood
parents: 38
diff changeset
585 ... <div py:when="1" py:choose="3">
436e30c8420b implement `py:choose/when/otherwise` directives for conditionally selecting one of several blocks
mgood
parents: 38
diff changeset
586 ... <span py:when="2">2</span>
436e30c8420b implement `py:choose/when/otherwise` directives for conditionally selecting one of several blocks
mgood
parents: 38
diff changeset
587 ... <span py:when="3">3</span>
436e30c8420b implement `py:choose/when/otherwise` directives for conditionally selecting one of several blocks
mgood
parents: 38
diff changeset
588 ... </div>
436e30c8420b implement `py:choose/when/otherwise` directives for conditionally selecting one of several blocks
mgood
parents: 38
diff changeset
589 ... </div>''')
436e30c8420b implement `py:choose/when/otherwise` directives for conditionally selecting one of several blocks
mgood
parents: 38
diff changeset
590 >>> print tmpl.generate(ctxt)
436e30c8420b implement `py:choose/when/otherwise` directives for conditionally selecting one of several blocks
mgood
parents: 38
diff changeset
591 <div>
436e30c8420b implement `py:choose/when/otherwise` directives for conditionally selecting one of several blocks
mgood
parents: 38
diff changeset
592 <div>
436e30c8420b implement `py:choose/when/otherwise` directives for conditionally selecting one of several blocks
mgood
parents: 38
diff changeset
593 <span>3</span>
436e30c8420b implement `py:choose/when/otherwise` directives for conditionally selecting one of several blocks
mgood
parents: 38
diff changeset
594 </div>
436e30c8420b implement `py:choose/when/otherwise` directives for conditionally selecting one of several blocks
mgood
parents: 38
diff changeset
595 </div>
436e30c8420b implement `py:choose/when/otherwise` directives for conditionally selecting one of several blocks
mgood
parents: 38
diff changeset
596
436e30c8420b implement `py:choose/when/otherwise` directives for conditionally selecting one of several blocks
mgood
parents: 38
diff changeset
597 Behavior is undefined if a `py:choose` block contains content outside a
436e30c8420b implement `py:choose/when/otherwise` directives for conditionally selecting one of several blocks
mgood
parents: 38
diff changeset
598 `py:when` or `py:otherwise` block. Behavior is also undefined if a
436e30c8420b implement `py:choose/when/otherwise` directives for conditionally selecting one of several blocks
mgood
parents: 38
diff changeset
599 `py:otherwise` occurs before `py:when` blocks.
436e30c8420b implement `py:choose/when/otherwise` directives for conditionally selecting one of several blocks
mgood
parents: 38
diff changeset
600 """
50
d3842cd76e92 Fix the way multiple directives are applied to a single `SUB` in many cases by making the directives themselves responsible for applying any remaining directives.
cmlenz
parents: 48
diff changeset
601 __slots__ = ['matched', 'value']
44
436e30c8420b implement `py:choose/when/otherwise` directives for conditionally selecting one of several blocks
mgood
parents: 38
diff changeset
602
50
d3842cd76e92 Fix the way multiple directives are applied to a single `SUB` in many cases by making the directives themselves responsible for applying any remaining directives.
cmlenz
parents: 48
diff changeset
603 def __call__(self, stream, ctxt, directives=None):
44
436e30c8420b implement `py:choose/when/otherwise` directives for conditionally selecting one of several blocks
mgood
parents: 38
diff changeset
604 if self.expr:
436e30c8420b implement `py:choose/when/otherwise` directives for conditionally selecting one of several blocks
mgood
parents: 38
diff changeset
605 self.value = self.expr.evaluate(ctxt)
436e30c8420b implement `py:choose/when/otherwise` directives for conditionally selecting one of several blocks
mgood
parents: 38
diff changeset
606 self.matched = False
50
d3842cd76e92 Fix the way multiple directives are applied to a single `SUB` in many cases by making the directives themselves responsible for applying any remaining directives.
cmlenz
parents: 48
diff changeset
607 ctxt.push(_choose=self)
44
436e30c8420b implement `py:choose/when/otherwise` directives for conditionally selecting one of several blocks
mgood
parents: 38
diff changeset
608 for event in stream:
436e30c8420b implement `py:choose/when/otherwise` directives for conditionally selecting one of several blocks
mgood
parents: 38
diff changeset
609 yield event
436e30c8420b implement `py:choose/when/otherwise` directives for conditionally selecting one of several blocks
mgood
parents: 38
diff changeset
610 ctxt.pop()
436e30c8420b implement `py:choose/when/otherwise` directives for conditionally selecting one of several blocks
mgood
parents: 38
diff changeset
611
436e30c8420b implement `py:choose/when/otherwise` directives for conditionally selecting one of several blocks
mgood
parents: 38
diff changeset
612
436e30c8420b implement `py:choose/when/otherwise` directives for conditionally selecting one of several blocks
mgood
parents: 38
diff changeset
613 class WhenDirective(Directive):
436e30c8420b implement `py:choose/when/otherwise` directives for conditionally selecting one of several blocks
mgood
parents: 38
diff changeset
614 """Implementation of the `py:when` directive for nesting in a parent with
50
d3842cd76e92 Fix the way multiple directives are applied to a single `SUB` in many cases by making the directives themselves responsible for applying any remaining directives.
cmlenz
parents: 48
diff changeset
615 the `py:choose` directive.
d3842cd76e92 Fix the way multiple directives are applied to a single `SUB` in many cases by making the directives themselves responsible for applying any remaining directives.
cmlenz
parents: 48
diff changeset
616
d3842cd76e92 Fix the way multiple directives are applied to a single `SUB` in many cases by making the directives themselves responsible for applying any remaining directives.
cmlenz
parents: 48
diff changeset
617 See the documentation of `py:choose` for usage.
44
436e30c8420b implement `py:choose/when/otherwise` directives for conditionally selecting one of several blocks
mgood
parents: 38
diff changeset
618 """
50
d3842cd76e92 Fix the way multiple directives are applied to a single `SUB` in many cases by making the directives themselves responsible for applying any remaining directives.
cmlenz
parents: 48
diff changeset
619 def __call__(self, stream, ctxt, directives=None):
d3842cd76e92 Fix the way multiple directives are applied to a single `SUB` in many cases by making the directives themselves responsible for applying any remaining directives.
cmlenz
parents: 48
diff changeset
620 choose = ctxt['_choose']
44
436e30c8420b implement `py:choose/when/otherwise` directives for conditionally selecting one of several blocks
mgood
parents: 38
diff changeset
621 if choose.matched:
436e30c8420b implement `py:choose/when/otherwise` directives for conditionally selecting one of several blocks
mgood
parents: 38
diff changeset
622 return []
436e30c8420b implement `py:choose/when/otherwise` directives for conditionally selecting one of several blocks
mgood
parents: 38
diff changeset
623 value = self.expr.evaluate(ctxt)
436e30c8420b implement `py:choose/when/otherwise` directives for conditionally selecting one of several blocks
mgood
parents: 38
diff changeset
624 try:
436e30c8420b implement `py:choose/when/otherwise` directives for conditionally selecting one of several blocks
mgood
parents: 38
diff changeset
625 if value == choose.value:
436e30c8420b implement `py:choose/when/otherwise` directives for conditionally selecting one of several blocks
mgood
parents: 38
diff changeset
626 choose.matched = True
436e30c8420b implement `py:choose/when/otherwise` directives for conditionally selecting one of several blocks
mgood
parents: 38
diff changeset
627 return stream
436e30c8420b implement `py:choose/when/otherwise` directives for conditionally selecting one of several blocks
mgood
parents: 38
diff changeset
628 except AttributeError:
436e30c8420b implement `py:choose/when/otherwise` directives for conditionally selecting one of several blocks
mgood
parents: 38
diff changeset
629 if value:
436e30c8420b implement `py:choose/when/otherwise` directives for conditionally selecting one of several blocks
mgood
parents: 38
diff changeset
630 choose.matched = True
436e30c8420b implement `py:choose/when/otherwise` directives for conditionally selecting one of several blocks
mgood
parents: 38
diff changeset
631 return stream
436e30c8420b implement `py:choose/when/otherwise` directives for conditionally selecting one of several blocks
mgood
parents: 38
diff changeset
632 return []
436e30c8420b implement `py:choose/when/otherwise` directives for conditionally selecting one of several blocks
mgood
parents: 38
diff changeset
633
436e30c8420b implement `py:choose/when/otherwise` directives for conditionally selecting one of several blocks
mgood
parents: 38
diff changeset
634
436e30c8420b implement `py:choose/when/otherwise` directives for conditionally selecting one of several blocks
mgood
parents: 38
diff changeset
635 class OtherwiseDirective(Directive):
436e30c8420b implement `py:choose/when/otherwise` directives for conditionally selecting one of several blocks
mgood
parents: 38
diff changeset
636 """Implementation of the `py:otherwise` directive for nesting in a parent
50
d3842cd76e92 Fix the way multiple directives are applied to a single `SUB` in many cases by making the directives themselves responsible for applying any remaining directives.
cmlenz
parents: 48
diff changeset
637 with the `py:choose` directive.
d3842cd76e92 Fix the way multiple directives are applied to a single `SUB` in many cases by making the directives themselves responsible for applying any remaining directives.
cmlenz
parents: 48
diff changeset
638
d3842cd76e92 Fix the way multiple directives are applied to a single `SUB` in many cases by making the directives themselves responsible for applying any remaining directives.
cmlenz
parents: 48
diff changeset
639 See the documentation of `py:choose` for usage.
44
436e30c8420b implement `py:choose/when/otherwise` directives for conditionally selecting one of several blocks
mgood
parents: 38
diff changeset
640 """
50
d3842cd76e92 Fix the way multiple directives are applied to a single `SUB` in many cases by making the directives themselves responsible for applying any remaining directives.
cmlenz
parents: 48
diff changeset
641 def __call__(self, stream, ctxt, directives=None):
d3842cd76e92 Fix the way multiple directives are applied to a single `SUB` in many cases by making the directives themselves responsible for applying any remaining directives.
cmlenz
parents: 48
diff changeset
642 choose = ctxt['_choose']
44
436e30c8420b implement `py:choose/when/otherwise` directives for conditionally selecting one of several blocks
mgood
parents: 38
diff changeset
643 if choose.matched:
436e30c8420b implement `py:choose/when/otherwise` directives for conditionally selecting one of several blocks
mgood
parents: 38
diff changeset
644 return []
436e30c8420b implement `py:choose/when/otherwise` directives for conditionally selecting one of several blocks
mgood
parents: 38
diff changeset
645 choose.matched = True
436e30c8420b implement `py:choose/when/otherwise` directives for conditionally selecting one of several blocks
mgood
parents: 38
diff changeset
646 return stream
436e30c8420b implement `py:choose/when/otherwise` directives for conditionally selecting one of several blocks
mgood
parents: 38
diff changeset
647
436e30c8420b implement `py:choose/when/otherwise` directives for conditionally selecting one of several blocks
mgood
parents: 38
diff changeset
648
1
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
649 class Template(object):
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
650 """Can parse a template and transform it into the corresponding output
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
651 based on context data.
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
652 """
18
5420cfe42d36 Actually make use of the `markup.core.Namespace` class, and add a couple of doctests.
cmlenz
parents: 17
diff changeset
653 NAMESPACE = Namespace('http://purl.org/kid/ns#')
1
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
654
17
74cc70129d04 Refactoring to address #6: all match templates are now processed by a single filter, which means that match templates added by included templates are properly applied. A side effect of this refactoring is that `Context` objects may not be reused across multiple template processing runs.
cmlenz
parents: 14
diff changeset
655 EXPR = StreamEventKind('EXPR') # an expression
74cc70129d04 Refactoring to address #6: all match templates are now processed by a single filter, which means that match templates added by included templates are properly applied. A side effect of this refactoring is that `Context` objects may not be reused across multiple template processing runs.
cmlenz
parents: 14
diff changeset
656 SUB = StreamEventKind('SUB') # a "subprogram"
10
f77f7a91aa46 Moved the template-specific stream event kinds into the template module.
cmlenz
parents: 6
diff changeset
657
1
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
658 directives = [('def', DefDirective),
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
659 ('match', MatchDirective),
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
660 ('for', ForDirective),
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
661 ('if', IfDirective),
50
d3842cd76e92 Fix the way multiple directives are applied to a single `SUB` in many cases by making the directives themselves responsible for applying any remaining directives.
cmlenz
parents: 48
diff changeset
662 ('choose', ChooseDirective),
d3842cd76e92 Fix the way multiple directives are applied to a single `SUB` in many cases by making the directives themselves responsible for applying any remaining directives.
cmlenz
parents: 48
diff changeset
663 ('when', WhenDirective),
d3842cd76e92 Fix the way multiple directives are applied to a single `SUB` in many cases by making the directives themselves responsible for applying any remaining directives.
cmlenz
parents: 48
diff changeset
664 ('otherwise', OtherwiseDirective),
1
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
665 ('replace', ReplaceDirective),
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
666 ('content', ContentDirective),
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
667 ('attrs', AttrsDirective),
50
d3842cd76e92 Fix the way multiple directives are applied to a single `SUB` in many cases by making the directives themselves responsible for applying any remaining directives.
cmlenz
parents: 48
diff changeset
668 ('strip', StripDirective)]
1
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
669 _dir_by_name = dict(directives)
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
670 _dir_order = [directive[1] for directive in directives]
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
671
21
b4d17897d053 * Include paths are now interpreted relative to the path of the including template. Closes #3.
cmlenz
parents: 18
diff changeset
672 def __init__(self, source, basedir=None, filename=None):
1
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
673 """Initialize a template from either a string or a file-like object."""
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
674 if isinstance(source, basestring):
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
675 self.source = StringIO(source)
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
676 else:
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
677 self.source = source
21
b4d17897d053 * Include paths are now interpreted relative to the path of the including template. Closes #3.
cmlenz
parents: 18
diff changeset
678 self.basedir = basedir
1
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
679 self.filename = filename or '<string>'
21
b4d17897d053 * Include paths are now interpreted relative to the path of the including template. Closes #3.
cmlenz
parents: 18
diff changeset
680 if basedir and filename:
b4d17897d053 * Include paths are now interpreted relative to the path of the including template. Closes #3.
cmlenz
parents: 18
diff changeset
681 self.filepath = os.path.join(basedir, filename)
b4d17897d053 * Include paths are now interpreted relative to the path of the including template. Closes #3.
cmlenz
parents: 18
diff changeset
682 else:
b4d17897d053 * Include paths are now interpreted relative to the path of the including template. Closes #3.
cmlenz
parents: 18
diff changeset
683 self.filepath = '<string>'
1
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
684
23
d88358f719fa Separate match and eval filters from the include and user-supplied filters.
cmlenz
parents: 22
diff changeset
685 self.filters = []
1
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
686 self.parse()
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
687
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
688 def __repr__(self):
21
b4d17897d053 * Include paths are now interpreted relative to the path of the including template. Closes #3.
cmlenz
parents: 18
diff changeset
689 return '<%s "%s">' % (self.__class__.__name__, self.filename)
1
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
690
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
691 def parse(self):
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
692 """Parse the template.
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
693
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
694 The parsing stage parses the XML template and constructs a list of
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
695 directives that will be executed in the render stage. The input is
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
696 split up into literal output (markup that does not depend on the
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
697 context data) and actual directives (commands or variable
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
698 substitution).
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
699 """
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
700 stream = [] # list of events of the "compiled" template
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
701 dirmap = {} # temporary mapping of directives to elements
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
702 ns_prefix = {}
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
703 depth = 0
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
704
21
b4d17897d053 * Include paths are now interpreted relative to the path of the including template. Closes #3.
cmlenz
parents: 18
diff changeset
705 for kind, data, pos in XMLParser(self.source, filename=self.filename):
1
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
706
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
707 if kind is Stream.START_NS:
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
708 # Strip out the namespace declaration for template directives
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
709 prefix, uri = data
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
710 if uri == self.NAMESPACE:
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
711 ns_prefix[prefix] = uri
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
712 else:
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
713 stream.append((kind, data, pos))
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
714
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
715 elif kind is Stream.END_NS:
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
716 if data in ns_prefix:
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
717 del ns_prefix[data]
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
718 else:
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
719 stream.append((kind, data, pos))
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
720
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
721 elif kind is Stream.START:
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
722 # Record any directive attributes in start tags
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
723 tag, attrib = data
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
724 directives = []
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
725 new_attrib = []
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
726 for name, value in attrib:
18
5420cfe42d36 Actually make use of the `markup.core.Namespace` class, and add a couple of doctests.
cmlenz
parents: 17
diff changeset
727 if name in self.NAMESPACE:
1
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
728 cls = self._dir_by_name.get(name.localname)
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
729 if cls is None:
21
b4d17897d053 * Include paths are now interpreted relative to the path of the including template. Closes #3.
cmlenz
parents: 18
diff changeset
730 raise BadDirectiveError(name, self.filename, pos[1])
1
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
731 else:
29
ab8703fa68b8 * Minor simplification of template directives: they no longer get passed the template instance and the position, as no directive was actually using
cmlenz
parents: 27
diff changeset
732 directives.append(cls(value))
1
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
733 else:
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
734 value = list(self._interpolate(value, *pos))
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
735 new_attrib.append((name, value))
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
736 if directives:
50
d3842cd76e92 Fix the way multiple directives are applied to a single `SUB` in many cases by making the directives themselves responsible for applying any remaining directives.
cmlenz
parents: 48
diff changeset
737 directives.sort(lambda a, b: cmp(self._dir_order.index(a.__class__),
d3842cd76e92 Fix the way multiple directives are applied to a single `SUB` in many cases by making the directives themselves responsible for applying any remaining directives.
cmlenz
parents: 48
diff changeset
738 self._dir_order.index(b.__class__)))
1
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
739 dirmap[(depth, tag)] = (directives, len(stream))
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
740
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
741 stream.append((kind, (tag, Attributes(new_attrib)), pos))
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
742 depth += 1
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
743
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
744 elif kind is Stream.END:
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
745 depth -= 1
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
746 stream.append((kind, data, pos))
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
747
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
748 # If there have have directive attributes with the corresponding
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
749 # start tag, move the events inbetween into a "subprogram"
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
750 if (depth, data) in dirmap:
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
751 directives, start_offset = dirmap.pop((depth, data))
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
752 substream = stream[start_offset:]
10
f77f7a91aa46 Moved the template-specific stream event kinds into the template module.
cmlenz
parents: 6
diff changeset
753 stream[start_offset:] = [(Template.SUB,
1
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
754 (directives, substream), pos)]
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
755
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
756 elif kind is Stream.TEXT:
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
757 for kind, data, pos in self._interpolate(data, *pos):
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
758 stream.append((kind, data, pos))
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
759
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
760 else:
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
761 stream.append((kind, data, pos))
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
762
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
763 self.stream = stream
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
764
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
765 _FULL_EXPR_RE = re.compile(r'(?<!\$)\$\{(.+?)\}')
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
766 _SHORT_EXPR_RE = re.compile(r'(?<!\$)\$([a-zA-Z][a-zA-Z0-9_\.]*)')
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
767
21
b4d17897d053 * Include paths are now interpreted relative to the path of the including template. Closes #3.
cmlenz
parents: 18
diff changeset
768 def _interpolate(cls, text, filename=None, lineno=-1, offset=-1):
1
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
769 """Parse the given string and extract expressions.
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
770
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
771 This method returns a list containing both literal text and `Expression`
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
772 objects.
14
c7d33e0c9839 The `<py:match>` directive now protects itself against simple infinite recursion (see MatchDirective), while still allowing recursion in general.
cmlenz
parents: 13
diff changeset
773
1
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
774 @param text: the text to parse
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
775 @param lineno: the line number at which the text was found (optional)
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
776 @param offset: the column number at which the text starts in the source
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
777 (optional)
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
778 """
17
74cc70129d04 Refactoring to address #6: all match templates are now processed by a single filter, which means that match templates added by included templates are properly applied. A side effect of this refactoring is that `Context` objects may not be reused across multiple template processing runs.
cmlenz
parents: 14
diff changeset
779 patterns = [Template._FULL_EXPR_RE, Template._SHORT_EXPR_RE]
1
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
780 def _interpolate(text):
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
781 for idx, group in enumerate(patterns.pop(0).split(text)):
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
782 if idx % 2:
10
f77f7a91aa46 Moved the template-specific stream event kinds into the template module.
cmlenz
parents: 6
diff changeset
783 yield Template.EXPR, Expression(group), (lineno, offset)
1
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
784 elif group:
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
785 if patterns:
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
786 for result in _interpolate(group):
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
787 yield result
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
788 else:
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
789 yield Stream.TEXT, group.replace('$$', '$'), \
23
d88358f719fa Separate match and eval filters from the include and user-supplied filters.
cmlenz
parents: 22
diff changeset
790 (filename, lineno, offset)
1
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
791 return _interpolate(text)
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
792 _interpolate = classmethod(_interpolate)
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
793
17
74cc70129d04 Refactoring to address #6: all match templates are now processed by a single filter, which means that match templates added by included templates are properly applied. A side effect of this refactoring is that `Context` objects may not be reused across multiple template processing runs.
cmlenz
parents: 14
diff changeset
794 def generate(self, ctxt=None):
29
ab8703fa68b8 * Minor simplification of template directives: they no longer get passed the template instance and the position, as no directive was actually using
cmlenz
parents: 27
diff changeset
795 """Apply the template to the given context data.
ab8703fa68b8 * Minor simplification of template directives: they no longer get passed the template instance and the position, as no directive was actually using
cmlenz
parents: 27
diff changeset
796
ab8703fa68b8 * Minor simplification of template directives: they no longer get passed the template instance and the position, as no directive was actually using
cmlenz
parents: 27
diff changeset
797 @param ctxt: a `Context` instance containing the data for the template
ab8703fa68b8 * Minor simplification of template directives: they no longer get passed the template instance and the position, as no directive was actually using
cmlenz
parents: 27
diff changeset
798 @return: a markup event stream representing the result of applying
ab8703fa68b8 * Minor simplification of template directives: they no longer get passed the template instance and the position, as no directive was actually using
cmlenz
parents: 27
diff changeset
799 the template to the context data.
ab8703fa68b8 * Minor simplification of template directives: they no longer get passed the template instance and the position, as no directive was actually using
cmlenz
parents: 27
diff changeset
800 """
17
74cc70129d04 Refactoring to address #6: all match templates are now processed by a single filter, which means that match templates added by included templates are properly applied. A side effect of this refactoring is that `Context` objects may not be reused across multiple template processing runs.
cmlenz
parents: 14
diff changeset
801 if ctxt is None:
74cc70129d04 Refactoring to address #6: all match templates are now processed by a single filter, which means that match templates added by included templates are properly applied. A side effect of this refactoring is that `Context` objects may not be reused across multiple template processing runs.
cmlenz
parents: 14
diff changeset
802 ctxt = Context()
74cc70129d04 Refactoring to address #6: all match templates are now processed by a single filter, which means that match templates added by included templates are properly applied. A side effect of this refactoring is that `Context` objects may not be reused across multiple template processing runs.
cmlenz
parents: 14
diff changeset
803 if not hasattr(ctxt, '_match_templates'):
74cc70129d04 Refactoring to address #6: all match templates are now processed by a single filter, which means that match templates added by included templates are properly applied. A side effect of this refactoring is that `Context` objects may not be reused across multiple template processing runs.
cmlenz
parents: 14
diff changeset
804 ctxt._match_templates = []
74cc70129d04 Refactoring to address #6: all match templates are now processed by a single filter, which means that match templates added by included templates are properly applied. A side effect of this refactoring is that `Context` objects may not be reused across multiple template processing runs.
cmlenz
parents: 14
diff changeset
805
35
35b9e9318fb1 Simplify template processing model by removing dynamically generated `SUB` events.
cmlenz
parents: 31
diff changeset
806 stream = self._flatten(self._match(self._eval(self.stream, ctxt), ctxt),
35b9e9318fb1 Simplify template processing model by removing dynamically generated `SUB` events.
cmlenz
parents: 31
diff changeset
807 ctxt)
35b9e9318fb1 Simplify template processing model by removing dynamically generated `SUB` events.
cmlenz
parents: 31
diff changeset
808 for filter_ in self.filters:
35b9e9318fb1 Simplify template processing model by removing dynamically generated `SUB` events.
cmlenz
parents: 31
diff changeset
809 stream = filter_(iter(stream), ctxt)
35b9e9318fb1 Simplify template processing model by removing dynamically generated `SUB` events.
cmlenz
parents: 31
diff changeset
810 return Stream(stream)
17
74cc70129d04 Refactoring to address #6: all match templates are now processed by a single filter, which means that match templates added by included templates are properly applied. A side effect of this refactoring is that `Context` objects may not be reused across multiple template processing runs.
cmlenz
parents: 14
diff changeset
811
74cc70129d04 Refactoring to address #6: all match templates are now processed by a single filter, which means that match templates added by included templates are properly applied. A side effect of this refactoring is that `Context` objects may not be reused across multiple template processing runs.
cmlenz
parents: 14
diff changeset
812 def _eval(self, stream, ctxt=None):
29
ab8703fa68b8 * Minor simplification of template directives: they no longer get passed the template instance and the position, as no directive was actually using
cmlenz
parents: 27
diff changeset
813 """Internal stream filter that evaluates any expressions in `START` and
ab8703fa68b8 * Minor simplification of template directives: they no longer get passed the template instance and the position, as no directive was actually using
cmlenz
parents: 27
diff changeset
814 `TEXT` events.
ab8703fa68b8 * Minor simplification of template directives: they no longer get passed the template instance and the position, as no directive was actually using
cmlenz
parents: 27
diff changeset
815 """
17
74cc70129d04 Refactoring to address #6: all match templates are now processed by a single filter, which means that match templates added by included templates are properly applied. A side effect of this refactoring is that `Context` objects may not be reused across multiple template processing runs.
cmlenz
parents: 14
diff changeset
816 for kind, data, pos in stream:
74cc70129d04 Refactoring to address #6: all match templates are now processed by a single filter, which means that match templates added by included templates are properly applied. A side effect of this refactoring is that `Context` objects may not be reused across multiple template processing runs.
cmlenz
parents: 14
diff changeset
817
74cc70129d04 Refactoring to address #6: all match templates are now processed by a single filter, which means that match templates added by included templates are properly applied. A side effect of this refactoring is that `Context` objects may not be reused across multiple template processing runs.
cmlenz
parents: 14
diff changeset
818 if kind is Stream.START:
74cc70129d04 Refactoring to address #6: all match templates are now processed by a single filter, which means that match templates added by included templates are properly applied. A side effect of this refactoring is that `Context` objects may not be reused across multiple template processing runs.
cmlenz
parents: 14
diff changeset
819 # Attributes may still contain expressions in start tags at
74cc70129d04 Refactoring to address #6: all match templates are now processed by a single filter, which means that match templates added by included templates are properly applied. A side effect of this refactoring is that `Context` objects may not be reused across multiple template processing runs.
cmlenz
parents: 14
diff changeset
820 # this point, so do some evaluation
74cc70129d04 Refactoring to address #6: all match templates are now processed by a single filter, which means that match templates added by included templates are properly applied. A side effect of this refactoring is that `Context` objects may not be reused across multiple template processing runs.
cmlenz
parents: 14
diff changeset
821 tag, attrib = data
74cc70129d04 Refactoring to address #6: all match templates are now processed by a single filter, which means that match templates added by included templates are properly applied. A side effect of this refactoring is that `Context` objects may not be reused across multiple template processing runs.
cmlenz
parents: 14
diff changeset
822 new_attrib = []
74cc70129d04 Refactoring to address #6: all match templates are now processed by a single filter, which means that match templates added by included templates are properly applied. A side effect of this refactoring is that `Context` objects may not be reused across multiple template processing runs.
cmlenz
parents: 14
diff changeset
823 for name, substream in attrib:
74cc70129d04 Refactoring to address #6: all match templates are now processed by a single filter, which means that match templates added by included templates are properly applied. A side effect of this refactoring is that `Context` objects may not be reused across multiple template processing runs.
cmlenz
parents: 14
diff changeset
824 if isinstance(substream, basestring):
74cc70129d04 Refactoring to address #6: all match templates are now processed by a single filter, which means that match templates added by included templates are properly applied. A side effect of this refactoring is that `Context` objects may not be reused across multiple template processing runs.
cmlenz
parents: 14
diff changeset
825 value = substream
74cc70129d04 Refactoring to address #6: all match templates are now processed by a single filter, which means that match templates added by included templates are properly applied. A side effect of this refactoring is that `Context` objects may not be reused across multiple template processing runs.
cmlenz
parents: 14
diff changeset
826 else:
74cc70129d04 Refactoring to address #6: all match templates are now processed by a single filter, which means that match templates added by included templates are properly applied. A side effect of this refactoring is that `Context` objects may not be reused across multiple template processing runs.
cmlenz
parents: 14
diff changeset
827 values = []
74cc70129d04 Refactoring to address #6: all match templates are now processed by a single filter, which means that match templates added by included templates are properly applied. A side effect of this refactoring is that `Context` objects may not be reused across multiple template processing runs.
cmlenz
parents: 14
diff changeset
828 for subkind, subdata, subpos in substream:
74cc70129d04 Refactoring to address #6: all match templates are now processed by a single filter, which means that match templates added by included templates are properly applied. A side effect of this refactoring is that `Context` objects may not be reused across multiple template processing runs.
cmlenz
parents: 14
diff changeset
829 if subkind is Template.EXPR:
74cc70129d04 Refactoring to address #6: all match templates are now processed by a single filter, which means that match templates added by included templates are properly applied. A side effect of this refactoring is that `Context` objects may not be reused across multiple template processing runs.
cmlenz
parents: 14
diff changeset
830 values.append(subdata.evaluate(ctxt))
74cc70129d04 Refactoring to address #6: all match templates are now processed by a single filter, which means that match templates added by included templates are properly applied. A side effect of this refactoring is that `Context` objects may not be reused across multiple template processing runs.
cmlenz
parents: 14
diff changeset
831 else:
74cc70129d04 Refactoring to address #6: all match templates are now processed by a single filter, which means that match templates added by included templates are properly applied. A side effect of this refactoring is that `Context` objects may not be reused across multiple template processing runs.
cmlenz
parents: 14
diff changeset
832 values.append(subdata)
48
a5d585dd38c4 convert the result of expressions in attributes to strings so that values like ints are output correctly
mgood
parents: 44
diff changeset
833 value = [unicode(x) for x in values if x is not None]
17
74cc70129d04 Refactoring to address #6: all match templates are now processed by a single filter, which means that match templates added by included templates are properly applied. A side effect of this refactoring is that `Context` objects may not be reused across multiple template processing runs.
cmlenz
parents: 14
diff changeset
834 if not value:
74cc70129d04 Refactoring to address #6: all match templates are now processed by a single filter, which means that match templates added by included templates are properly applied. A side effect of this refactoring is that `Context` objects may not be reused across multiple template processing runs.
cmlenz
parents: 14
diff changeset
835 continue
23
d88358f719fa Separate match and eval filters from the include and user-supplied filters.
cmlenz
parents: 22
diff changeset
836 new_attrib.append((name, u''.join(value)))
17
74cc70129d04 Refactoring to address #6: all match templates are now processed by a single filter, which means that match templates added by included templates are properly applied. A side effect of this refactoring is that `Context` objects may not be reused across multiple template processing runs.
cmlenz
parents: 14
diff changeset
837 yield kind, (tag, Attributes(new_attrib)), pos
74cc70129d04 Refactoring to address #6: all match templates are now processed by a single filter, which means that match templates added by included templates are properly applied. A side effect of this refactoring is that `Context` objects may not be reused across multiple template processing runs.
cmlenz
parents: 14
diff changeset
838
74cc70129d04 Refactoring to address #6: all match templates are now processed by a single filter, which means that match templates added by included templates are properly applied. A side effect of this refactoring is that `Context` objects may not be reused across multiple template processing runs.
cmlenz
parents: 14
diff changeset
839 elif kind is Template.EXPR:
74cc70129d04 Refactoring to address #6: all match templates are now processed by a single filter, which means that match templates added by included templates are properly applied. A side effect of this refactoring is that `Context` objects may not be reused across multiple template processing runs.
cmlenz
parents: 14
diff changeset
840 result = data.evaluate(ctxt)
74cc70129d04 Refactoring to address #6: all match templates are now processed by a single filter, which means that match templates added by included templates are properly applied. A side effect of this refactoring is that `Context` objects may not be reused across multiple template processing runs.
cmlenz
parents: 14
diff changeset
841 if result is None:
74cc70129d04 Refactoring to address #6: all match templates are now processed by a single filter, which means that match templates added by included templates are properly applied. A side effect of this refactoring is that `Context` objects may not be reused across multiple template processing runs.
cmlenz
parents: 14
diff changeset
842 continue
74cc70129d04 Refactoring to address #6: all match templates are now processed by a single filter, which means that match templates added by included templates are properly applied. A side effect of this refactoring is that `Context` objects may not be reused across multiple template processing runs.
cmlenz
parents: 14
diff changeset
843
74cc70129d04 Refactoring to address #6: all match templates are now processed by a single filter, which means that match templates added by included templates are properly applied. A side effect of this refactoring is that `Context` objects may not be reused across multiple template processing runs.
cmlenz
parents: 14
diff changeset
844 # First check for a string, otherwise the iterable test below
74cc70129d04 Refactoring to address #6: all match templates are now processed by a single filter, which means that match templates added by included templates are properly applied. A side effect of this refactoring is that `Context` objects may not be reused across multiple template processing runs.
cmlenz
parents: 14
diff changeset
845 # succeeds, and the string will be chopped up into individual
74cc70129d04 Refactoring to address #6: all match templates are now processed by a single filter, which means that match templates added by included templates are properly applied. A side effect of this refactoring is that `Context` objects may not be reused across multiple template processing runs.
cmlenz
parents: 14
diff changeset
846 # characters
74cc70129d04 Refactoring to address #6: all match templates are now processed by a single filter, which means that match templates added by included templates are properly applied. A side effect of this refactoring is that `Context` objects may not be reused across multiple template processing runs.
cmlenz
parents: 14
diff changeset
847 if isinstance(result, basestring):
23
d88358f719fa Separate match and eval filters from the include and user-supplied filters.
cmlenz
parents: 22
diff changeset
848 yield Stream.TEXT, unicode(result), pos
17
74cc70129d04 Refactoring to address #6: all match templates are now processed by a single filter, which means that match templates added by included templates are properly applied. A side effect of this refactoring is that `Context` objects may not be reused across multiple template processing runs.
cmlenz
parents: 14
diff changeset
849 else:
74cc70129d04 Refactoring to address #6: all match templates are now processed by a single filter, which means that match templates added by included templates are properly applied. A side effect of this refactoring is that `Context` objects may not be reused across multiple template processing runs.
cmlenz
parents: 14
diff changeset
850 # Test if the expression evaluated to an iterable, in which
74cc70129d04 Refactoring to address #6: all match templates are now processed by a single filter, which means that match templates added by included templates are properly applied. A side effect of this refactoring is that `Context` objects may not be reused across multiple template processing runs.
cmlenz
parents: 14
diff changeset
851 # case we yield the individual items
74cc70129d04 Refactoring to address #6: all match templates are now processed by a single filter, which means that match templates added by included templates are properly applied. A side effect of this refactoring is that `Context` objects may not be reused across multiple template processing runs.
cmlenz
parents: 14
diff changeset
852 try:
35
35b9e9318fb1 Simplify template processing model by removing dynamically generated `SUB` events.
cmlenz
parents: 31
diff changeset
853 for event in self._match(self._eval(iter(result), ctxt),
35b9e9318fb1 Simplify template processing model by removing dynamically generated `SUB` events.
cmlenz
parents: 31
diff changeset
854 ctxt):
35b9e9318fb1 Simplify template processing model by removing dynamically generated `SUB` events.
cmlenz
parents: 31
diff changeset
855 yield event
17
74cc70129d04 Refactoring to address #6: all match templates are now processed by a single filter, which means that match templates added by included templates are properly applied. A side effect of this refactoring is that `Context` objects may not be reused across multiple template processing runs.
cmlenz
parents: 14
diff changeset
856 except TypeError:
74cc70129d04 Refactoring to address #6: all match templates are now processed by a single filter, which means that match templates added by included templates are properly applied. A side effect of this refactoring is that `Context` objects may not be reused across multiple template processing runs.
cmlenz
parents: 14
diff changeset
857 # Neither a string nor an iterable, so just pass it
74cc70129d04 Refactoring to address #6: all match templates are now processed by a single filter, which means that match templates added by included templates are properly applied. A side effect of this refactoring is that `Context` objects may not be reused across multiple template processing runs.
cmlenz
parents: 14
diff changeset
858 # through
74cc70129d04 Refactoring to address #6: all match templates are now processed by a single filter, which means that match templates added by included templates are properly applied. A side effect of this refactoring is that `Context` objects may not be reused across multiple template processing runs.
cmlenz
parents: 14
diff changeset
859 yield Stream.TEXT, unicode(result), pos
74cc70129d04 Refactoring to address #6: all match templates are now processed by a single filter, which means that match templates added by included templates are properly applied. A side effect of this refactoring is that `Context` objects may not be reused across multiple template processing runs.
cmlenz
parents: 14
diff changeset
860
74cc70129d04 Refactoring to address #6: all match templates are now processed by a single filter, which means that match templates added by included templates are properly applied. A side effect of this refactoring is that `Context` objects may not be reused across multiple template processing runs.
cmlenz
parents: 14
diff changeset
861 else:
74cc70129d04 Refactoring to address #6: all match templates are now processed by a single filter, which means that match templates added by included templates are properly applied. A side effect of this refactoring is that `Context` objects may not be reused across multiple template processing runs.
cmlenz
parents: 14
diff changeset
862 yield kind, data, pos
74cc70129d04 Refactoring to address #6: all match templates are now processed by a single filter, which means that match templates added by included templates are properly applied. A side effect of this refactoring is that `Context` objects may not be reused across multiple template processing runs.
cmlenz
parents: 14
diff changeset
863
23
d88358f719fa Separate match and eval filters from the include and user-supplied filters.
cmlenz
parents: 22
diff changeset
864 def _flatten(self, stream, ctxt=None):
29
ab8703fa68b8 * Minor simplification of template directives: they no longer get passed the template instance and the position, as no directive was actually using
cmlenz
parents: 27
diff changeset
865 """Internal stream filter that expands `SUB` events in the stream."""
17
74cc70129d04 Refactoring to address #6: all match templates are now processed by a single filter, which means that match templates added by included templates are properly applied. A side effect of this refactoring is that `Context` objects may not be reused across multiple template processing runs.
cmlenz
parents: 14
diff changeset
866 try:
74cc70129d04 Refactoring to address #6: all match templates are now processed by a single filter, which means that match templates added by included templates are properly applied. A side effect of this refactoring is that `Context` objects may not be reused across multiple template processing runs.
cmlenz
parents: 14
diff changeset
867 for kind, data, pos in stream:
74cc70129d04 Refactoring to address #6: all match templates are now processed by a single filter, which means that match templates added by included templates are properly applied. A side effect of this refactoring is that `Context` objects may not be reused across multiple template processing runs.
cmlenz
parents: 14
diff changeset
868 if kind is Template.SUB:
35
35b9e9318fb1 Simplify template processing model by removing dynamically generated `SUB` events.
cmlenz
parents: 31
diff changeset
869 # This event is a list of directives and a list of nested
35b9e9318fb1 Simplify template processing model by removing dynamically generated `SUB` events.
cmlenz
parents: 31
diff changeset
870 # events to which those directives should be applied
17
74cc70129d04 Refactoring to address #6: all match templates are now processed by a single filter, which means that match templates added by included templates are properly applied. A side effect of this refactoring is that `Context` objects may not be reused across multiple template processing runs.
cmlenz
parents: 14
diff changeset
871 directives, substream = data
50
d3842cd76e92 Fix the way multiple directives are applied to a single `SUB` in many cases by making the directives themselves responsible for applying any remaining directives.
cmlenz
parents: 48
diff changeset
872 substream = directives[0](iter(substream), ctxt, directives[1:])
23
d88358f719fa Separate match and eval filters from the include and user-supplied filters.
cmlenz
parents: 22
diff changeset
873 substream = self._match(self._eval(substream, ctxt), ctxt)
17
74cc70129d04 Refactoring to address #6: all match templates are now processed by a single filter, which means that match templates added by included templates are properly applied. A side effect of this refactoring is that `Context` objects may not be reused across multiple template processing runs.
cmlenz
parents: 14
diff changeset
874 for event in self._flatten(substream, ctxt):
74cc70129d04 Refactoring to address #6: all match templates are now processed by a single filter, which means that match templates added by included templates are properly applied. A side effect of this refactoring is that `Context` objects may not be reused across multiple template processing runs.
cmlenz
parents: 14
diff changeset
875 yield event
74cc70129d04 Refactoring to address #6: all match templates are now processed by a single filter, which means that match templates added by included templates are properly applied. A side effect of this refactoring is that `Context` objects may not be reused across multiple template processing runs.
cmlenz
parents: 14
diff changeset
876 continue
74cc70129d04 Refactoring to address #6: all match templates are now processed by a single filter, which means that match templates added by included templates are properly applied. A side effect of this refactoring is that `Context` objects may not be reused across multiple template processing runs.
cmlenz
parents: 14
diff changeset
877 else:
74cc70129d04 Refactoring to address #6: all match templates are now processed by a single filter, which means that match templates added by included templates are properly applied. A side effect of this refactoring is that `Context` objects may not be reused across multiple template processing runs.
cmlenz
parents: 14
diff changeset
878 yield kind, data, pos
74cc70129d04 Refactoring to address #6: all match templates are now processed by a single filter, which means that match templates added by included templates are properly applied. A side effect of this refactoring is that `Context` objects may not be reused across multiple template processing runs.
cmlenz
parents: 14
diff changeset
879 except SyntaxError, err:
21
b4d17897d053 * Include paths are now interpreted relative to the path of the including template. Closes #3.
cmlenz
parents: 18
diff changeset
880 raise TemplateSyntaxError(err, self.filename, pos[1],
b4d17897d053 * Include paths are now interpreted relative to the path of the including template. Closes #3.
cmlenz
parents: 18
diff changeset
881 pos[2] + (err.offset or 0))
17
74cc70129d04 Refactoring to address #6: all match templates are now processed by a single filter, which means that match templates added by included templates are properly applied. A side effect of this refactoring is that `Context` objects may not be reused across multiple template processing runs.
cmlenz
parents: 14
diff changeset
882
36
ed370ebfa794 Fix for #7: match templates no longer process their own output.
cmlenz
parents: 35
diff changeset
883 def _match(self, stream, ctxt=None, match_templates=None):
29
ab8703fa68b8 * Minor simplification of template directives: they no longer get passed the template instance and the position, as no directive was actually using
cmlenz
parents: 27
diff changeset
884 """Internal stream filter that applies any defined match templates
ab8703fa68b8 * Minor simplification of template directives: they no longer get passed the template instance and the position, as no directive was actually using
cmlenz
parents: 27
diff changeset
885 to the stream.
ab8703fa68b8 * Minor simplification of template directives: they no longer get passed the template instance and the position, as no directive was actually using
cmlenz
parents: 27
diff changeset
886 """
36
ed370ebfa794 Fix for #7: match templates no longer process their own output.
cmlenz
parents: 35
diff changeset
887 if match_templates is None:
ed370ebfa794 Fix for #7: match templates no longer process their own output.
cmlenz
parents: 35
diff changeset
888 match_templates = ctxt._match_templates
ed370ebfa794 Fix for #7: match templates no longer process their own output.
cmlenz
parents: 35
diff changeset
889
17
74cc70129d04 Refactoring to address #6: all match templates are now processed by a single filter, which means that match templates added by included templates are properly applied. A side effect of this refactoring is that `Context` objects may not be reused across multiple template processing runs.
cmlenz
parents: 14
diff changeset
890 for kind, data, pos in stream:
74cc70129d04 Refactoring to address #6: all match templates are now processed by a single filter, which means that match templates added by included templates are properly applied. A side effect of this refactoring is that `Context` objects may not be reused across multiple template processing runs.
cmlenz
parents: 14
diff changeset
891
74cc70129d04 Refactoring to address #6: all match templates are now processed by a single filter, which means that match templates added by included templates are properly applied. A side effect of this refactoring is that `Context` objects may not be reused across multiple template processing runs.
cmlenz
parents: 14
diff changeset
892 # We (currently) only care about start and end events for matching
74cc70129d04 Refactoring to address #6: all match templates are now processed by a single filter, which means that match templates added by included templates are properly applied. A side effect of this refactoring is that `Context` objects may not be reused across multiple template processing runs.
cmlenz
parents: 14
diff changeset
893 # We might care about namespace events in the future, though
74cc70129d04 Refactoring to address #6: all match templates are now processed by a single filter, which means that match templates added by included templates are properly applied. A side effect of this refactoring is that `Context` objects may not be reused across multiple template processing runs.
cmlenz
parents: 14
diff changeset
894 if kind not in (Stream.START, Stream.END):
74cc70129d04 Refactoring to address #6: all match templates are now processed by a single filter, which means that match templates added by included templates are properly applied. A side effect of this refactoring is that `Context` objects may not be reused across multiple template processing runs.
cmlenz
parents: 14
diff changeset
895 yield kind, data, pos
74cc70129d04 Refactoring to address #6: all match templates are now processed by a single filter, which means that match templates added by included templates are properly applied. A side effect of this refactoring is that `Context` objects may not be reused across multiple template processing runs.
cmlenz
parents: 14
diff changeset
896 continue
74cc70129d04 Refactoring to address #6: all match templates are now processed by a single filter, which means that match templates added by included templates are properly applied. A side effect of this refactoring is that `Context` objects may not be reused across multiple template processing runs.
cmlenz
parents: 14
diff changeset
897
50
d3842cd76e92 Fix the way multiple directives are applied to a single `SUB` in many cases by making the directives themselves responsible for applying any remaining directives.
cmlenz
parents: 48
diff changeset
898 for idx, (test, path, template, directives) in \
d3842cd76e92 Fix the way multiple directives are applied to a single `SUB` in many cases by making the directives themselves responsible for applying any remaining directives.
cmlenz
parents: 48
diff changeset
899 enumerate(match_templates):
17
74cc70129d04 Refactoring to address #6: all match templates are now processed by a single filter, which means that match templates added by included templates are properly applied. A side effect of this refactoring is that `Context` objects may not be reused across multiple template processing runs.
cmlenz
parents: 14
diff changeset
900 result = test(kind, data, pos)
74cc70129d04 Refactoring to address #6: all match templates are now processed by a single filter, which means that match templates added by included templates are properly applied. A side effect of this refactoring is that `Context` objects may not be reused across multiple template processing runs.
cmlenz
parents: 14
diff changeset
901
74cc70129d04 Refactoring to address #6: all match templates are now processed by a single filter, which means that match templates added by included templates are properly applied. A side effect of this refactoring is that `Context` objects may not be reused across multiple template processing runs.
cmlenz
parents: 14
diff changeset
902 if result:
74cc70129d04 Refactoring to address #6: all match templates are now processed by a single filter, which means that match templates added by included templates are properly applied. A side effect of this refactoring is that `Context` objects may not be reused across multiple template processing runs.
cmlenz
parents: 14
diff changeset
903 # Consume and store all events until an end event
74cc70129d04 Refactoring to address #6: all match templates are now processed by a single filter, which means that match templates added by included templates are properly applied. A side effect of this refactoring is that `Context` objects may not be reused across multiple template processing runs.
cmlenz
parents: 14
diff changeset
904 # corresponding to this start event is encountered
74cc70129d04 Refactoring to address #6: all match templates are now processed by a single filter, which means that match templates added by included templates are properly applied. A side effect of this refactoring is that `Context` objects may not be reused across multiple template processing runs.
cmlenz
parents: 14
diff changeset
905 content = [(kind, data, pos)]
74cc70129d04 Refactoring to address #6: all match templates are now processed by a single filter, which means that match templates added by included templates are properly applied. A side effect of this refactoring is that `Context` objects may not be reused across multiple template processing runs.
cmlenz
parents: 14
diff changeset
906 depth = 1
74cc70129d04 Refactoring to address #6: all match templates are now processed by a single filter, which means that match templates added by included templates are properly applied. A side effect of this refactoring is that `Context` objects may not be reused across multiple template processing runs.
cmlenz
parents: 14
diff changeset
907 while depth > 0:
74cc70129d04 Refactoring to address #6: all match templates are now processed by a single filter, which means that match templates added by included templates are properly applied. A side effect of this refactoring is that `Context` objects may not be reused across multiple template processing runs.
cmlenz
parents: 14
diff changeset
908 event = stream.next()
74cc70129d04 Refactoring to address #6: all match templates are now processed by a single filter, which means that match templates added by included templates are properly applied. A side effect of this refactoring is that `Context` objects may not be reused across multiple template processing runs.
cmlenz
parents: 14
diff changeset
909 if event[0] is Stream.START:
74cc70129d04 Refactoring to address #6: all match templates are now processed by a single filter, which means that match templates added by included templates are properly applied. A side effect of this refactoring is that `Context` objects may not be reused across multiple template processing runs.
cmlenz
parents: 14
diff changeset
910 depth += 1
74cc70129d04 Refactoring to address #6: all match templates are now processed by a single filter, which means that match templates added by included templates are properly applied. A side effect of this refactoring is that `Context` objects may not be reused across multiple template processing runs.
cmlenz
parents: 14
diff changeset
911 elif event[0] is Stream.END:
74cc70129d04 Refactoring to address #6: all match templates are now processed by a single filter, which means that match templates added by included templates are properly applied. A side effect of this refactoring is that `Context` objects may not be reused across multiple template processing runs.
cmlenz
parents: 14
diff changeset
912 depth -= 1
74cc70129d04 Refactoring to address #6: all match templates are now processed by a single filter, which means that match templates added by included templates are properly applied. A side effect of this refactoring is that `Context` objects may not be reused across multiple template processing runs.
cmlenz
parents: 14
diff changeset
913 content.append(event)
74cc70129d04 Refactoring to address #6: all match templates are now processed by a single filter, which means that match templates added by included templates are properly applied. A side effect of this refactoring is that `Context` objects may not be reused across multiple template processing runs.
cmlenz
parents: 14
diff changeset
914
74cc70129d04 Refactoring to address #6: all match templates are now processed by a single filter, which means that match templates added by included templates are properly applied. A side effect of this refactoring is that `Context` objects may not be reused across multiple template processing runs.
cmlenz
parents: 14
diff changeset
915 # enable the path to keep track of the stream state
74cc70129d04 Refactoring to address #6: all match templates are now processed by a single filter, which means that match templates added by included templates are properly applied. A side effect of this refactoring is that `Context` objects may not be reused across multiple template processing runs.
cmlenz
parents: 14
diff changeset
916 test(*event)
74cc70129d04 Refactoring to address #6: all match templates are now processed by a single filter, which means that match templates added by included templates are properly applied. A side effect of this refactoring is that `Context` objects may not be reused across multiple template processing runs.
cmlenz
parents: 14
diff changeset
917
23
d88358f719fa Separate match and eval filters from the include and user-supplied filters.
cmlenz
parents: 22
diff changeset
918 content = list(self._flatten(content, ctxt))
35
35b9e9318fb1 Simplify template processing model by removing dynamically generated `SUB` events.
cmlenz
parents: 31
diff changeset
919 ctxt.push(select=lambda path: Stream(content).select(path))
36
ed370ebfa794 Fix for #7: match templates no longer process their own output.
cmlenz
parents: 35
diff changeset
920
50
d3842cd76e92 Fix the way multiple directives are applied to a single `SUB` in many cases by making the directives themselves responsible for applying any remaining directives.
cmlenz
parents: 48
diff changeset
921 if directives:
d3842cd76e92 Fix the way multiple directives are applied to a single `SUB` in many cases by making the directives themselves responsible for applying any remaining directives.
cmlenz
parents: 48
diff changeset
922 template = directives[0](iter(template), ctxt,
d3842cd76e92 Fix the way multiple directives are applied to a single `SUB` in many cases by making the directives themselves responsible for applying any remaining directives.
cmlenz
parents: 48
diff changeset
923 directives[1:])
36
ed370ebfa794 Fix for #7: match templates no longer process their own output.
cmlenz
parents: 35
diff changeset
924 template = self._match(self._eval(iter(template), ctxt),
ed370ebfa794 Fix for #7: match templates no longer process their own output.
cmlenz
parents: 35
diff changeset
925 ctxt, match_templates[:idx] +
ed370ebfa794 Fix for #7: match templates no longer process their own output.
cmlenz
parents: 35
diff changeset
926 match_templates[idx + 1:])
ed370ebfa794 Fix for #7: match templates no longer process their own output.
cmlenz
parents: 35
diff changeset
927 for event in template:
35
35b9e9318fb1 Simplify template processing model by removing dynamically generated `SUB` events.
cmlenz
parents: 31
diff changeset
928 yield event
35b9e9318fb1 Simplify template processing model by removing dynamically generated `SUB` events.
cmlenz
parents: 31
diff changeset
929 ctxt.pop()
17
74cc70129d04 Refactoring to address #6: all match templates are now processed by a single filter, which means that match templates added by included templates are properly applied. A side effect of this refactoring is that `Context` objects may not be reused across multiple template processing runs.
cmlenz
parents: 14
diff changeset
930
74cc70129d04 Refactoring to address #6: all match templates are now processed by a single filter, which means that match templates added by included templates are properly applied. A side effect of this refactoring is that `Context` objects may not be reused across multiple template processing runs.
cmlenz
parents: 14
diff changeset
931 break
74cc70129d04 Refactoring to address #6: all match templates are now processed by a single filter, which means that match templates added by included templates are properly applied. A side effect of this refactoring is that `Context` objects may not be reused across multiple template processing runs.
cmlenz
parents: 14
diff changeset
932 else:
74cc70129d04 Refactoring to address #6: all match templates are now processed by a single filter, which means that match templates added by included templates are properly applied. A side effect of this refactoring is that `Context` objects may not be reused across multiple template processing runs.
cmlenz
parents: 14
diff changeset
933 yield kind, data, pos
74cc70129d04 Refactoring to address #6: all match templates are now processed by a single filter, which means that match templates added by included templates are properly applied. A side effect of this refactoring is that `Context` objects may not be reused across multiple template processing runs.
cmlenz
parents: 14
diff changeset
934
1
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
935
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
936 class TemplateLoader(object):
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
937 """Responsible for loading templates from files on the specified search
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
938 path.
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
939
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
940 >>> import tempfile
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
941 >>> fd, path = tempfile.mkstemp(suffix='.html', prefix='template')
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
942 >>> os.write(fd, '<p>$var</p>')
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
943 11
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
944 >>> os.close(fd)
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
945
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
946 The template loader accepts a list of directory paths that are then used
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
947 when searching for template files, in the given order:
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
948
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
949 >>> loader = TemplateLoader([os.path.dirname(path)])
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
950
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
951 The `load()` method first checks the template cache whether the requested
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
952 template has already been loaded. If not, it attempts to locate the
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
953 template file, and returns the corresponding `Template` object:
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
954
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
955 >>> template = loader.load(os.path.basename(path))
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
956 >>> isinstance(template, Template)
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
957 True
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
958
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
959 Template instances are cached: requesting a template with the same name
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
960 results in the same instance being returned:
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
961
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
962 >>> loader.load(os.path.basename(path)) is template
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
963 True
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
964 """
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
965 def __init__(self, search_path=None, auto_reload=False):
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
966 """Create the template laoder.
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
967
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
968 @param search_path: a list of absolute path names that should be
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
969 searched for template files
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
970 @param auto_reload: whether to check the last modification time of
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
971 template files, and reload them if they have changed
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
972 """
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
973 self.search_path = search_path
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
974 if self.search_path is None:
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
975 self.search_path = []
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
976 self.auto_reload = auto_reload
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
977 self._cache = {}
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
978 self._mtime = {}
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
979
21
b4d17897d053 * Include paths are now interpreted relative to the path of the including template. Closes #3.
cmlenz
parents: 18
diff changeset
980 def load(self, filename, relative_to=None):
1
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
981 """Load the template with the given name.
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
982
22
2483fe549959 Fix for the template engine plugin: the search path is now ignored if the requested template path is absolute.
cmlenz
parents: 21
diff changeset
983 If the `filename` parameter is relative, this method searches the search
2483fe549959 Fix for the template engine plugin: the search path is now ignored if the requested template path is absolute.
cmlenz
parents: 21
diff changeset
984 path trying to locate a template matching the given name. If the file
2483fe549959 Fix for the template engine plugin: the search path is now ignored if the requested template path is absolute.
cmlenz
parents: 21
diff changeset
985 name is an absolute path, the search path is not bypassed.
1
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
986
22
2483fe549959 Fix for the template engine plugin: the search path is now ignored if the requested template path is absolute.
cmlenz
parents: 21
diff changeset
987 If requested template is not found, a `TemplateNotFound` exception is
2483fe549959 Fix for the template engine plugin: the search path is now ignored if the requested template path is absolute.
cmlenz
parents: 21
diff changeset
988 raised. Otherwise, a `Template` object is returned that represents the
2483fe549959 Fix for the template engine plugin: the search path is now ignored if the requested template path is absolute.
cmlenz
parents: 21
diff changeset
989 parsed template.
2483fe549959 Fix for the template engine plugin: the search path is now ignored if the requested template path is absolute.
cmlenz
parents: 21
diff changeset
990
2483fe549959 Fix for the template engine plugin: the search path is now ignored if the requested template path is absolute.
cmlenz
parents: 21
diff changeset
991 Template instances are cached to avoid having to parse the same
2483fe549959 Fix for the template engine plugin: the search path is now ignored if the requested template path is absolute.
cmlenz
parents: 21
diff changeset
992 template file more than once. Thus, subsequent calls of this method
2483fe549959 Fix for the template engine plugin: the search path is now ignored if the requested template path is absolute.
cmlenz
parents: 21
diff changeset
993 with the same template file name will return the same `Template`
2483fe549959 Fix for the template engine plugin: the search path is now ignored if the requested template path is absolute.
cmlenz
parents: 21
diff changeset
994 object (unless the `auto_reload` option is enabled and the file was
2483fe549959 Fix for the template engine plugin: the search path is now ignored if the requested template path is absolute.
cmlenz
parents: 21
diff changeset
995 changed since the last parse.)
1
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
996
21
b4d17897d053 * Include paths are now interpreted relative to the path of the including template. Closes #3.
cmlenz
parents: 18
diff changeset
997 If the `relative_to` parameter is provided, the `filename` is
b4d17897d053 * Include paths are now interpreted relative to the path of the including template. Closes #3.
cmlenz
parents: 18
diff changeset
998 interpreted as being relative to that path.
b4d17897d053 * Include paths are now interpreted relative to the path of the including template. Closes #3.
cmlenz
parents: 18
diff changeset
999
1
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
1000 @param filename: the relative path of the template file to load
21
b4d17897d053 * Include paths are now interpreted relative to the path of the including template. Closes #3.
cmlenz
parents: 18
diff changeset
1001 @param relative_to: the filename of the template from which the new
b4d17897d053 * Include paths are now interpreted relative to the path of the including template. Closes #3.
cmlenz
parents: 18
diff changeset
1002 template is being loaded, or `None` if the template is being loaded
b4d17897d053 * Include paths are now interpreted relative to the path of the including template. Closes #3.
cmlenz
parents: 18
diff changeset
1003 directly
1
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
1004 """
21
b4d17897d053 * Include paths are now interpreted relative to the path of the including template. Closes #3.
cmlenz
parents: 18
diff changeset
1005 if relative_to:
b4d17897d053 * Include paths are now interpreted relative to the path of the including template. Closes #3.
cmlenz
parents: 18
diff changeset
1006 filename = posixpath.join(posixpath.dirname(relative_to), filename)
1
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
1007 filename = os.path.normpath(filename)
22
2483fe549959 Fix for the template engine plugin: the search path is now ignored if the requested template path is absolute.
cmlenz
parents: 21
diff changeset
1008
2483fe549959 Fix for the template engine plugin: the search path is now ignored if the requested template path is absolute.
cmlenz
parents: 21
diff changeset
1009 # First check the cache to avoid reparsing the same file
1
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
1010 try:
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
1011 tmpl = self._cache[filename]
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
1012 if not self.auto_reload or \
21
b4d17897d053 * Include paths are now interpreted relative to the path of the including template. Closes #3.
cmlenz
parents: 18
diff changeset
1013 os.path.getmtime(tmpl.filepath) == self._mtime[filename]:
1
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
1014 return tmpl
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
1015 except KeyError:
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
1016 pass
22
2483fe549959 Fix for the template engine plugin: the search path is now ignored if the requested template path is absolute.
cmlenz
parents: 21
diff changeset
1017
2483fe549959 Fix for the template engine plugin: the search path is now ignored if the requested template path is absolute.
cmlenz
parents: 21
diff changeset
1018 # Bypass the search path if the filename is absolute
2483fe549959 Fix for the template engine plugin: the search path is now ignored if the requested template path is absolute.
cmlenz
parents: 21
diff changeset
1019 search_path = self.search_path
2483fe549959 Fix for the template engine plugin: the search path is now ignored if the requested template path is absolute.
cmlenz
parents: 21
diff changeset
1020 if os.path.isabs(filename):
2483fe549959 Fix for the template engine plugin: the search path is now ignored if the requested template path is absolute.
cmlenz
parents: 21
diff changeset
1021 search_path = [os.path.dirname(filename)]
2483fe549959 Fix for the template engine plugin: the search path is now ignored if the requested template path is absolute.
cmlenz
parents: 21
diff changeset
1022
2483fe549959 Fix for the template engine plugin: the search path is now ignored if the requested template path is absolute.
cmlenz
parents: 21
diff changeset
1023 for dirname in search_path:
1
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
1024 filepath = os.path.join(dirname, filename)
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
1025 try:
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
1026 fileobj = file(filepath, 'rt')
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
1027 try:
22
2483fe549959 Fix for the template engine plugin: the search path is now ignored if the requested template path is absolute.
cmlenz
parents: 21
diff changeset
1028 from markup.filters import IncludeFilter
21
b4d17897d053 * Include paths are now interpreted relative to the path of the including template. Closes #3.
cmlenz
parents: 18
diff changeset
1029 tmpl = Template(fileobj, basedir=dirname, filename=filename)
17
74cc70129d04 Refactoring to address #6: all match templates are now processed by a single filter, which means that match templates added by included templates are properly applied. A side effect of this refactoring is that `Context` objects may not be reused across multiple template processing runs.
cmlenz
parents: 14
diff changeset
1030 tmpl.filters.append(IncludeFilter(self))
1
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
1031 finally:
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
1032 fileobj.close()
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
1033 self._cache[filename] = tmpl
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
1034 self._mtime[filename] = os.path.getmtime(filepath)
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
1035 return tmpl
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
1036 except IOError:
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
1037 continue
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
1038 raise TemplateNotFound(filename, self.search_path)
Copyright (C) 2012-2017 Edgewall Software