[Zope] data.fs packing

2006-04-27 Thread George
How much free space is required for a succesfull data.fs packing? My data.fs file size is 2,6 giga. ___ Zope maillist - Zope@zope.org http://mail.zope.org/mailman/listinfo/zope ** No cross posts or HTML encoding! ** (Related lists - http://mail.zop

Re: [Zope] data.fs packing

2006-04-27 Thread Andreas Jung
--On 27. April 2006 14:50:16 +0300 George <[EMAIL PROTECTED]> wrote: How much free space is required for a succesfull data.fs packing? My data.fsfile size is 2,6 giga. In the worst case the same amount of space again + something. -aj -- ZOPYX Ltd. & Co. KG - Charlottenstr. 37/1 - 72070 Tüb

Re: [Zope] Atomic ZSQL on Zope 2.7.5

2006-04-27 Thread Peter Bengtsson
if you separate them as 3 separate ZSQL methods (or class attributes if you're using zsql via a python product) and try again, do you get the same unatomic behaviour? I'm always using Postgresql databases and I've been using PoPy for the DA but now I'm always using ZPsycopgDA. Atomicity has

Re: [Zope] coercing to Unicode: need string or buffer, NoneType found

2006-04-27 Thread Peter Bengtsson
Are you sure that self.getfilepath() is a string? [EMAIL PROTECTED]:~ $ python Python 2.4.3 (#2, Apr 10 2006, 11:53:13) [GCC 4.0.3 (Ubuntu 4.0.3-1ubuntu4)] on linux2 Type "help", "copyright", "credits" or "license" for more information. >>> import os >>> os.stat(None) Traceback (most recent call

Re: [Zope] pointers in zope (newbie question)

2006-04-27 Thread Peter Bengtsson
I've done a similar app where there's an archive of files (zope File objects) that I'm doing stuff with in another place. I happily used:: return self.unrestrictedTraverse(self.actual_path) in a class that looks something like this:: class VirtualFile(SimpleItem): def __init__(self, id, a