Ralph Heinkel writes:
 > Hi,
 > 
 > having a structure like
 > FolderA
 >       DocA
 > FolderB
 >      DocB
 > 
 > I try to display DocA from within DocB using
 > 
 > <dtml-var "FolderA.DocA">
 > 
 > which basically works, except that HTML code from DocA is not rendered but
 > printed as plain ascii (e.g. I can see the <br> statements as these 4
 > characters).

You should use:
  <dtml-with FolderA><dtml-var DocA></dtml-with>

You may use:
  <dtml-var "FolderA.DocA(_.None,_)">

Search the list's archive, when you want to learn more about
this magic.


Dieter

_______________________________________________
Zope maillist  -  [EMAIL PROTECTED]
http://lists.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists - 
 http://lists.zope.org/mailman/listinfo/zope-announce
 http://lists.zope.org/mailman/listinfo/zope-dev )

Reply via email to