Show
Ignore:
Timestamp:
06/15/03 00:44:21 (21 years ago)
Author:
jalet
Message:

More work on LDAP storage backend.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • pykota/trunk/pykota/config.py

    r1021 r1029  
    2121# 
    2222# $Log$ 
     23# Revision 1.29  2003/06/14 22:44:21  jalet 
     24# More work on LDAP storage backend. 
     25# 
    2326# Revision 1.28  2003/06/10 16:37:54  jalet 
    2427# Deletion of the second user which is not needed anymore. 
     
    194197        return backendinfo 
    195198         
     199    def getLDAPInfo(self) :     
     200        """Returns some hints for the LDAP backend."""         
     201        ldapinfo = {} 
     202        for option in [ "userbase", "userrdn", \ 
     203                        "groupbase", "grouprdn", "groupmembers", \ 
     204                        "printerbase", "printerrdn", \ 
     205                        "userquotabase", "groupquotabase", \ 
     206                        "jobbase", "lastjobbase", \ 
     207                      ] : 
     208            ldapinfo[option] = self.getGlobalOption(option) 
     209        return ldapinfo 
     210         
    196211    def getLoggingBackend(self) :     
    197212        """Returns the logging backend information."""