[ZPT] CVS: Packages/TAL - test14.html:1.1 test14.xml:1.1

guido@digicool.com guido@digicool.com
Wed, 11 Apr 2001 15:09:04 -0400 (EDT)


Update of /cvs-repository/Packages/TAL/test/input
In directory korak:/tmp/cvs-serv26759/input

Added Files:
	test14.html test14.xml 
Log Message:
Add test cases for repeat with replace/combine.


--- Added File test14.html in package Packages/TAL ---
<table>
  <tr>
    <td tal:repeat="x python:['car', 'bike', 'broomstick']" tal:content="x">
    </td>
  </tr>
</table>

<p>
  <span tal:repeat="x python:['Harry', 'Ron', 'Hermione']" tal:replace="x" />
</p>

--- Added File test14.xml in package Packages/TAL ---
<?xml version="1.0" ?>
<html xmlns:tal="http://xml.zope.org/namespaces/tal">

<table>
  <tr>
    <td tal:repeat="x python:['car', 'bike', 'broomstick']" tal:content="x">
    </td>
  </tr>
</table>

<p>
  <span tal:repeat="x python:['Harry', 'Ron', 'Hermione']" tal:replace="x" />
</p>

</html>