[Zope] How to get name of calling DTML or script..

Dennis Allison allison@sumeru.stanford.EDU
Wed, 10 Jul 2002 15:02:17 -0700


Take a look at the contents of the REQUEST object.  You'll probably find 
what you need there :-)

To view the REQUEST Object contents, make a Python Script 

request = container.REQUEST
for k in request.keys():
   print k, '=', request[k]
print
return printed