예제 #1
0
 def showStaticTeamProfile(self):
     club = self.getClub()
     if club is not None:
         club_events.showClubProfile(club.getClubDbID())
예제 #2
0
 def openClubProfile(self, clubDbID):
     club_events.showClubProfile(clubDbID)
예제 #3
0
 def openCrewStatistic(self):
     club = self.getClub()
     if club is not None:
         club_events.showClubProfile(club.getClubDbID())
     self.destroy()
예제 #4
0
 def openClubProfile(self, clubDbID):
     club_events.showClubProfile(clubDbID)
예제 #5
0
 def showFormationProfile(self, clubDbID):
     showClubProfile(long(clubDbID))
예제 #6
0
 def handleAction(self, model, entityID, action):
     super(ShowClubAppsHandler, self).handleAction(model, entityID, action)
     return club_events.showClubProfile(entityID, viewIdx=1)
예제 #7
0
 def handleAction(self, model, entityID, action):
     super(ShowClubInviteHandler,
           self).handleAction(model, entityID, action)
     invite = self.clubsCtrl.getProfile().getInvite(entityID)
     if invite:
         return club_events.showClubProfile(invite.getClubDbID())
 def onClubCreated(self, clubDBID):
     club_events.showClubProfile(clubDBID)
 def showTeamCard(self):
     club_events.showClubProfile(self.__clubDBID)
예제 #10
0
 def openCrewStatistic(self):
     club = self.getClub()
     if club is not None:
         club_events.showClubProfile(club.getClubDbID())
     self.destroy()
     return
예제 #11
0
 def showFormationProfile(self, clubDbID):
     showClubProfile(long(clubDbID))
예제 #12
0
 def showStaticTeamStaff(self):
     club = self.getClub()
     if club is not None:
         club_events.showClubProfile(club.getClubDbID(), viewIdx=1)
예제 #13
0
 def showStaticTeamProfile(self):
     club = self.getClub()
     if club is not None:
         club_events.showClubProfile(club.getClubDbID())
예제 #14
0
 def handleAction(self, model, entityID, action):
     super(ShowClubAppsHandler, self).handleAction(model, entityID, action)
     return club_events.showClubProfile(entityID, viewIdx=1)
예제 #15
0
 def showStaticTeamStaff(self):
     club = self.getClub()
     if club is not None:
         club_events.showClubProfile(club.getClubDbID(), viewIdx=1)
예제 #16
0
 def onClubCreated(self, clubDBID):
     club_events.showClubProfile(clubDBID)
예제 #17
0
 def handleAction(self, model, entityID, action):
     super(ShowClubInviteHandler, self).handleAction(model, entityID, action)
     invite = self.clubsCtrl.getProfile().getInvite(entityID)
     if invite:
         return club_events.showClubProfile(invite.getClubDbID())
예제 #18
0
 def showRallyProfile(self, clubDBID):
     club_events.showClubProfile(clubDBID)
예제 #19
0
 def showRallyProfile(self, clubDBID):
     club_events.showClubProfile(clubDBID)
 def showTeamCard(self):
     club_events.showClubProfile(self.__clubDBID)