Mercurial > genshi > genshi-test
annotate examples/bench/myghty/base.myt @ 639:b0cdc457dde9
Fix for XInclude fallbacks when auto-reloading is enabled. Closes #147. Thanks to rintaro@cpan.org for reporting the issue and providing a patch and test case!
author | cmlenz |
---|---|
date | Mon, 17 Sep 2007 23:11:21 +0000 |
parents | 1f4e66680f9f |
children |
rev | line source |
---|---|
320 | 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" lang="en"> | |
5 | |
6 <%method wrap> | |
7 <%args scope="request"> | |
8 title | |
9 </%args> | |
10 <div id="header"> | |
11 <h1><% title %></h1> | |
12 </div> | |
13 | |
14 <% m.content() %> | |
15 | |
16 </%method> | |
17 | |
18 <div id="footer"></div> | |
19 </html> | |
20 | |
21 <%method greeting> | |
22 <%args> | |
23 name | |
24 </%args> | |
25 Hello, <% name | h %> | |
26 </%method> |