[Zope3-checkins] CVS: Zope3/src/zope/pagetemplate/tests/input - template_usage.html:1.2

Godefroid Chapelle gotcha@swing.be
Tue, 25 Mar 2003 06:23:41 -0500


Update of /cvs-repository/Zope3/src/zope/pagetemplate/tests/input
In directory cvs.zope.org:/tmp/cvs-serv20400/pagetemplate/tests/input

Added Files:
	template_usage.html 
Log Message:
merging template_usage branch

connection to menu usage still to be done



=== Zope3/src/zope/pagetemplate/tests/input/template_usage.html 1.1 => 1.2 ===
--- /dev/null	Tue Mar 25 06:23:41 2003
+++ Zope3/src/zope/pagetemplate/tests/input/template_usage.html	Tue Mar 25 06:23:11 2003
@@ -0,0 +1,15 @@
+<html xmlns:tal="http://xml.zope.org/namespaces/tal">
+  <head><title>Test of documentation templates</title></head>
+  <body>
+      <span tal:content="usage"> blah </span>
+      <p tal:condition="usage">
+      usage is defined.
+      </p>
+      <p tal:condition="usage/test">
+      This is test.
+      </p>
+      <p tal:condition="usage/retest">
+      This is retest.
+      </p>
+  </body>
+</html>