From 675fadc641ed6b521943c2c265bce70ac2c7994c Mon Sep 17 00:00:00 2001 From: Jason Gerard DeRose Date: Fri, 17 Oct 2008 23:25:50 -0600 Subject: Some PEP-257 and reStructuredText fixes in ipalib/aci.py, ipa_server/ipaldap.py --- ipalib/aci.py | 23 ++++++++++++++++------- 1 file changed, 16 insertions(+), 7 deletions(-) (limited to 'ipalib/aci.py') diff --git a/ipalib/aci.py b/ipalib/aci.py index 17956812f..9dde767c0 100755 --- a/ipalib/aci.py +++ b/ipalib/aci.py @@ -43,7 +43,7 @@ class ACI: __actions = ["allow", "deny"] - __permissions = ["read", "write", "add", "delete", "search", "compare", + __permissions = ["read", "write", "add", "delete", "search", "compare", "selfwrite", "proxy", "all"] def __init__(self,acistr=None): @@ -71,9 +71,14 @@ class ACI: return self.export_to_string() def __getattr__(self, name): - """Backwards compatibility for the old ACI class. - The following extra attributes are available: - source_group, dest_group and attrs. + """ + Backward compatibility for the old ACI class. + + The following extra attributes are available: + + - source_group + - dest_group + - attrs """ if name == 'source_group': group = '' @@ -96,9 +101,13 @@ class ACI: raise AttributeError, "object has no attribute '%s'" % name def __setattr__(self, name, value): - """Backwards compatibility for the old ACI class. - The following extra attributes are available: - source_group, dest_group and attrs. + """ + Backward compatibility for the old ACI class. + + The following extra attributes are available: + - source_group + - dest_group + - attrs """ if name == 'source_group': self.__dict__['bindrule'] = 'groupdn="ldap:///%s"' % value -- cgit