[Zope] stop undo revisions?

2007-02-06 Thread Dennis Schulz
Hi, is there any way of stopping zope from doing revisions in a particular folder of a site? I have hundreds of megas in seconds.. If not, how can I automize the packing of the zodb by a cronjob? Regards, Dennis ___ Zope maillist -

[Zope] Simple Item without undo revisions?

2007-02-06 Thread Dennis Schulz
Actually it is not a folder but an object that subclasses SimpleItem, that I would like to stop from saving revisions. Maybe is there a base class that has not undo support but supports most other things? Dennis Hi, is there any way of stopping zope from doing revisions in a particular

Re: [Zope-DB] Process one PloneFormGen request into many SQL tables

2007-01-19 Thread Dennis Schulz
. For now I am trying to make it work using Python scripts + ZSQL methods manually. Would alchemist really simplify the coding? (/me has no idea) Thanks for the reply! -- Paul Eipper Brasil 2007/1/19, Dennis Schulz [EMAIL PROTECTED]: Hi, if you want to do things like this, you also could use

[Zope] store dict in session

2007-01-10 Thread Dennis Schulz
According to the zope book it should be possible to store dicts in session. When I try to assign a dictionary to a ordinary zope 2 session, with lists there is no problem. why?: requestlist = {} for i in self.request.form: key = i value =

[Zope] acquisition

2006-12-13 Thread Dennis Schulz
Hi I want to acquire an persistent zope object (supplier) that is inside my productfolder myproductfolder/supplier How to get a reference to this object? Also, Is there a method to get the product root? I would like to have that all instances of my class can be traversed like

Re: [Zope] acquisition

2006-12-13 Thread Dennis Schulz
( self.context.aq_inner.aq_parent.supplier) ) Andreas Jung escribió: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 - --On 13. Dezember 2006 19:12:13 +0100 Dennis Schulz [EMAIL PROTECTED] wrote: Hi I want to acquire an persistent zope object (supplier) that is inside my productfolder

[Zope] tal loop to render table

2006-11-29 Thread Dennis Schulz
I would like to build a tal loop that renders a list of elements (widgets in my case) in a table. (for example I have a list of 9 items, then it renders a table: five rows with 2,2,2,2,1 items) the table has 2 columns, so i would need to open and close the table row every second item. I tried