[Zope] help needed: which folder am i in?

Paul Zwarts paz@oratrix.com
Wed, 25 Jul 2001 16:10:43 +0200


You could check your REQUEST['PATH'] or REQUEST.steps variables...

<dtml-var "REQUEST.steps[0]">

will either return the first folder name

or..

<dtml-in "REQUEST.steps">
  <dtml-var sequence-item>
</dtml-in>

Will return the PATH in an itemized list. This is a good starting place to
evaluate the location you are in curently.


Paz

-----Original Message-----
From: zope-admin@zope.org [mailto:zope-admin@zope.org]On Behalf Of
net_warrior@gmx.net
Sent: Wednesday, July 25, 2001 4:00 PM
To: Zope@Zope.org
Subject: [Zope] help needed: which folder am i in?


i have got a folder 'x' with a method 'leftbox'.
in the folder 'x' there are folder 'y' and 'z' in 'y' and 'z' there are
index_html documents which include the 'leftbox'-method.
i want my 'leftbox' to know where ist is - basically in which folder (not
which document) it was included.
like something like this dummy-cod:
<dtml-if "folder_where_this_index_html_where_this_leftbox_is_included =
'y'">
extended navigation for folder 'y'
</dtml-if>
<dtml-if "folder_where_this_index_html_where_this_leftbox_is_included =
'z'">
extended navigation for folder 'z'
</dtml-if>
any ideas?

thx in advance
wolki

--
GMXler aufgepasst - jetzt viele 1&1 New WebHosting Pakete ohne
Einrichtungsgebuehr + 1 Monat Grundgebuehrbefreiung!
http://puretec.de/index.html?ac=OM.PU.PU003K00717T0492a


_______________________________________________
Zope maillist  -  Zope@zope.org
http://lists.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists -
 http://lists.zope.org/mailman/listinfo/zope-announce
 http://lists.zope.org/mailman/listinfo/zope-dev )