-
Notifications
You must be signed in to change notification settings - Fork 94
/
TODO
289 lines (221 loc) · 11.5 KB
/
TODO
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
#========================================================================
#
# TODO
#
# DESCRIPTION
# TODO list for the Template Toolkit version 2.20, containing
# known bugs, limitations, planned enhancements, long term visions
# and a few whacky ideas. Development on TT2 has effectively
# ceased for everything but bug fixes. All new features and general
# enhancements are being saved for TT3.
#
# AUTHOR
# Andy Wardley <abw@wardley.org>
#
#========================================================================
#------------------------------------------------------------------------
# Miscellaneous
#------------------------------------------------------------------------
* The 'eval' filter leaks memory, as reported by Colin Johnson. The
filter subroutine created contains a reference to the context and then
gets cached in the FILTER_CACHE item of the context. Hey presto -
circular references. The reset() method should probably clear the
FILTER_CACHE. Also need to check the plugins cache for similar
problems. UPDATE: this may now have been fixed.
* The handling of the DELIMITER parameter could be improved. At the
moments it's hardcoded and hacked to Do The Right Thing for Win32
but I'd prefer it to Do The Good Thing.
* If you use 'ttree' with a COMPILE_EXT or COMPILE_DIR option then
templates in the 'lib' directories will be compiled, but those in
the src directories will not. This is because ttree does a chdir()
to the src directory and processes files as './myfile'. TT doesn't
compile RELATIVE files by default.
* No recursion checking is performed for BLOCKs, only
Template::Document instances. This is probably the way it will stay
(unless anyone shouts loudly enough) but it should be documented
anyway. STOP PRESS: I had an idea that bare BLOCK subs should be
blessed into Template::Document class to allow $template->process()
to be called regardless. Template::Document methods would need to
test $self for CODE/HASH and Do The Right Thing. This would then
allow recursion testing for BLOCKs as well as Template::Document
objects.
* It would be nice if there was an option so that the files generated
under the COMPILE_DIR are relative to the INCLUDE_PATH and not absolute.
This could cause potential conflicts (e.g. if INCLUDE_PATH changes
between sessions and the same files in different INCLUDE_PATH dirs
maps to the samed compiled version) but is convenient for those times
when you know that's not going to be a problem.
* Craig Barratt notes, in fixing the problem with NEXT not working
inside SWITCH (see Changes v2.04):
By the way, I came across another arcane bug:
NEXT FOREACH k = [1];
is legal syntax but is an infinite loop, since $_[0]->{ INFOR } in
Parser.yp is not set when the NEXT is parsed, so it generates a
plain "next;" rather than calling $factor->next(). I don't see an
easy, clean fix.
#------------------------------------------------------------------------
# Documentation
#------------------------------------------------------------------------
* Extend the FAQ.
#------------------------------------------------------------------------
# Directives
#------------------------------------------------------------------------
* A 'FOR', like 'FOREACH' but without using an iterator. You wouldn't get
the 'loop' reference to test 'first', 'last', etc., against, but it would
be faster for those cases when you didn't need it. This will likely
be implemented as a facility feature (see later).
* PRINT should be defined as a new directive, doing what the print()
method of Template::View currently does (the Right Thing).
[% PRINT node %] === [% tt.view.print(node) %]
NOTE TO SELF: this is a Very Good Idea [tm]. PRINT becomes the way to
display a data structure (e.g. hash, list, XML element, MyThingy, database
record, etc.) in an "intelligent" fashion. Implemented underneath via
the current default VIEW.
* ARGS. There may be a requirement for reusable template components
to define what variables they plan to use. This would allow some
optimisation and also possibly help to avoid global variable clashes.
Would also be a useful "comment" directive for human readers and maybe
also help in debugging (WARNING: expected 'title' argument).
[% ARGS title # no default
bgcol='#ffffff' # default value
%]
#------------------------------------------------------------------------
# Parser
#------------------------------------------------------------------------
* Lists don't accept arbitrary expressions as elements, although
function arguments now do. So you can do this: [% foo(bar + 1) %],
but you can't do this: [% foo = [bar + 1] %]. This has been fixed in
the v3 parser.
* The parser isn't as intelligent as it could be about blocks of template
code commented out en masse. The pre-scanner find the first terminating
END_TAG after an opening tag, regardless of it being on a
commented line or not.
e.g.
[%#
#
# [% INCLUDE blah %] <- directive ends here
# foo <- this gets printed
%]
* Craig Barratt reports the following:
I looked at Parse.yp to see how hard it would be to push FILTER
evaluation down into the expr rule, so that you could put filters
inside expressions (eg: using repeat() just like "x" in
perl). More about that later.
In browsing through Parser.yp I noticed several issues:
- The operator precedence is very different to perl, C etc.
For example, these expressions evaluate differently in
TT2 versus perl, C etc:
+ "1 || 0 && 0" evaluates to 0 in TT2 and 1 in perl or C.
TT2 parses it as (1||0) && 0; in perl and C && is higher
precedence than ||.
+ "1 + !0 + 1" evaluates to 1 in TT2 and 3 in perl or C.
TT2 parses it as 1 + !(0 + 1); in perl and C ! is higher
precedence than +.
+ Many other expressions parse incorrectly, but the effect
is benign since most rules return flat text that perl
correctly re-parses. Eg, 2 * 3 + 4 is incorrectly parsed
as (2 * (3 + 4)), but happily just the string "2 * 3 + 4"
is compiled by perl, which correctly evaluates it as
(2 * 3) + 4.
- There is no unary minus and the NUMBER token is signed. So you can
write "x = -2;" but not "x = -y;". Moreover, "x = 1 -1;" is a syntax
error (since "1 -1" returns just two tokens NUMBER, NUMBER). (As a
workaround you can rewrite these as "x = 0-y;" and "x = 1 - 1".)
- You cannot have expressions in lists ([..]) and function arguments.
I have modified the Parser.pm (to make NUMBER unsigned) and modified
Grammar.pm.skel and Parser.yp to fix most of these issues (improved
operator precedence, unary minus and plus), and also to allow
expressions in a few more places (eg: range). But the last item
has me stuck.
The parse rules for lists and function arguments make COMMA optional,
so you can equivalently write [1 2 3 4] or [1,,,,,2 3 4] or [1,2,3,4].
This makes it very difficult to make each term an expression, because
the resulting grammar has many ambiguities. For example, is [1 -1]
two elements [1, -1] or a single element [0]? One partial solution is
to move the bracketed expression rule '(' expr ')' to the term rule,
allowing expressions to be included via parens. But there are also
ambiguities, eg: does [foo (1+1)] have 2 elements or is it a function
call to foo?
Without allowing expressions in lists or function arguments, the unary
minus change I've made means that the NUMBER token is unsigned, so with
my changes you cannot write [-1, 2, 3]. Not a good thing.
One solution is to change the grammar so that COMMAs are required in
lists and arguments, but that would break several test cases and
probably break lots of old templates. But this might be the only
way to produce a grammar that is a lot more similar to perl.
Another solution is to ignore these issues altogether and use temporary
variables to precompute expressions that you need in lists or function
arguments, or use explicit lvalue assignments, eg:
foo(x + 2); becomes temp = x + 2;
foo(temp);
or
List = [x+1,x+2,x+4]; becomes List = [];
List.0 = x+1;
List.1 = x+2;
List.2 = x+4;
Both of these look ugly to me.
Back to the FILTER issues. Ultimately I'd like to be able to embed filters
as low precedence operators in expressions, and write:
List = [
"foo" | repeat(10),
"bar" | repeat(10)
];
but I doubt there is a non-ambiguous upward compatible grammar that
supports this.
Comments?
#------------------------------------------------------------------------
# Plugins
#------------------------------------------------------------------------
* We need a way to easily enable/disable certain plugins. This should
be addressed by facility provision. Probably something for v3.
* The Template::Plugin DBI iterator first/last() methods don't behave
the same as list first/last(). Randal also reports that get_all()
doesn't work as it should - may be a conflict in code/docs? Again,
this is a problem to solve in TT3.
* PLUGINS could accept a reference to an object which is used as a
singleton factory for a plugin. (NOTE: 2.01 includes PLUGIN_FACTORY
to implement this, but currently undocumented because it's likely to
change).
* A more general solution for XML (e.g. DOM, XPath, etc) would be for
TT to support a PerlSAX handler which generates the appropriate
callbacks to the view. This should make it possible to easily
display XML content from XML::DOM, XML::XPath, or any other SAX
compliant source.
Something like this:
# define a view
[% VIEW my_view
prefix="my/xml/dom/path/" ;
END
%]
# get some XML
[% USE dom = XML.DOM %]
[% doc = dom.parser(my.files.xmldata) %]
# ask the view to print the data
[% my_view.print(doc) %]
The view print() method will call the relevant 2SAX method on the
XML node, passing a SAX2TTView handler to make the relevant calls
back to the view to display parts of the XML data model as SAX events
are received.
#------------------------------------------------------------------------
# Views
#------------------------------------------------------------------------
The current implementation is there to get me (and anybody else who's
interested) using it and trying to identify the problems, requirements
and general issues involved. I've got a better idea now about what a
VIEW should be in notional terms, but I'm still not quite sure about
the syntax and API.
General thoughts:
* A view defines a set of templates. Things like prefix, suffix,
default, etc., can be specified to customise template selection.
In this sense, it is like a custom provider of those templates.
It implements the template() method to fetch a template according
to those rules.
* It is also a custom processor of those templates. It implements the
process() method. In this sense, it is like a custom context.
* It also implements dispatch logic to apply the right template to the
right kind of data. It does this via the print() method. It may
have all kinds of custom dispatch logic.
* A view takes responsiblity for things template related as opposed
to anything data related (stash) or application logic related
(plugins, runtime code, etc). It is the user interface facility
within the engine.