annotate examples/turbogears/markuptest/templates/sitetemplate.html @ 203:48fab34e5e4d trunk

Fix for handling function calls with star/dstar arguments in expressions. Closes #42. Many thanks to David Fraser for reporting the problem and providing a patch!
author cmlenz
date Fri, 25 Aug 2006 13:12:39 +0000
parents 64ff134868c4
children
rev   line source
110
64ff134868c4 update the example TurboGears app and include an example of using TurboGears wigets
mgood
parents:
diff changeset
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
64ff134868c4 update the example TurboGears app and include an example of using TurboGears wigets
mgood
parents:
diff changeset
2 <html xmlns="http://www.w3.org/1999/xhtml"
64ff134868c4 update the example TurboGears app and include an example of using TurboGears wigets
mgood
parents:
diff changeset
3 xmlns:py="http://markup.edgewall.org/"
64ff134868c4 update the example TurboGears app and include an example of using TurboGears wigets
mgood
parents:
diff changeset
4 xmlns:xi="http://www.w3.org/2001/XInclude"
64ff134868c4 update the example TurboGears app and include an example of using TurboGears wigets
mgood
parents:
diff changeset
5 py:strip="">
64ff134868c4 update the example TurboGears app and include an example of using TurboGears wigets
mgood
parents:
diff changeset
6 <head py:match="head" py:attrs="select('@*')">
64ff134868c4 update the example TurboGears app and include an example of using TurboGears wigets
mgood
parents:
diff changeset
7 <meta content="text/html; charset=UTF-8" http-equiv="content-type" py:replace="''"/>
64ff134868c4 update the example TurboGears app and include an example of using TurboGears wigets
mgood
parents:
diff changeset
8 <title py:replace="''">Your title goes here</title>
64ff134868c4 update the example TurboGears app and include an example of using TurboGears wigets
mgood
parents:
diff changeset
9 <link py:for="css in tg_css" py:replace="ET(css.display())" />
64ff134868c4 update the example TurboGears app and include an example of using TurboGears wigets
mgood
parents:
diff changeset
10 <link py:for="js in tg_js_head" py:replace="ET(js.display())" />
64ff134868c4 update the example TurboGears app and include an example of using TurboGears wigets
mgood
parents:
diff changeset
11 ${select('*')}
64ff134868c4 update the example TurboGears app and include an example of using TurboGears wigets
mgood
parents:
diff changeset
12 </head>
64ff134868c4 update the example TurboGears app and include an example of using TurboGears wigets
mgood
parents:
diff changeset
13 <body py:match="body" py:attrs="select('@*')">
64ff134868c4 update the example TurboGears app and include an example of using TurboGears wigets
mgood
parents:
diff changeset
14 <div py:for="js in tg_js_bodytop" py:replace="ET(js.display())" />
64ff134868c4 update the example TurboGears app and include an example of using TurboGears wigets
mgood
parents:
diff changeset
15 ${select('*')}
64ff134868c4 update the example TurboGears app and include an example of using TurboGears wigets
mgood
parents:
diff changeset
16 <div py:for="js in tg_js_bodybottom" py:replace="ET(js.display())" />
64ff134868c4 update the example TurboGears app and include an example of using TurboGears wigets
mgood
parents:
diff changeset
17 </body>
64ff134868c4 update the example TurboGears app and include an example of using TurboGears wigets
mgood
parents:
diff changeset
18 </html>
Copyright (C) 2012-2017 Edgewall Software