[Zpt] CVS: Packages/TAL - out1.html:1.2 out1.xml:1.10 out3.html:1.2 out3.xml:1.4 test1.html:1.2 test1.xml:1.10 test3.html:1.2 test3.xml:1.3
guido@digicool.com
guido@digicool.com
Fri, 16 Mar 2001 12:03:24 -0500 (EST)
Update of /cvs-repository/Packages/TAL/test
In directory korak:/tmp/cvs-serv30712/test
Modified Files:
out1.html out1.xml out3.html out3.xml test1.html test1.xml
test3.html test3.xml
Log Message:
Change tal:insert -> tal:content
--- Updated File out1.html in package Packages/TAL --
--- out1.html 2001/03/15 19:00:41 1.1
+++ out1.html 2001/03/16 17:03:23 1.2
@@ -6,7 +6,7 @@
<body xmlns:z="http://xml.zope.org/namespaces/tal" z:define="foo python:1">
- <h1 z:condition="python:1" z:insert="str:This
+ <h1 z:condition="python:1" z:content="str:This
Is
The
Replaced
@@ -17,9 +17,9 @@
<!-- examples adapted from TemplateAttributeLanguageSyntax -->
- <span z:insert="str:here/id">here/id</span>
+ <span z:content="str:here/id">here/id</span>
- <p z:define="x str:template/title; global five python:2+3;" z:insert="text var:five">5</p>
+ <p z:define="x str:template/title; global five python:2+3;" z:content="text var:five">5</p>
<p z:repeat="car python:['honda', 'subaru', 'acura']">
honda
@@ -37,13 +37,13 @@
<ul>
<span z:repeat="car python:['honda', 'subaru', 'acura']">
- <li z:insert="var:car">honda</li>
+ <li z:content="var:car">honda</li>
</span>
<span z:repeat="car python:['honda', 'subaru', 'acura']">
- <li z:insert="var:car">subaru</li>
+ <li z:content="var:car">subaru</li>
</span>
<span z:repeat="car python:['honda', 'subaru', 'acura']">
- <li z:insert="var:car">acura</li>
+ <li z:content="var:car">acura</li>
</span>
</ul>
@@ -53,14 +53,14 @@
<a z:attributes="href python:'http://python.org' " href="http://python.org">python</a>
<!-- test insert/replace structure -->
- <span z:insert="structure python:None"></span>
+ <span z:content="structure python:None"></span>
<span z:define="global x str:<h3>Header Level 3</h3>"/>
<span z:define="global x python:'&' + 'nbsp;;' + x"/>
<h3>Header Level 3</h3>
- <span z:insert="structure x"> <h3>Header Level 3</h3></span>
+ <span z:content="structure x"> <h3>Header Level 3</h3></span>
</body>
--- Updated File out1.xml in package Packages/TAL --
--- out1.xml 2001/02/15 17:09:10 1.9
+++ out1.xml 2001/03/16 17:03:23 1.10
@@ -8,16 +8,16 @@
<body xmlns:z="http://xml.zope.org/namespaces/tal" z:define="foo python:1">
- <h1 z:condition="python:1" z:insert="str:This Is The Replaced Title">This Is The Replaced Title</h1>
+ <h1 z:condition="python:1" z:content="str:This Is The Replaced Title">This Is The Replaced Title</h1>
<!-- test entity references -->
&HarryPotter;
<!-- examples adapted from TemplateAttributeLanguageSyntax -->
- <span z:insert="str:here/id">here/id</span>
+ <span z:content="str:here/id">here/id</span>
- <p z:define="x str:template/title; global five python:2+3;" z:insert="text var:five">5</p>
+ <p z:define="x str:template/title; global five python:2+3;" z:content="text var:five">5</p>
<p z:repeat="car python:['honda', 'subaru', 'acura']">
honda
@@ -35,13 +35,13 @@
<ul>
<span z:repeat="car python:['honda', 'subaru', 'acura']">
- <li z:insert="var:car">honda</li>
+ <li z:content="var:car">honda</li>
</span>
<span z:repeat="car python:['honda', 'subaru', 'acura']">
- <li z:insert="var:car">subaru</li>
+ <li z:content="var:car">subaru</li>
</span>
<span z:repeat="car python:['honda', 'subaru', 'acura']">
- <li z:insert="var:car">acura</li>
+ <li z:content="var:car">acura</li>
</span>
</ul>
@@ -51,14 +51,14 @@
<a z:attributes="href python:'http://python.org' " href="http://python.org">python</a>
<!-- test insert/replace structure -->
- <span z:insert="structure python:None"></span>
+ <span z:content="structure python:None"></span>
<span z:define="global x str:<h3>Header Level 3</h3>"/>
<span z:define="global x python:'&' + 'nbsp;;' + x"/>
<h3>Header Level 3</h3>
- <span z:insert="structure x"> <h3>Header Level 3</h3></span>
+ <span z:content="structure x"> <h3>Header Level 3</h3></span>
</body>
--- Updated File out3.html in package Packages/TAL --
--- out3.html 2001/03/15 19:00:41 1.1
+++ out3.html 2001/03/16 17:03:23 1.2
@@ -1,10 +1,10 @@
<?xml version="1.0" ?>
<p xmlns:z="http://xml.zope.org/namespaces/tal">
<span z:define="local x str:hello brave new world">
- <span z:insert="text local:x">hello brave new world</span>
+ <span z:content="text local:x">hello brave new world</span>
<span z:define="local x str:goodbye cruel world">
- <span z:insert="text local:x">goodbye cruel world</span>
+ <span z:content="text local:x">goodbye cruel world</span>
</span>
- <span z:insert="text local:x">hello brave new world</span>
+ <span z:content="text local:x">hello brave new world</span>
</span>
</p>
--- Updated File out3.xml in package Packages/TAL --
--- out3.xml 2001/02/07 18:34:06 1.3
+++ out3.xml 2001/03/16 17:03:23 1.4
@@ -1,10 +1,10 @@
<?xml version="1.0" ?>
<p xmlns:z="http://xml.zope.org/namespaces/tal">
<span z:define="local x str:hello brave new world">
- <span z:insert="text local:x">hello brave new world</span>
+ <span z:content="text local:x">hello brave new world</span>
<span z:define="local x str:goodbye cruel world">
- <span z:insert="text local:x">goodbye cruel world</span>
+ <span z:content="text local:x">goodbye cruel world</span>
</span>
- <span z:insert="text local:x">hello brave new world</span>
+ <span z:content="text local:x">hello brave new world</span>
</span>
</p>
--- Updated File test1.html in package Packages/TAL --
--- test1.html 2001/03/15 19:00:41 1.1
+++ test1.html 2001/03/16 17:03:23 1.2
@@ -8,7 +8,7 @@
<body xmlns:z="http://xml.zope.org/namespaces/tal" z:define="foo python:1">
<h1 z:condition="python:0">This title is not displayed</h1>
- <h1 z:condition="python:1" z:insert="str:This
+ <h1 z:condition="python:1" z:content="str:This
Is
The
Replaced
@@ -19,9 +19,9 @@
<!-- examples adapted from TemplateAttributeLanguageSyntax -->
- <span z:insert="str:here/id"/>
+ <span z:content="str:here/id"/>
- <p z:define="x str:template/title; global five python:2+3;" z:insert="text var:five"/>
+ <p z:define="x str:template/title; global five python:2+3;" z:content="text var:five"/>
<p z:repeat="car python:['honda', 'subaru', 'acura']">
<span z:replace="var:car"/>
@@ -33,7 +33,7 @@
<ul>
<span z:repeat="car python:['honda', 'subaru', 'acura']">
- <li z:insert="var:car">Car Name</li>
+ <li z:content="var:car">Car Name</li>
</span>
</ul>
@@ -43,14 +43,14 @@
<a z:attributes="href python:'http://python.org' ">python</a>
<!-- test insert/replace structure -->
- <span z:insert="structure python:None" />
+ <span z:content="structure python:None" />
<span z:replace="structure python:None" />
<span z:define="global x str:<h3>Header Level 3</h3>" />
<span z:define="global x python:'&' + 'nbsp;;' + x" />
<span z:replace="structure x" />
- <span z:insert="structure x" />
+ <span z:content="structure x" />
</body>
--- Updated File test1.xml in package Packages/TAL --
--- test1.xml 2001/02/15 17:09:10 1.9
+++ test1.xml 2001/03/16 17:03:23 1.10
@@ -8,7 +8,7 @@
<body xmlns:z="http://xml.zope.org/namespaces/tal" z:define="foo python:1">
<h1 z:condition="python:0">This title is not displayed</h1>
- <h1 z:condition="python:1" z:insert="str:This
+ <h1 z:condition="python:1" z:content="str:This
Is
The
Replaced
@@ -19,9 +19,9 @@
<!-- examples adapted from TemplateAttributeLanguageSyntax -->
- <span z:insert="str:here/id"/>
+ <span z:content="str:here/id"/>
- <p z:define="x str:template/title; global five python:2+3;" z:insert="text var:five"/>
+ <p z:define="x str:template/title; global five python:2+3;" z:content="text var:five"/>
<p z:repeat="car python:['honda', 'subaru', 'acura']">
<span z:replace="var:car"/>
@@ -33,7 +33,7 @@
<ul>
<span z:repeat="car python:['honda', 'subaru', 'acura']">
- <li z:insert="var:car">Car Name</li>
+ <li z:content="var:car">Car Name</li>
</span>
</ul>
@@ -43,14 +43,14 @@
<a z:attributes="href python:'http://python.org' ">python</a>
<!-- test insert/replace structure -->
- <span z:insert="structure python:None" />
+ <span z:content="structure python:None" />
<span z:replace="structure python:None" />
<span z:define="global x str:<h3>Header Level 3</h3>" />
<span z:define="global x python:'&' + 'nbsp;;' + x" />
<span z:replace="structure x" />
- <span z:insert="structure x" />
+ <span z:content="structure x" />
</body>
--- Updated File test3.html in package Packages/TAL --
--- test3.html 2001/03/15 19:00:41 1.1
+++ test3.html 2001/03/16 17:03:23 1.2
@@ -1,10 +1,10 @@
<?xml version="1.0" ?>
<p xmlns:z="http://xml.zope.org/namespaces/tal">
<span z:define="local x str:hello brave new world">
- <span z:insert="text local:x">outer variable x, first appearance</span>
+ <span z:content="text local:x">outer variable x, first appearance</span>
<span z:define="local x str:goodbye cruel world">
- <span z:insert="text local:x">inner variable x</span>
+ <span z:content="text local:x">inner variable x</span>
</span>
- <span z:insert="text local:x">outer variable x, second appearance</span>
+ <span z:content="text local:x">outer variable x, second appearance</span>
</span>
</p>
--- Updated File test3.xml in package Packages/TAL --
--- test3.xml 2001/01/29 21:10:00 1.2
+++ test3.xml 2001/03/16 17:03:23 1.3
@@ -1,10 +1,10 @@
<?xml version="1.0" ?>
<p xmlns:z="http://xml.zope.org/namespaces/tal">
<span z:define="local x str:hello brave new world">
- <span z:insert="text local:x">outer variable x, first appearance</span>
+ <span z:content="text local:x">outer variable x, first appearance</span>
<span z:define="local x str:goodbye cruel world">
- <span z:insert="text local:x">inner variable x</span>
+ <span z:content="text local:x">inner variable x</span>
</span>
- <span z:insert="text local:x">outer variable x, second appearance</span>
+ <span z:content="text local:x">outer variable x, second appearance</span>
</span>
</p>