Re: [Zope-dev] server for new protocol?

2004-02-26 Thread Jens Vagelpohl
write server itself not very hard, i simply don't want patch ZServer/components.xml is there any way don't touch Zserver? probably not. jens smime.p7s Description: S/MIME cryptographic signature ___ Zope-Dev maillist - [EMAIL PROTECTED] http://mail.

[Zope-dev] server for new protocol?

2004-02-26 Thread Nikolay Kim
is there any way create server for new protocol without changing ZServer module? ___ Zope-Dev maillist - [EMAIL PROTECTED] http://mail.zope.org/mailman/listinfo/zope-dev ** No cross posts or HTML encoding! ** (Related lists - http://mail.zope.org

Re: [Zope-dev] server for new protocol?

2004-02-26 Thread Chris Withers
Nikolay Kim wrote: is there any way create server for new protocol without changing ZServer module? Nope, have you looked at Twisted? cheers, Chris -- Simplistix - Content Management, Zope & Python Consulting - http://www.simplistix.co.uk _

[Zope-dev] Interfaces in Zope 2.5, 2.7, and 3.x

2004-02-26 Thread Terry Hancock
I have a product that uses a component/interface model internally. I wrote this against the "scarecrow" Interface module in Zope 2.5.1. However that module has limitations. One particular one is what I call a "SubInterface" -- which is a special case of Interface.Attribute (a subclass of it) t

[Zope-dev] Explicit acquisition and object context

2004-02-26 Thread Garito
Hi I have these function   def Propiedad(self, Name):    """Propiedad"""    Obj = self    Maestro = getattr(Obj, 'Maestro', None)    Paso = 1    while Maestro is not None:    Obj = self.restrictedTraverse(Maestro.contenido).__of__(self)    Maestro = g

[Zope-dev] Maybe Corrupted ZCatalog but ...

2004-02-26 Thread Eric Brun
Hi, When we do a search on a ZCatalog we have the message below. We work with Zope 2.6.2 and our Catalog have more than 200 000 objects referenced. We think our catalog is corrupted but we would correct it. Anybody have the same problem ? An idea for fix it ? Thank Eric Brun Type d'erre

Re: [Zope-dev] server for new protocol?

2004-02-26 Thread Dieter Maurer
Nikolay Kim wrote at 2004-2-26 17:50 +0600: >is there any way create server for new protocol without changing ZServer >module? You must implement the server for the new protocol and you will need some integration code. You have lots of examples at hand. -- Dieter __

Re: [Zope-dev] server for new protocol?

2004-02-26 Thread Nikolay Kim
> You must implement the server for the new protocol > and you will need some integration code. > > You have lots of examples at hand. write server itself not very hard, i simply don't want patch ZServer/components.xml is there any way don't touch Zserver? _