aboutsummaryrefslogtreecommitdiffstats
path: root/RepSys/plugins/ldapusers.py
Commit message (Collapse)AuthorAgeFilesLines
* Escape values used in LDAP search filters using ldap.filter.Bogdano Arendartchuk2007-05-041-1/+3
|
* Unbind the ldapobject after searching.Bogdano Arendartchuk2007-05-041-17/+19
|
* The option ldap-port was not being converted to integer. Fixed.Bogdano Arendartchuk2007-05-041-1/+5
|
* As noted by Andreas, LDAP search results can have only the neededBogdano Arendartchuk2007-05-031-1/+15
| | | | | attributes of ldap-resultformat. Fixed it.
* Changed the configuration field ldap-format to ldap-resultformat, moreBogdano Arendartchuk2007-05-031-3/+3
| | | | | consistent with ldap-filterformat.
* Changed the interpolation method. Now variable are defined with $name. notBogdano Arendartchuk2007-05-031-15/+20
| | | | | %(name)s. Things may break.
* Fixed the option "ldap-port", which was not being used.Bogdano Arendartchuk2007-05-031-2/+2
|
* As requested by Andreas, handle LDAP exceptions and provide better errorBogdano Arendartchuk2007-05-031-13/+30
| | | | | messages. Also improved format error messages a bit.
* Warn when python-ldap is not installed and the user is really trying to useBogdano Arendartchuk2007-05-031-3/+5
| | | | | the plugin.
* Yet another typo: "options IN the [global] section"V1_6_16Bogdano Arendartchuk2007-05-021-1/+1
|
* Added reference to the [global] section in the help of ldapusers plugin.Bogdano Arendartchuk2007-05-021-1/+1
|
* Typo "acess"Bogdano Arendartchuk2007-05-021-1/+1
|
* Introduced the plugin "ldapusers".Bogdano Arendartchuk2007-05-021-0/+118
This plugin allows to obtain the user names and e-mails from a LDAP server. See repsys --help-plugin ldapusers for the configuration options. This plugin also required one small change in the ConfigParser: the class Config should allow one to get one option value in "raw" format, so that python format strings can be used as configuration values.