RE: [Zope] Product creation difficulty

2005-04-08 Thread Pete Taylor
L PROTECTED] Sent: Friday, April 08, 2005 2:45 AM To: Pete Taylor Cc: 'zope@zope.org' Subject: Re: [Zope] Product creation difficulty Pete Taylor wrote: > Error Type: Fault > Error Value: "echo.__roles__.__contains__" is not supported'> Yeah, that's Zope'

Re: [Zope] Product creation difficulty

2005-04-08 Thread Chris Withers
Pete Taylor wrote: Error Type: Fault Error Value: Yeah, that's Zope's security mechanisms kicking in. Don't use a python script for this code. Remove your allow_module anduse an external method, like you're supposed to ;-) Either that, or build a python product to do what you want, or use the o

RE: [Zope] Product creation difficulty

2005-04-07 Thread Pete Taylor
hanks for any help... this list is the best I've participated in. You guys are awesome. -Original Message- From: Chris Withers [mailto:[EMAIL PROTECTED] Sent: Thursday, April 07, 2005 8:35 AM To: Pete Taylor; zope@zope.org Subject: Re: [Zope] Product creation difficulty (keep

Re: [Zope] Product creation difficulty

2005-04-07 Thread Chris Withers
(keep replies on the list, more people can help that way) Pete Taylor wrote: thanks man. doing it that way has cleared up the security problem. i've run into others trying to access xml-rpc methods remotely (zope keeps passing the __roles__ checks back to the xmlrpc server, which says "i don't kn

Re: [Zope] Product creation difficulty

2005-04-06 Thread Dieter Maurer
Pete Taylor wrote at 2005-4-5 15:09 -0400: >Does anyone have a recommendation for a Product creation guide/tutorial >they've used and made work, preferably one with examples and explanations of >_ac_permissions The "Zope Developer Guide" is the relevant documentation. -- Dieter _

Re: [Zope] Product creation difficulty

2005-04-05 Thread Chris Withers
Pete Taylor wrote: Does anyone have a recommendation for a Product creation guide/tutorial they've used and made work, preferably one with examples and explanations of _ac_permissions? Look at the Zope Book in Plope.com. Manipulating _ac_permissions directly is NOT the thing to do nowadays... M