[Zope] Anonymous view for properties of objects

Hans-Dieter Stich hdstich@hdstich.com
Tue, 30 Jul 2002 09:41:44 +0200


On Mon, 29 Jul 2002 18:13:15 -0400, you wrote:
>
>I've some scripts to automatically generate a navigation list, that used to 
work with Zope 2.1.6.
> eg:
>    <dtml-in "objectItems(['Folder'])">
>    	<dtml-var title_or_id>
>    </dtml-in>
>
>In Zope 2.5, this gives an error for non-authenticated users like "you are not 
authorized to view the property title".
>
>Hints?

you did this in the root folder of your Zope installation, right?

your script is trying to access the title property of the acl_users folder and 
this seems not to be allowed with Zope 2.5.1.

/hd