Re: [Zope] how get a relative root from

2009-08-25 Thread Miguel Beltran R.
I resolve using this script [getmyroot_py] request = container.REQUEST if request.has_key("VirtualRootPhysicalPath"): s="" else: s=request.BASE2 return s [menu] Proyecto Alta Busqueda ___ Zope maillist - Z

Re: [Zope] how get a relative root from

2009-08-20 Thread robert rottermann
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

[Zope] how get a relative root from

2009-08-20 Thread Miguel Beltran R.
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 oth