コード例 #1
0
ファイル: __init__.py プロジェクト: skarphed/skarphed
 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
コード例 #2
0
ファイル: __init__.py プロジェクト: skarphed/skarphed
 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