예제 #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)
예제 #2
0
파일: GMWeb.py 프로젝트: songjundev/b
 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)
예제 #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)
예제 #4
0
파일: GMWeb.py 프로젝트: songjundev/b
 def GET(self, serverID, selectType, playerValue):
     print(serverID)
     print(selectType)
     print(playerValue)
     playerListCursor = model.get_PlayerInfo(selectType, playerValue, serverID)
     return render.mailPlayerList(serverID, playerListCursor)