11 Jul
2002
11 Jul
'02
6:53 p.m.
Dennis Allison writes:
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 You can have this much easier:
"<dtml-var REQUEST>" (DTML), "return str(REQUEST)" (Python Script), or '<div tal:content="structure request">' (ZPT). Dieter