[Zope] resolving between like-named parent folders?

Brian Withun brianw@hilgraeve.com
Wed, 28 Mar 2001 12:26:33 -0500


How would one go about the following?

I have a folder hierarchy represented as shown:


A
 B
  index_html
C
 D
  A
   B
    index_html


I would like the C.D.A.B.index_html to redirect to A.B.index_html

For this, I have tried the following in C.D.A.B.index_html:
<dtml-var "RESPONSE.redirect(A.B.index_html.url())">

But this only succeeds in redirecting to itself due to acquisition first
finding A.B.index_html within D.

How can I address Root.A.B.index_html separately from
Root.C.D.A.B.index_html ?

FWIW, Root.A.B.index_html won't do it,
      Zope.A.B.index_html won't do it,
          .A.B.index_html won't do it...

------------
Bri=E1n Withun