[Zope] XML and XSl rendering problem

Dieter Maurer dieter@handshake.de
Fri, 2 Aug 2002 23:03:08 +0200


zope writes:
 > My
 > XML  Page:(Page ID=index_xml)
 > <?xml version="1.0" encoding="UTF-8"?>
 > <?xml-stylesheet type="text/xsl" href="/test/index.xsl"?>
 > <omspage xmlns:tal="http://xml.zope.org/namespaces/tal">
 >   <div tal:replace="here/hd">Title</div>
 >  <div tal:replace="here/ft">Title</div>
 > </omspage>
You must use "structure" when your interpolated text contains XML elements,
e.g. '<div tal:replace="structure here/hd" />'


Dieter