Changeset c202dee in indico
- Timestamp:
- 04/06/10 14:19:44 (3 years ago)
- Branches:
- master, burotel, hello-world-walkthrough, ipv6, new-webex, v0.97-series, v0.98-series, v0.98.2, v0.98.3, v0.98b1, v0.98b2, v0.99, 051b2622c51afb171a1dedb46a0df4fbb0cbd02e, 0da0c1403bae8e51d8229f460181c71b9e6dda72
- Children:
- 07bd34
- Parents:
- 8b00bf
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
indico/MaKaC/authentication/LocalAuthentication.py
r420dc1 rc202dee 27 27 class LocalAuthenticator(Authenthicator): 28 28 idxName = "localIdentities" 29 id = _("Local")29 id = "Local" 30 30 name = "Indico" 31 31 desciption = "Indico Login" 32 32 UserCreator = None 33 33 34 34 def createIdentity(self, li, avatar): 35 35 return LocalIdentity(li.getLogin(), li.getPassword(), avatar) 36 37 36 37 38 38 39 39 … … 43 43 44 44 class LocalIdentity(PIdentity): 45 45 46 46 def __init__(self, login, password, user): 47 47 PIdentity.__init__( self, login, user ) … … 56 56 return self.user 57 57 return None 58 58 59 59 def getAuthenticatorTag(self): 60 60 return LocalAuthenticator.getId()
Note: See TracChangeset
for help on using the changeset viewer.
