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