[ZPT] CVS: Products/PageTemplates/help - tal-repeat.stx:1.2 tal-define.stx:1.2
Amos Latteier
amos@zope.com
Mon, 1 Oct 2001 21:58:47 -0400
Update of /cvs-repository/Products/PageTemplates/help
In directory cvs.zope.org:/tmp/cvs-serv23458
Modified Files:
tal-repeat.stx tal-define.stx
Log Message:
typo fixes
=== Products/PageTemplates/help/tal-repeat.stx 1.1 => 1.2 ===
Description
- The 'tal:repeat' statement replicates a subtree of your document
+ The 'tal:repeat' statement replicates a sub-tree of your document
once for each item in a sequence. The expression should evaluate
to a sequence. If the sequence is empty, then the statement
element is deleted, otherwise it is repeated for each value in the
@@ -26,7 +26,7 @@
You use repeat variables to access information about the current
repetition (such as the repeat index). The repeat variable has
the same name as the local variable, but is only accessible
- through the builtin variable named 'repeat'.
+ through the built-in variable named 'repeat'.
The following information is available from the repeat variable:
@@ -61,7 +61,7 @@
Examples
- Iterating over a sequece of strings::
+ Iterating over a sequence of strings::
<p tal:repeat="txt python:'one', 'two', 'three'">
<span tal:replace="txt" />
=== Products/PageTemplates/help/tal-define.stx 1.1 => 1.2 ===
tal:define="global company_name string:Zope Corp, Inc."
- Defining two varibles, where the second depends on the first::
+ Defining two variables, where the second depends on the first::
tal:define="mytitle template/title; tlen python:len(mytitle)"