[Zope-Checkins] CVS: Zope/lib/python/Products/ZopeTutorial - tutorial.stx:1.6
Amos Latteier
amos@zope.com
Mon, 15 Oct 2001 13:55:20 -0400
Update of /cvs-repository/Zope/lib/python/Products/ZopeTutorial
In directory cvs.zope.org:/tmp/cvs-serv11711
Modified Files:
tutorial.stx
Log Message:
fix some stx quoting problems - argh it seems that stx quoting rules have changed
=== Zope/lib/python/Products/ZopeTutorial/tutorial.stx 1.5 => 1.6 ===
What's going on? The [<dtml-in>] tag iterates over a list of
- objects. The '<dtml-var sequence-item>' tag inserts the
+ objects. The <'dtml-var sequence-item'> tag inserts the
current object. The 'expr="sightingsFolder.objectValues()"' part of
- the '<dtml-in>' tags tells it how to get a list of objects. It
+ the [<dtml-in>] tags tells it how to get a list of objects. It
calls the 'objectValues' method of the 'sightingsFolder' folder.
'objectValues' returns all the objects contained by a folder.
@@ -427,7 +427,7 @@
* [<dtml-in>] iterates over a list of objects.
- * '<dtml-var sequence-item>' inserts the current object
+ * <'dtml-var sequence-item'> inserts the current object
when looping over a list of objects.
* You can get the contents of a folder by calling its
@@ -772,7 +772,7 @@
to edit it.
Notice that the sightings are generated by iterating over the
- 'sightings' ZSQL Method with the '<dtml-in>' tag.
+ 'sightings' ZSQL Method with the [<dtml-in>] tag.
2. Add a line between each sighting by changing the contents of
the 'sightings' DTML Document to::