[Zope] sessions in an iframe

2006-06-12 Thread henk laloli
Hello, I am using a session object to store a query string. The query string is used for a reload of the same query with two parameters changing their value when the user reorders a table column. This works fine under Zope 2.9.3 in Mozilla. The page on which this query string is stored en take

[Zope] Re: GenericSetup examples?

2006-06-12 Thread yuppie
Chris Withers wrote: Does anyone know of a good example product that uses GenericSetup? I'm particularly interested in the PythonScript and PageTemplate thingies... I just checked in the SampleSite demo product to the doc directory of GenericSetup. You can get it from GenericSetup/trunk. H

[Zope] Version status of Zope 3.2

2006-06-12 Thread Sunil_Sagar
Hi I tried to install Zope 3.2.0 final "Satable Version". It installed successfully with Python 2.4.3. But when I installed a third party tool plone 2.5.0. Now  Zope 3.2.0 is showing its version as Zope 2.8.7 . Can any let me know why this had happened..and is if there any patch or addons availabl

Re: [Zope] Version status of Zope 3.2

2006-06-12 Thread Andreas Jung
--On 12. Juni 2006 16:40:14 +0530 [EMAIL PROTECTED] wrote: Hi I tried to install Zope 3.2.0 final "Satable Version". It installed successfully with Python 2.4.3. But when I installed a third party tool plone 2.5.0. Now Zope 3.2.0 is showing its version as Zope 2.8.7 . Can any let me know why

[Zope] Re: GenericSetup examples?

2006-06-12 Thread Chris Withers
Hi Yuppie! yuppie wrote: I just checked in the SampleSite demo product to the doc directory of GenericSetup. You can get it from GenericSetup/trunk. Thanks, this looks great :-) However, it now makes me wonder: - how would I compare the current configuration with what's on disk without crea

[Zope] Re: GenericSetup examples?

2006-06-12 Thread yuppie
Hi Chris! Chris Withers wrote: yuppie wrote: I just checked in the SampleSite demo product to the doc directory of GenericSetup. You can get it from GenericSetup/trunk. Thanks, this looks great :-) However, it now makes me wonder: - how would I compare the current configuration with what's

Re: [Zope] Version status of Zope 3.2

2006-06-12 Thread Sunil_Sagar
Hi Andreas So, I have newly  installed Zope 2.9.3 with plone 2.5.0. And it is working fine. Please let me know how I can upgrade from Zope 2.8.1 to 2.9.3. Is there any hot fix-pack available or i'll have to install new one and import all the data-base. :-) Thanks & Regards Sunil Sagar An

Re: [Zope] Version status of Zope 3.2

2006-06-12 Thread Andreas Jung
--On 12. Juni 2006 10:17:29 -0400 [EMAIL PROTECTED] wrote: Hi Andreas So, I have newly installed Zope 2.9.3 with plone 2.5.0. And it is working fine. Please let me know how I can upgrade from Zope 2.8.1 to 2.9.3. Is there any hot fix-pack available or i'll have to install new one and impo

[Zope] Changing class of objects in the ZODB

2006-06-12 Thread Miles Waller
Hi, Does anyone have a good approach to changing the class of an object already stored in the ZODB? A site is using classes defined and customised in a product on the filesystem, and I want to split the product into two to separate the unmodified vanilla product, and customisations. I found

RE: [Zope] Changing class of objects in the ZODB

2006-06-12 Thread Doyon, Jean-Francois
Assuming you're not changing attribute values, but *just* the class, I've had success with doing an XML export, a find/replace of the class name, and a re-import. The XML is fairly readable, you can just look for example for "Products.MyProduct.OldClass" and replace it with "Products.MyProduct.New

Re: [Zope] Changing class of objects in the ZODB

2006-06-12 Thread Miles Waller
To confirm, I *just* want to change the class - attribute values, name and state information can remain exactly the same. XML import/export is a good approach which I need to think about a bit more. On the face of it, the data.fs is well over 1Gb in size after packing, and so is likely to cre

Re: [Zope] Version status of Zope 3.2

2006-06-12 Thread Lennart Regebro
On 6/12/06, [EMAIL PROTECTED] So, I have newly installed Zope 2.9.3 with plone 2.5.0. And it is working fine. Please let me know how I can upgrade from Zope 2.8.1 to 2.9.3. Is there any hot fix-pack available or i'll have to install new one and import all the data-base. :-) You install a n

Re: [Zope] sessions in an iframe

2006-06-12 Thread Dieter Maurer
henk laloli wrote at 2006-6-12 09:46 +0200: > ... >The problem does not occur in IE when the page is used on its own, only >when it is used in an iframe. The question then is: can it be that IE >restricts the session behaviour in this situation? How can I solve it? IE has nothing to do with the se

Re: [Zope] Changing class of objects in the ZODB

2006-06-12 Thread Dieter Maurer
Miles Waller wrote at 2006-6-12 16:58 +0100: >Does anyone have a good approach to changing the class of an object >already stored in the ZODB? This is *very* difficult. The main problem is that the class is usually coded (for efficiency reasons) in the persistent references to an object. As soo