[Zope] - Understanding DTML processing

Pavlos Christoforou pavlos@gaaros.msrc.sunysb.edu
Fri, 22 Jan 1999 13:53:48 -0500 (EST)


On Fri, 22 Jan 1999, Paulo Eduardo Neves wrote:

> 	def process(self, REQUEST):
> 	"""Process the product and return the template"""
> 		#process something here
> 		return self.template_html()

> If so, what should I return from process() to make it have the same
> output of template_html?

try

return self.template_html(self)

Pavlos