Esempio n. 1
0
	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()
Esempio n. 2
0
 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()
Esempio n. 3
0
	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))
Esempio n. 4
0
 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))