Exemple #1
0
 def get(self):
     self.write(
         process.process_request(self.request,
                                 lambda: RedeployHandler.get_handler(self)))
Exemple #2
0
 def post(self):
     self.write(process.process_request(self.request, lambda: RandomPairPickHandler.post_handler(self), 'html'))        
Exemple #3
0
 def get(self):
     self.write(process.process_request(self.request, lambda: TestHandler.get_handler(self)))
Exemple #4
0
 def get(self):
     self.write(process.process_request(self.request, lambda: WebGetIndexHandler.get_handler(self), 'html')) 
Exemple #5
0
 def get(self):
     self.write(process.process_request(self.request, lambda: InterestGroupExpenseHistoryHandler.get_handler(self), 'html'))        
Exemple #6
0
 def post(self):
     self.write(process.process_request(self.request, lambda: InterestGroupExpenseHandler.post_handler(self), 'html'))
Exemple #7
0
 def get(self):
     self.write(process.process_request(self.request, lambda: RedeployHandler.get_handler(self), 'html'))
Exemple #8
0
 def get(self):
     self.write(
         process.process_request(
             self.request, lambda: WebGetIndexHandler.get_handler(self),
             'html'))