Re: [Zope] An observation about manage_* methods

2000-07-24 Thread Chris Withers
albert boulanger wrote: snip "go somewhere else after usign a manage_ method" All good points, there's a thread on this on zope-dev right now. I think this area is a good candidate for a new interface... Maybe it should be discussed on the zope-dev thread and then have somethign done on

Re: [Zope] An observation about manage_* methods

2000-07-23 Thread Dieter Maurer
albert boulanger writes: def manage_editData(self, data, REQUEST=None): """Change item data""" self._rows = map(self._FixRow, ImportExport.ImportData(data)) self._n_rows = len(self._rows) self._GenerateIndex() return

[Zope] An observation about manage_* methods

2000-07-21 Thread albert boulanger
This has a question to it if I am not overlooking something. I often want to design dtml_methods that allow the end user to manage content under his control. An example of a typical manage method that you often see is like: From TinyTable.py: def manage_editData(self, data, REQUEST=None):