[Zope] One last request
Ender
kthangavelu@earthlink.net
Mon, 23 Oct 2000 16:45:54 -0700
Taco Scargo wrote:
>
> I have one unsolved mystery left. What I am trying to do is print the titles
> from the DTML Documents in the 'artikelen' folder (and actually another
> property called 'inleiding'. I believe the code below should do this, but it
> does not work. It returns 'Zope' instead of the title. If I use the
> 'inleiding' property it reports that it does not exist. If I just use
> sequence-item it returns the complete item ok.
>
> Any clues ?
>
> Thanks,
>
> Taco
>
> http://www.gezondheidskrant.nl:8080/mainframe :
> <dtml-let articleList="[]">
>
> <dtml-in "artikelen.objectValues(['DTML Document'])" sort=publiceren_vanaf>
> <dtml-call "articleList.append(_['sequence-item'])">
> </dtml-in>
>
> <dtml-in "articleList[-4:]" reverse>
> <dtml-let theDocument=sequence-item>
> <dtml-var "theDocument.title">
> <dtml-var "theDocument.inleiding">
> </dtml-let>
> </dtml-in>
>
> </dtml-let>
try this instead
<dtml-in "artikelen.objectValues(['DTML Document'])"
sort=publiceren_vanaf size=4 reverse>
<dtml-var title>
<dtml-var inleiding>
</dtml-in>
kapil