Re: [Zope-dev] permissions on a python script...

2003-11-24 Thread Dieter Maurer
[EMAIL PROTECTED] wrote at 2003-11-24 04:31 -: > when I call my form processing script from a form action zope prompt me > for a password Shane's "VerboseSecurity" is a valuable help to analyse security problems. -- Dieter ___ Zope-Dev maillist

Re: [Zope-dev] permissions on a python script...

2003-11-23 Thread scripts-urban
> If you are logged in with manager permissions and plone still asks for a > passwort this usually means that you are trying to call a non exising > template. > Robert I changed the scripts permissions to Manager and then ran the form from a browser that was not logged into zope. It worked. Now i

Re: [Zope-dev] permissions on a python script...

2003-11-23 Thread robert
If you are logged in with manager permissions and plone still asks for a passwort this usually means that you are trying to call a non exising template. Robert Am Montag, 24. November 2003 05:31 schrieb [EMAIL PROTECTED]: > when I call my form processing script from a form action zope prompt me

[Zope-dev] permissions on a python script...

2003-11-23 Thread scripts-urban
when I call my form processing script from a form action zope prompt me for a password I have fiddled with both the owner and security settings, with no success Any and all advice welcomed -thanks again -josh ___ Zope-Dev maillist - [EMAIL PROTECT

[Zope-dev] Permissions Mapping Screen

2002-12-03 Thread Brian R Brinegar
Is there any reason that the acquired permission mapping cannot be displayed next to the check boxes on the Permission mapping screen? For example if I have "Access User Information" checked in the root of a site for Anonymous and I view the Security tab for a folder one level down I would like to

Re: [Zope-dev] Permissions

2002-05-12 Thread Dieter Maurer
brian.r.brinegar.1 writes: > I would like to setup the security on a Zope server such that a user can > edit permissions on something they own, but not grant more permissions > than what they have acquired from the parent. This is not covered by the current security framework. But, surely, you

[Zope-dev] Permissions

2002-05-10 Thread brian.r.brinegar.1
Hello, I would like to setup the security on a Zope server such that a user can edit permissions on something they own, but not grant more permissions than what they have acquired from the parent. If a user owns a folder they could grant "Owner" any permissions they want inside of that folder (A

[Zope-dev] Permissions to change Acquire Permissions?

2001-04-27 Thread Tim R Ansell
I was wondering if it would be possible for a new permission to be created, this permission would let (or stop) people from changing the Acquire Permissions check boxes found in the Security Tab. The reason I would like a permissions like this is that some users that need to give people permissio

RE: [Zope-dev] permissions/authorization on non ZClass/product objects

2000-08-03 Thread Chris McDonough
> > >First, make sure you're returning the instances in the > context of their > >container, e.g. instead of: > > > >def returnstuff(self): > >class foo: > >pass > >return foo() > > > >do > > > >def returnstuff(self): > >class foo: > >pass >

Re: [Zope-dev] permissions/authorization on non ZClass/product objects

2000-08-03 Thread Toby Dickenson
On Wed, 2 Aug 2000 22:41:46 -0400 (EDT), Chris McDonough <[EMAIL PROTECTED]> wrote: >Karl, > >Two things come to mind: > >First, make sure you're returning the instances in the context of their >container, e.g. instead of: > >def returnstuff(self): >class foo: >pass >

Re: [Zope-dev] permissions/authorization on non ZClass/productobjects

2000-08-02 Thread Chris McDonough
Karl, Two things come to mind: First, make sure you're returning the instances in the context of their container, e.g. instead of: def returnstuff(self): class foo: pass return foo() do def returnstuff(self): class foo: pass retu

[Zope-dev] permissions/authorization on non ZClass/product objects

2000-08-02 Thread Karl Anderson
I'm having trouble with permissions and Python class instances that aren't part of the Zope permission mechanism. I'm creating plain Python class instances in the Python baseclass of a ZClass, and storing them in a list on the baseclass. The baseclass instantiates these instances and appends th