Changes between Version 1 and Version 2 of TracFineGrainedPermissions
- Timestamp:
- May 19, 2008, 10:20:22 PM (17 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
TracFineGrainedPermissions
v1 v2 13 13 14 14 - Install [http://www.voidspace.org.uk/python/configobj.html ConfigObj] (required). 15 - Copy this file in your plugins directory16 - P lonk a [http://swapoff.org/files/authzpolicy.conf authzpolicy.conf] file somewhere. FIXME: what does ''plonk'' mean? ;-)15 - Copy authz_policy.py into your plugins directory. 16 - Put a [http://swapoff.org/files/authzpolicy.conf authzpolicy.conf] file somewhere (preferably on a secured location on the server, not readable for others than the webuser. 17 17 - Update your `trac.ini`: 18 18 {{{ 19 19 [trac] 20 20 ... 21 permission_policies = AuthzPolicy, DefaultPermissionPolicy 21 permission_policies = AuthzPolicy, DefaultPermissionPolicy, LegacyAttachmentPolicy 22 22 23 23 [authz_policy] … … 40 40 {{{ 41 41 [wiki:WikiStart@*] 42 * = VIEW42 * = WIKI_VIEW 43 43 44 44 [wiki:PrivatePage@*] 45 john = VIEW45 john = WIKI_VIEW 46 46 * = 47 47 }}}