[Zope] Getting results of External Method

Chris Withers chrisw@nipltd.com
Sat, 10 Aug 2002 16:32:34 +0100


Marie Robichon wrote:
> 
> I have an External Method that parses a file and put the title, body, 
> list of links, list of images into a dictionary.
> 
> How do I now go about getting the info out of this dictionary?
> 
> If I do a
> <dtml-var "filescript(REQUEST)">

try this:

<dtml-with filescript mapping>
  <dtml-var title>
  <dtml-in links>
   <dtml-var sequence-item>
  </dtml-in>
  <dtml-war body>
...etc...
</dtml-with>

cheers,

Chris