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