[Zope] How to specify <name>.html from Python script?

Chris Withers chrisw@nipltd.com
Thu, 19 Sep 2002 09:31:04 +0100


Andreas Tille wrote:
>     return container.test.html(REQUEST)

return container['test.html')(REQUEST)

return getattr(container,'test.html')(REQUEST)

...will both work.

cheers,

Chris