|
Details
- Applies to
M MoinMoin/multiconfig.py M MoinMoin/security.py A MoinMoin/securityrule.py
- Purpose
Can Handle multi rules, in SecurityPolicy.
- Description
- I define the security_rules object and howto query them.
TODO
- Test it heavy.
Modify the code follow SecurityPolicy syntax.
- Toggle line numbers
1 #!python 2 def execute(self, pagename):
TO
Toggle line numbers1 #!python 2 def execute(self, pagename, **kw):
- Toggle line numbers
1 #!python 2 return lambda pagename: attr_security_rule(pagename)
TO
Toggle line numbers1 #!python 2 return lambda pagename, **kw: attr_security_rule(pagename, **kw)
DONE
- Base tested.
Patch
inline:security_rules.patch
Discussion
You can see: ["CategoryFeatureRequest/SecurityRules"]
Move this to a single page. Either this or the other, not both.
Plan
- Priority:
- Assigned to:
- Status: unclear why this should be necessary and not just inheritance is used