[Zope] Get absolute_url of object with id that contains a dot in Script (Python)

Chris Withers chrisw@nipltd.com
Sat, 10 Aug 2002 11:27:58 +0100


Eric Walstad wrote:
> container['folder.com'].['index.html'].absolute_url()
                          ^
                          urm?

You want:
container['folder.com']['index.html'].absolute_url()

cheers,

Chris