示例#1
0
 def get(self):
     self.write(
         process.process_request(self.request,
                                 lambda: RedeployHandler.get_handler(self)))
示例#2
0
文件: pick.py 项目: RogerLai/Tools
 def post(self):
     self.write(process.process_request(self.request, lambda: RandomPairPickHandler.post_handler(self), 'html'))        
示例#3
0
 def get(self):
     self.write(process.process_request(self.request, lambda: TestHandler.get_handler(self)))
示例#4
0
文件: index.py 项目: RogerLai/Tools
 def get(self):
     self.write(process.process_request(self.request, lambda: WebGetIndexHandler.get_handler(self), 'html')) 
示例#5
0
 def get(self):
     self.write(process.process_request(self.request, lambda: InterestGroupExpenseHistoryHandler.get_handler(self), 'html'))        
示例#6
0
 def post(self):
     self.write(process.process_request(self.request, lambda: InterestGroupExpenseHandler.post_handler(self), 'html'))
示例#7
0
 def get(self):
     self.write(process.process_request(self.request, lambda: RedeployHandler.get_handler(self), 'html'))
示例#8
0
 def get(self):
     self.write(
         process.process_request(
             self.request, lambda: WebGetIndexHandler.get_handler(self),
             'html'))