[Zope-Checkins] CVS: Packages/DocumentTemplate - DT_HTML.py:1.19
Jim Fulton
jim@tarzan.digicool.com
Thu, 10 Jun 1999 16:45:11 -0400
Update of /cvs-repository/Packages/DocumentTemplate
In directory tarzan.digicool.com:/tmp/cvs-serv1684
Modified Files:
DT_HTML.py
Log Message:
Added a new optional EXPERIMENTAL HTML DTML syntax. As an alternative
to SSI syntax, you can now use ordinary HTML syntax, as in:
<dtml.in objectIds>
<dtml.var sequence-item>
</dtml.in>
Both the new syntax and the SSI syntax are allowed in the same document.
In fact, if you were really twisted, you could:
<dtml.in objectIds>
<dtml.var sequence-item>
<!--#/in-->
;)