Exemplo n.º 1
0
 def createProfile(self,username,password):
     if self.state == self.STATE_LOGGEDOUT:
         profile = Profile(username,password)
         profile.create()
         self.state = self.STATE_LOGGEDIN
         self.activeProfile = profile
Exemplo n.º 2
0
 def doLoginTry(self,username,password):
     if self.state == self.STATE_LOGGEDOUT:
         profile = Profile(username,password)
         profile.load()
         self.state = self.STATE_LOGGEDIN
         self.activeProfile = profile