Esempio n. 1
0
 def GET(self, serverID, selectType, playerValue):
     print(serverID)
     print(selectType)
     print(playerValue)
     playerListCursor = model.get_PlayerInfo(selectType, playerValue,
                                             serverID)
     return render.mailPlayerList(serverID, playerListCursor)
Esempio n. 2
0
 def GET(self, selectType, playerValue, serverID):
     print selectType
     print serverID
     print playerValue
     playerInfo = model.get_PlayerInfo(selectType, playerValue, serverID)
     print playerInfo
     return render.formationInfo(playerInfo, selectType, playerValue, serverID)
Esempio n. 3
0
 def GET(self, selectType, playerValue, serverID):
     print selectType
     print serverID
     print playerValue
     playerInfo = model.get_PlayerInfo(selectType, playerValue, serverID)
     print playerInfo
     return render.PlayerInfo(playerInfo, selectType, playerValue, serverID)
Esempio n. 4
0
 def GET(self, serverID, selectType, playerValue):
     print(serverID)
     print(selectType)
     print(playerValue)
     playerListCursor = model.get_PlayerInfo(selectType, playerValue, serverID)
     return render.mailPlayerList(serverID, playerListCursor)