[Zope] multi-level acquisition (or the "images" folder problem)

Randall F. Kern randy@spoke.net
Tue, 26 Jun 2001 16:47:25 -0700


You can also use my CascadingFolder instead of a normal Folder:

http://www.spoke.net/randy/CascadingFolders.tgz

Given Tim's diagram:
> /
> |
> +-/images
> | |
> | +-img1
> |
> +-/index_html
> |
> +-/folder
>   |
>   +-/images
>   | |
>   | +-img2
>   |
>   +-/index_html
>=20
> ...and edit the tag in /folder/index_html to say
>=20
> <dtml-var "images.img2">
> <dtml-var "images.img1">

If folder.images is a CascadingFolder, both of these dtml-var statements
will work.

-Randy