summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* Merge branch 'master' of ssh://git.spline.de/account-webNico von Geyso2012-09-178-3/+115
|\
| * first web stuffMarian Sigler2012-09-148-3/+115
| |
* | proper syntax for pipNico von Geyso2012-09-171-2/+2
| |
* | added basic account service functionalityNico von Geyso2012-09-171-79/+148
|/ | | | | | | | | | | | | | | | | | | To auth, register, update or delete an account you have to use the AccountService class. A basic usage could be the following: # Simple auth service = AccountService(LDAP_HOST, LDAP_BASE_DN, LDAP_ADMIN_USER, LDAP_ADMIN_PASS) acc = service.auth('test', 'secret') # Authenticate against some credentials print('Mail: %s' % acc.mail) # Account creation, updating and deletion a = Account('foo', 'foo@bar.de', password='foobar') service.register(a) # create a.mail = 'bar@foo.de' service.update(a) # update service.delete(a.uid) # deletete
* added rudimentary ldap account classNico von Geyso2012-09-141-20/+57
|
* added env dirNico von Geyso2012-09-141-0/+1
|
* first pieces of codeMarian Sigler2012-09-132-0/+58
|
* Initial commitMarian Sigler2012-09-133-0/+6