Re: [Zope] custom_zodb.py

2006-09-06 Thread Paul Winkler
On Thu, Sep 07, 2006 at 09:24:34AM +0800, Sinang, Danny wrote: > > Per http://www.plope.com/Books/2_7Edition/MaintainingZope.stx#2-27 , it > still says write your own custom_zodb.py . > > Can you point me to the exact location ? Argh, I believe this means the book is still out of date on that p

RE: [Zope] custom_zodb.py

2006-09-06 Thread Sinang, Danny
, September 07, 2006 9:16 AM To: zope@zope.org Subject: Re: [Zope] custom_zodb.py Unless you are using Zope 2.6, don't do that. For Zope 2.7 or later, see the 2.7 version of the book at plope.com. Some chapters were never updated from the 2.6 version but even so it's much improved. For z

Re: [Zope] custom_zodb.py

2006-09-06 Thread Paul Winkler
Unless you are using Zope 2.6, don't do that. For Zope 2.7 or later, see the 2.7 version of the book at plope.com. Some chapters were never updated from the 2.6 version but even so it's much improved. For zope 2.7 or later, what you want to do is now done by editing zope.conf. On Thu, Sep 07, 2

[Zope] custom_zodb.py

2006-09-06 Thread Sinang, Danny
In the Zope Book v2.6, it says :   "Each database connection maintains its own cache (see above, "Database Cache"), so bumping the number of connections up increases memory requirements. Only change this setting if you're sure you have the memory to spare. To change this setting, create a

Re: [Zope] custom_zodb.py and Control_Panel

2005-05-13 Thread Dieter Maurer
Chris Withers wrote at 2005-5-12 20:45 +0100: >Jens Vagelpohl wrote: >> I suppose it could be argued that custom_zodb.py should simply not be >> read in any longer, or throw big fat warnings. [DM] I agree with you, Jens. [CW] >Why wouldn't it still work fine, apart from some minor Control Panel

Re: [Zope] custom_zodb.py and Control_Panel

2005-05-12 Thread Jens Vagelpohl
On May 12, 2005, at 21:45, Chris Withers wrote: Jens Vagelpohl wrote: I suppose it could be argued that custom_zodb.py should simply not be read in any longer, or throw big fat warnings. Why wouldn't it still work fine, apart from some minor Control Panel barfage? You will agree that it is con

Re: [Zope] custom_zodb.py and Control_Panel

2005-05-12 Thread Chris Withers
Jens Vagelpohl wrote: I suppose it could be argued that custom_zodb.py should simply not be read in any longer, or throw big fat warnings. Why wouldn't it still work fine, apart from some minor Control Panel barfage? Chris -- Simplistix - Content Management, Zope & Python Consulting -

Re: [Zope] custom_zodb.py and Control_Panel

2005-05-02 Thread Jens Vagelpohl
On May 2, 2005, at 14:49, Jim Abramson wrote: v2.7.4 running on Linux - I'm trying to use this (custom_zodb.py in INSTANCE_HOME) custom_zodb.py is no longer used for Zope 2.7.x. You define databases in zope.conf. Ah, OK thanks. Is it for the collector that, aside from messing up the ZMI a bit,

RE: [Zope] custom_zodb.py and Control_Panel

2005-05-02 Thread Jim Abramson
> > v2.7.4 running on Linux - I'm trying to use this (custom_zodb.py in > > INSTANCE_HOME) > > custom_zodb.py is no longer used for Zope 2.7.x. You define > databases in zope.conf. > Ah, OK thanks. Is it for the collector that, aside from messing up the ZMI a bit, the custom_zodb.py approac

Re: [Zope] custom_zodb.py and Control_Panel

2005-04-30 Thread Jens Vagelpohl
On Apr 29, 2005, at 20:32, Jim Abramson wrote: v2.7.4 running on Linux - I'm trying to use this (custom_zodb.py in INSTANCE_HOME) custom_zodb.py is no longer used for Zope 2.7.x. You define databases in zope.conf. jens ___ Zope maillist - Zope@zope.o

[Zope] custom_zodb.py and Control_Panel

2005-04-29 Thread Jim Abramson
Title: custom_zodb.py and Control_Panel v2.7.4 running on Linux - I'm trying to use this (custom_zodb.py in INSTANCE_HOME) - import os import ZODB.FileStorage import ZODB.DB filename = os.path.join(INSTANCE_HOME, 'var', 'Data.fs')