[Zope] Referencing object in other folders
Roché Compaan
roche@up-front.co.za
Wed, 13 Oct 1999 16:54:46 +0200
I have the following folder structure
/ (Root folder)
--Images (folder)
I simply reference images in the images folder by using:
<dtml-with Images>
<dtml-var myimage>
</dtml-with>
Isn't there a shorter way to address objects in other folders?
I thought of writing a dtml method than can handle all requests for objects
in the image folder, but how does one pass the request on for that method.
I come from a delphi background so i think in terms of
procedure procedurename(var image : timage)
begin
do something with image;
end;
Thank you
Roché Compaan