Re: [Zope] Multi tier partitioning meaningful in some Zope apps ?
Greg Ward wrote
Business logic should be coded in Python, and interfaced via External Methods.
A trick that I'm pretty sure I forgot to mention - when creating external methods in the Zope mgmt interface, set their title to the argument list of the ext. method. So for def dothings(folder, foo, *bar): set the title to " folder, foo, *bar " - then, in the folder listing, you get dothings ( folder, foo, *bar ) makes it much easier to work with... Anthony -- Anthony Baxter <anthony@interlink.com.au> It's never too late to have a happy childhood.
A trick that I'm pretty sure I forgot to mention - when creating external methods in the Zope mgmt interface, set their title to the argument list of the ext. method. So for
def dothings(folder, foo, *bar):
set the title to " folder, foo, *bar " - then, in the folder listing, you get dothings ( folder, foo, *bar )
makes it much easier to work with...
Worthy of a tip in the database, methinks. Can you add it? Alexander Limi http://mp3.no
participants (2)
-
Alexander Limi -
Anthony Baxter