| > I found that the PUSecurity instances maintain
the Settings in the
| > arrays
| > #ownerPermissions and #groupPermissions. How can I remove them
in each
| > decorations ?
|
| Did you try something like?
|
| PUSecurity allInstancesDo: [ :e | e remove ]
That's what I just was doing. Unfortunately it's the only way for
instance.
That would be preserve all the security settings ...
PUSecurity allInstancesDo: [ :e |
e ownerPermissions: (e ownerPermissions
reject: [ :f | f command isObsolete ]).
e groupPermissions: (e groupPermissions
reject: [ :f | f command isObsolete ]).
e otherPermissions: (e otherPermissions
reject: [ :f | f command isObsolete ]).
Lukas
--
Lukas Renggli
http://www.lukas-renggli.ch