[Zope] how get a relative root from
robert rottermann
robert at redcor.ch
Fri Aug 21 01:03:08 EDT 2009
if you look in the request, there is
PATH_INFO
from which you can deduct the path you are using.
robert
Miguel Beltran R. schrieb:
> Hi list
>
> how can do a script what return the relative parent from it self?
>
> I use virtual_hosting and because a configuration I need access to my
> site like http://mysite or http://192.168.1.1/mysite.
> The problem is I have a _menu_ with absolute path, working fine using
> http://mysite but not the other way
>
>
> My actual menu is like this:
> <ul id="nav">
> <li>
> <a href="/finanza/proyecto/">Proyecto</a>
> <ul class="menu">
> <li><a href="/finanza/proyecto/alta">Alta</a></li>
> <li><a href="/finanza/proyecto/busqueda">Busqueda</a></li>
> </ul>
> </li>
> </ul>
>
> and need when is loaded from http://192.168.1.1/mysite
> <ul id="nav">
> <li>
> <a href="/mysite/finanza/proyecto/">Proyecto</a>
> <ul class="menu">
> <li><a href="/mysite/finanza/proyecto/alta">Alta</a></li>
> <li><a href="/mysite/finanza/proyecto/busqueda">Busqueda</a></li>
> </ul>
> </li>
> </ul>
>
> can someone say me how do it? thanks
> --
> ________________________________________
> Lo bueno de vivir un dia mas
> es saber que nos queda un dia menos de vida
>
>
> ------------------------------------------------------------------------
>
> _______________________________________________
> Zope maillist - Zope at zope.org
> http://mail.zope.org/mailman/listinfo/zope
> ** No cross posts or HTML encoding! **
> (Related lists -
> http://mail.zope.org/mailman/listinfo/zope-announce
> http://mail.zope.org/mailman/listinfo/zope-dev )
More information about the Zope
mailing list