[Zope] assignment to form records
Dieter Maurer
dieter@handshake.de
Thu, 6 Mar 2003 20:36:24 +0100
Fernando Martins wrote at 2003-3-6 01:32 +0100:
> I've two forms who pass a similar record to their scripts. Each script does
> its own processing, "normalising" the record. The record is then passed to
> another script which does common processing and final storage in a table.
You can pass dictionaries instead of records.
An alternative:
"Products.PythonScripts.standard" defines the record
factory "Object" (maybe different case, check the source).
It returns a writable "record".
Dieter