[Zope3-Users] Re: Can interfaces be mutated cleanly?

2007-04-13 Thread Philipp von Weitershausen
Christian Theune wrote: I didn't find anything in the documentation or google on this: I want to define an interface like: class IMySchema(zope.interface.Interface): pass Later, I want to use ore.alchemist which currently is able to take a SQLAlchemy table description and turn it into a new

[Zope3-Users] ZEO security examples

2007-04-13 Thread Thierry Florac
Hi, Maybe I'm wrong, but it seems that ZEO protocol is, by default, unauthenticated. I've read here and there a few references to an authentication mechanism which could be setup in ZOPE/ZEO, but can't find any valuable implementation example for Zope3. So, any link to define this for Zope3 wou

Re: [Zope3-Users] ZEO security examples

2007-04-13 Thread David Pratt
Hi Thierry. There is a basic means of authentication built in to ZEO but it is not terribly secure. You can read about it in the zeo source. You may wish to look as Fred's zc.sshtunnel package to help you secure your communication. Regards, David Thierry Florac wrote: Hi, Maybe I'm wrong,

Re: [Zope3-Users] Can interfaces be mutated cleanly?

2007-04-13 Thread Kapil Thangavelu
i would suggest some alternatives approaches to consider first. potentially this would be easier going the other way around with zs2sa, and generating the mapper from there, you don't need to annotations as well since the zope schemas contain the relevant ui metadata, and the schema is the

Re: [Zope3-Users] Can interfaces be mutated cleanly?

2007-04-13 Thread Kapil Thangavelu
On Fri, 13 Apr 2007 02:36:07 -0400, Hermann Himmelbauer <[EMAIL PROTECTED]> wrote: Am Donnerstag, 12. April 2007 17:22 schrieb Christian Theune: Hi, I didn't find anything in the documentation or google on this: I want to define an interface like: class IMySchema(zope.interface.Interface):

Re: [Zope3-Users] Can interfaces be mutated cleanly?

2007-04-13 Thread Hermann Himmelbauer
Am Freitag, 13. April 2007 20:27 schrieb Kapil Thangavelu: > i would suggest some alternatives approaches to consider first. > > potentially this would be easier going the other way around with zs2sa, > and generating the mapper from there, you don't need to annotations as > well since the zope sch

Re: [Zope3-Users] Can interfaces be mutated cleanly?

2007-04-13 Thread Hermann Himmelbauer
Am Freitag, 13. April 2007 20:33 schrieb Kapil Thangavelu: > On Fri, 13 Apr 2007 02:36:07 -0400, Hermann Himmelbauer <[EMAIL PROTECTED]> > > wrote: > > Am Donnerstag, 12. April 2007 17:22 schrieb Christian Theune: > >> Hi, > >> > >> I didn't find anything in the documentation or google on this: > >

Re: [Zope3-Users] Can interfaces be mutated cleanly?

2007-04-13 Thread Kapil Thangavelu
On Fri, 13 Apr 2007 15:09:29 -0400, Hermann Himmelbauer <[EMAIL PROTECTED]> wrote: Am Freitag, 13. April 2007 20:27 schrieb Kapil Thangavelu: i would suggest some alternatives approaches to consider first. potentially this would be easier going the other way around with zs2sa, and generating

Re: [Zope3-Users] Can interfaces be mutated cleanly?

2007-04-13 Thread Kapil Thangavelu
On Fri, 13 Apr 2007 15:13:58 -0400, Hermann Himmelbauer <[EMAIL PROTECTED]> wrote: Am Freitag, 13. April 2007 20:33 schrieb Kapil Thangavelu: On Fri, 13 Apr 2007 02:36:07 -0400, Hermann Himmelbauer <[EMAIL PROTECTED]> wrote: > Am Donnerstag, 12. April 2007 17:22 schrieb Christian Theune: >>

Re: [Zope3-Users] Can interfaces be mutated cleanly?

2007-04-13 Thread Christian Theune
Hi, Am Freitag, den 13.04.2007, 08:36 +0200 schrieb Hermann Himmelbauer: > Am Donnerstag, 12. April 2007 17:22 schrieb Christian Theune: > > Hi, > > > > I didn't find anything in the documentation or google on this: > > > > I want to define an interface like: > > > > class IMySchema(zope.interface