def post(self): bsc_control.set_var(self.skt, tornado.escape.native_str(self.get_argument("variable")), tornado.escape.native_str(self.get_argument("value"))) super(SetCtrl, self).post()
def post(self): bsc_control.set_var( self.skt, tornado.escape.native_str(self.get_argument("variable")), tornado.escape.native_str(self.get_argument("value"))) super(SetCtrl, self).post()
def get(self, var, val): bsc_control.set_var(self.skt, tornado.escape.native_str(var), tornado.escape.native_str(val)) super(SetCtrl, self).get(tornado.escape.native_str(var))