Re: [Zope-dev] manage_ methods

2001-02-13 Thread Chris Withers
Dieter Maurer wrote: "manage_" methods are mapped to permissions (as are any other methods). You can decide which roles have which permissions. What does the 'View management screens' permission protect? cheers, Chris ___ Zope-Dev maillist

Re: [Zope-dev] manage_ methods

2001-02-12 Thread Dieter Maurer
Chris Withers writes: Is it true that you have to have the Manager role to use any methods that start with manage_? No. "manage_" methods are mapped to permissions (as are any other methods). You can decide which roles have which permissions. If you like, you can 'Anonymous' (or any

[Zope-dev] manage_ methods

2001-02-11 Thread Chris Withers
Hi again, Is it true that you have to have the Manager role to use any methods that start with manage_? If so, that's pretty unhelpful, almost as unhelpful as the DocString limitation :-( cheers, Chris ___ Zope-Dev maillist - [EMAIL PROTECTED]

[Zope-dev] manage_ methods

2001-02-11 Thread Jon Franz
Nope! the method calling the manage_* method can have proxy roles setup for it so that it can call manage_* methods for users who do not have the capability to call that manage_* method. Also, any user can be assigned access to the manage_* methods needed on a particular document/method/object

Re: [Zope-dev] manage_ methods

2001-02-11 Thread Chris Withers
Jon Franz wrote: Nope! the method calling the manage_* method can have proxy roles setup for it so that it can call manage_* methods for users who do not have the capability to call that manage_* method. That doesn't help if they want to use the methods directly ;-) Also, any user can

[Zope] the manage_ methods

2000-07-06 Thread Fabio Akita
Hello I am trying to realize how the manage_ DTML methods works. The only documentation that I found was a quick reference that just say that the methods exist with simple descriptions as: manage_addDTMLMethod(id, [title, file, REQUEST, submit]) But there is no details about how this works,