예제 #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'))