[Zope] how get a relative root from

Miguel Beltran R. yourpadre at gmail.com
Thu Aug 20 18:31:21 EDT 2009


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
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://mail.zope.org/pipermail/zope/attachments/20090820/a5ec37c5/attachment.html 


More information about the Zope mailing list