[Zope-dev] sessionDataManager should create it's temp/xxxx

2002-01-09 Thread Darrell Gallion
I went to the collector, filled out the form. Only to find out I need and account to submit the form!! The Transient Object Container is transient.. I wanted the SessionDataManager to create it's Transient Object Container as needed. Added properties to the SessionDataManger to make this

Re: [Zope-dev] sessionDataManager should create it's temp/xxxx

2002-01-09 Thread Chris McDonough
Darrell, Thanks for the bugreport, but I'm not sure I understand it. Do you think you can describe in more detail what you want that it did (does?) not do? Darrell Gallion wrote: I went to the collector, filled out the form. Only to find out I need and account to submit the form!! The

Re: [Zope-dev] sessionDataManager should create it's temp/xxxx

2002-01-09 Thread Chris McDonough
OIC. Thanks! This patch probably makes sense for some class of usage. I'm a little skittish because I think doing magic (e.g. if I dont find a data container where I said there was one, make one in /temp_folder) might tend to bite folks. Also, doing writes on reads (explicitly commiting

Re: [Zope-dev] sessionDataManager should create it's temp/xxxx

2002-01-09 Thread Darrell Gallion
Is it magic if the Session manager creates it's own data container? The first one is created for you but not by the Session system. That seems like magic. Since you say my approach to creating the tempData is flawed from a ZODB stand point. Then rc.d/init.d sound good. Although the /startup

Re: [Zope-dev] sessionDataManager should create it's temp/xxxx

2002-01-09 Thread Matthew T. Kromer
Chris McDonough wrote: OIC. Thanks! This patch probably makes sense for some class of usage. I'm a little skittish because I think doing magic (e.g. if I dont find a data container where I said there was one, make one in /temp_folder) might tend to bite folks. Also, doing writes on

Re: [Zope-dev] sessionDataManager should create it's temp/xxxx

2002-01-09 Thread Chris McDonough
Darrell Gallion wrote: Is it magic if the Session manager creates it's own data container? The first one is created for you but not by the Session system. That seems like magic. It's created by the Zope package, which indeed is magic, but something needed to populate it with default data;

Re: [Zope-dev] sessionDataManager should create it's temp/xxxx

2002-01-09 Thread Chris McDonough
Actually, we did have the Temporary Folder have the capability to automatically import its contents at system startup, but that got tossed out as being function inappropriate to a temporary storage container by executive fiat. Yeah.. I actually think now that this was the right decision.