editform.py
2008-02-28 00:33...
### -*- coding: utf-8 -*- #############################################
"""ReferenceBase class for the Zope 3 based reference package
$Id: editform.py 13516 2007-11-10 15:32:08Z cray $
"""
__author__ = ""
__license__ = "GPL"
__version__ = "$Revision: 13516 $"
from zope.interface import Interface
class EditForm(object) :
def update(self) :
super(RemoteObjectEdit, self).update()
if "update" in self.request :
self.context.update()



