Re: [Zope] store data as long as the user is logged on

2005-07-21 Thread Jonathan
- Original Message - From: "gabor" <[EMAIL PROTECTED]> To: "Tino Wildenhain" <[EMAIL PROTECTED]> Cc: Sent: Thursday, July 21, 2005 11:01 AM Subject: Re: [Zope] store data as long as the user is logged on Tino Wildenhain wrote: Am Donnerstag, den

Re: [Zope] store data as long as the user is logged on

2005-07-21 Thread Jerry Westrick
I'm not sure if I know what I'm talking about, but. It seams to me that when I was reading up on the session thingy, I read that you can add new Seesion thingy to the Zope tree thereby creating your own private session... Of course I'm Probably wrong Jerry On Thursday 21 July 2005 16:5

Re: [Zope] store data as long as the user is logged on

2005-07-21 Thread gabor
Tino Wildenhain wrote: Am Donnerstag, den 21.07.2005, 16:36 +0200 schrieb gabor: hi, i need to store some data as long as the user is logged on to zope. how can i achieve this? using the session is not a good idea, because some parts of the code simply call session.clear() (i did not write

Re: [Zope] store data as long as the user is logged on

2005-07-21 Thread Tino Wildenhain
Am Donnerstag, den 21.07.2005, 16:36 +0200 schrieb gabor: > hi, > > i need to store some data as long as the user is logged on to zope. > how can i achieve this? > > using the session is not a good idea, because some parts of the code > simply call session.clear() (i did not write that part). >

[Zope] store data as long as the user is logged on

2005-07-21 Thread gabor
hi, i need to store some data as long as the user is logged on to zope. how can i achieve this? using the session is not a good idea, because some parts of the code simply call session.clear() (i did not write that part). if everything fails, i can use a singleton where i put a dictionary b