[Zope] Re: rendering a complete HTML file

Maik Jablonski maik.jablonski@uni-bielefeld.de
Tue, 28 Jan 2003 13:27:11 +0100


Pablo Gomez wrote:
> This is the explanation. There is a DTML-method (arbol_html) that includes
> 
> <dtml-in expr="objectValues('File')">
> <a href="showdoc_html?htmldoc=&dtml-id;" ><dtml-var title_or_id></a>
> </dtml-in>
> 
> As you can see it invokes showdoc_html that should render the HTML file 
> content. I have tried several methods but none is satisfactory. Of 
> course I am opened to the idea of changing the URL calling method. 
> Perhaps it's time to use python scripts yet I still feel myself 
> uncomfortable with python :-(

I didn't understand your problem... but maybe you want something like this:

<dtml-in expr="objectValues('File')">
  <a href="<dtml-var absolute_url>"><dtml-var title_or_id></a>
</dtml-in>


Cheers, Maik