[Zope-dev] Accessors for DataSkin attributes (was Re: [Zope-dev] Success!Was: Re: [Zope-dev] How is 'retrieveItem intended to work with TTWSpecialists? Was: Re: [Zope-dev] How is 'retrieveItem intended to work with TTW Specialists?

2000-10-05 Thread Phillip J. Eby
At 06:57 AM 10/5/00 -0500, Steve Spicklemire wrote: > >This brings up another point If I choose 'DataSkin' as a storage >class, then my code hits the security system every time a refer >to any data (simple types) stored directly in the DataSkin. I can either >set __allow_access_to_unprotected_

Re: [Zope-dev] Success! Was: Re: [Zope-dev] How is 'retrieveItem intended to work with TTW Specialists? Specialists?

2000-10-05 Thread Steve Spicklemire
Yes.. I see what you mean... this is a 'whitebox customization' that I used as part of the integration of my framework into the 'online catalog' system. This is not 'blackbox' code that is integral to my system In fact, I mis-spoke earlier, it's not in my specialist at all... it only appea

Re: [Zope-dev] Success! Was: Re: [Zope-dev] How is 'retrieveItem intended to work with TTW Specialists? Specialists?

2000-10-05 Thread Phillip J. Eby
At 09:15 PM 10/4/00 -0500, Steve Spicklemire wrote: > >This was also nice since in my Specialist I could do things >like: > > > >After the user is finished working in my 'app area' they could >get redirected back to the actual object that my Specialist >was 'posing' for... I don't really recommen

Re: [Zope-dev] How is 'retrieveItem intended to work with TTW Specialists?

2000-09-30 Thread Phillip J. Eby
At 08:05 AM 9/30/00 -0500, Steve Spicklemire wrote: > >I'd hate to find out later that someone needs to go in and edit my Python >code to make my framework useable But.. I think what I'm hearing is that >working out the integration at the Rack level is much better than trying >to delgate retri

Re: [Zope-dev] How is 'retrieveItem intended to work with TTW Specialists?

2000-09-30 Thread Steve Spicklemire
Thanks again... it's great that you're willing to entertain my apparantly twisted use of ZPatterns. ;-) > "PJE" == Phillip J Eby <[EMAIL PROTECTED]> writes: PJE> To put it another way: design your whitebox specialist how PJE> you want it. Make it complete, but of course some parts

Re: [Zope-dev] How is 'retrieveItem intended to work with TTW Specialists?

2000-09-29 Thread Phillip J. Eby
At 03:14 PM 9/29/00 -0500, Steve Spicklemire wrote: > >Thanks so much for the response... > >It turns out, I tried the Python Method and it had the >same basic problem as the DTML Method... however I've now >moved on, using deletageRetrieve to a new thorny issue. ;-) > >When I get an object from

Re: [Zope-dev] How is 'retrieveItem intended to work with TTW Specialists?

2000-09-29 Thread Steve Spicklemire
Thanks so much for the response... It turns out, I tried the Python Method and it had the same basic problem as the DTML Method... however I've now moved on, using deletageRetrieve to a new thorny issue. ;-) When I get an object from of another specialist it appears that it doies not inherit

Re: [Zope-dev] How is 'retrieveItem intended to work with TTW Specialists?

2000-09-25 Thread Phillip J. Eby
At 08:00 AM 9/25/00 -0500, Steve Spicklemire wrote: > >So my retrieve item gets called. *unfortunately* it gets >called without any namespace parameter... so my retrieveItem >DTML method has no way to acquire a namespace so that it can >delagate to something else! > >So... here is what I did.