annotate markup/template.py @ 21:b4d17897d053 trunk

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