Re: [Zope-dev] configuring global utilities in zcml

2008-08-05 Thread Nikolay Kim
I'm aware of this but it kind of defeats the idea of seperating code and configuration... So, other ideas? create new zcml directive. ___ Zope-Dev maillist - Zope-Dev@zope.org http://mail.zope.org/mailman/listinfo/zope-dev ** No cross

Re: AW: [Zope-dev] Field for blobs?

2008-04-16 Thread Nikolay Kim
On Tue, 2008-04-15 at 17:37 +0200, Roger Ineichen wrote: The other option whould be to split every widget into it's own package and use z3c.widget as namespace package. What do you think? i think we should split z3c.schema and z3c.widget to separate packages, so we can have one namespace

Re: [Zope-dev] Field for blobs?

2008-04-15 Thread Nikolay Kim
On Tue, 2008-04-15 at 16:14 +0200, Christian Zagrodnick wrote: Hi, I'd need a zope.schema field for blobs. Should this go directly to zope.schema or some third party package? there is z3c.schema package for various third party packages ___

[Zope-dev] zc.recipe.filestorage bug

2008-02-25 Thread Nikolay Kim
Hello, Seem zc.recipe.filestorage has bug in blob-dir for this buildout config [var] recipe = zc.recipe.filestorage blob-dir = parts/varblobs zc.recipe.filestorage generates zodb blobstorage blob-dir ../parts/varblobs shared-blob-dir no filestorage path

[Zope-dev] z3c.blobfile

2008-02-22 Thread Nikolay Kim
Hi all, Who is author of z3c.blobfile package? Could anybody make release? ___ Zope-Dev maillist - Zope-Dev@zope.org http://mail.zope.org/mailman/listinfo/zope-dev ** No cross posts or HTML encoding! ** (Related lists -

Re: [Zope-dev] Runaway processes

2007-12-05 Thread Nikolay Kim
On Unix-like systems, we can use `os.fork()`. The advantage of this approach is that I can use OS system calls to kill the process. However, ZODB database storages cannot be shared between processes. Nikolay Kim has done some preliminary experiments and found that `db.open()` locks

[Zope-dev] Re: [Zope3-dev] ZScheduler

2004-03-31 Thread Nikolay Kim
Hi Alan, i'm author of ZopeScheduler product, lets coordinate our work ___ Zope-Dev maillist - [EMAIL PROTECTED] http://mail.zope.org/mailman/listinfo/zope-dev ** No cross posts or HTML encoding! ** (Related lists -

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

2004-03-01 Thread Nikolay Kim
it'll be open source. source in attach. it not very usefull without additional products that must actually handle emails. now i'm working on mail storage products. Ooh! This is really cool. Will this be open source? I'll be a lot of people will be interested in this. -Fred

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

2004-02-29 Thread Nikolay Kim
Thanks Fred! all works well. P.S. i'm developing smtp server for zope and already have working code. ___ Zope-Dev maillist - [EMAIL PROTECTED] http://mail.zope.org/mailman/listinfo/zope-dev ** No cross posts or HTML encoding! ** (Related lists -

[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 -

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?