Mercurial > genshi > mirror
annotate examples/basic/test.html @ 327:c72243905470 experimental-compiler
- further dev on codegen.
- had to add a few instance variables to genshi core to help in generating string-based python code; i
Expression holds onto its AST node, DefDirective holds onto the original string-based signature.
- generator code is a little messy right now, will clean up !
author | zzzeek |
---|---|
date | Sat, 04 Nov 2006 21:01:42 +0000 |
parents | 84168828b074 |
children | 2aa7ca37ae6a |
rev | line source |
---|---|
3 | 1 <!DOCTYPE html |
2 PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" | |
3 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> | |
4 <html xmlns="http://www.w3.org/1999/xhtml" | |
230 | 5 xmlns:py="http://genshi.edgewall.org/" |
21
b4d17897d053
* Include paths are now interpreted relative to the path of the including template. Closes #3.
cmlenz
parents:
3
diff
changeset
|
6 xmlns:xi="http://www.w3.org/2001/XInclude" |
b4d17897d053
* Include paths are now interpreted relative to the path of the including template. Closes #3.
cmlenz
parents:
3
diff
changeset
|
7 lang="en"> |
b4d17897d053
* Include paths are now interpreted relative to the path of the including template. Closes #3.
cmlenz
parents:
3
diff
changeset
|
8 <xi:include href="layout.html" /> |
3 | 9 <xi:include href="custom_stuff.html"><xi:fallback/></xi:include> |
10 <body class="$bozz"> | |
11 <ul py:attrs="{'id': 'second', 'class': None}" py:if="len(items) > 0"> | |
12 <li py:for="item in items">Item $prefix${item.split()[-1]}</li> | |
13 XYZ ${hey} | |
14 </ul> | |
15 ${macro1()} ${macro1()} ${macro1()} | |
16 ${macro2('john')} | |
17 ${macro2('kate', classname='collapsed')} | |
18 <div py:content="macro2('helmut')" py:strip="">Replace me</div> | |
19 <greeting name="Dude" /> | |
20 <greeting name="King" /> | |
21 <span class="greeting">Hello Silicon</span> | |
22 </body> | |
23 </html> |