[Zope] .dtml files

R. David Murray bitz@bitdance.com
Wed, 12 Jul 2000 15:45:07 -0400 (EDT)


On Wed, 12 Jul 2000, Daniel Rusch wrote:
> I have found function calls such as:
> manage_roleForm=HTMLFile('roleEdit', globals()) which I believe creates
> an HTML document template from the named file. But, what is the
> mechanism that calls/displays mange_roleForm?

Actually, it creates a renderable DTML object, I think.  Which
might be saying the same thing.

What calls it is the Zope management framework.  Somewhere you
should find manage_roleForm getting assigned into a structure like
manage_options= or some such.

In short, magic <grin>.

--RDM