annotate markup/template.py @ 74:d54b5fd60b52 trunk

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