[Zope-CMF] CMF portal_catalog(path) and VirtualHostMonster
Chris Withers
chrisw@nipltd.com
Wed, 05 Mar 2003 13:03:36 +0000
Ronald L. Roeber wrote:
> Mark,
>
> Thanks for pointing me in the right direction. Here is how I addressed the
> problem.
>
> In the main_template Page Template, I added the following definition in
> <html tal:define="...
> ...
> portal_path python:
> modules['string'].join(portal_object.getPhysicalPath(), '/');
that should be:
python:'/'.join(portal_object.getPhysicalPath())
...nowadays.
cheers,
Chris