[ZDP] BackTalk to Document The Zope Book (2.5 Edition)/Using Basic Zope Objects

nobody@nowhere.com nobody@nowhere.com
Sat, 31 Aug 2002 03:23:07 -0400


A comment to the paragraph below was recently added via http://www.zope.org/Documentation/Books/ZopeBook/current/BasicObject.stx#2-67

---------------

    A simple example of using DTML Methods is to create a DTML Method in
    the root folder called *objectList*::

      <dtml-var standard_html_header>

      <ul>
        <dtml-in objectValues>
          <li><dtml-var getId></li>
        </dtml-in>
      </ul>

      <dtml-var standard_html_footer>  

      % kaleissin - May 16, 2002 2:01 pm:
       DTML Methods are much more handy than DTML Documents, which sometimes behave folderishly or in similarly
       unexpected ways

      % Anonymous User - July 25, 2002 5:25 pm:
       I am still confused with DTML document and DTML method. What is the main difference?

      % Anonymous User - Aug. 31, 2002 3:23 am:
       There is a section which compares DTML documents/methods further down.