Manage Permissions on Plone Form
Tue, 30 Jan 2007 16:15:12 -0600
Over the past year and some months, I have learned more than I ever wanted to know about Zope and Plone. The problem with those pieces of software is the lack of really good information for filesystem development there is out there. Hence the reason I am posting this here, so I can remember it.
To change the permissions on a filesystem file, in it's associated metadata file, add the following:
That will make it so that only Authenticated users and Managers can view the object. You can set this for any permissions that are available on the object. The 0 is the setting for acquisition. As expected, set this to 1 to turn acquisition on.
To change the permissions on a filesystem file, in it's associated metadata file, add the following:
[security]
View=0:Authenticated,Manager
View=0:Authenticated,Manager
That will make it so that only Authenticated users and Managers can view the object. You can set this for any permissions that are available on the object. The 0 is the setting for acquisition. As expected, set this to 1 to turn acquisition on.




