mirror of
https://github.com/avatao-content/test-tutorial-framework
synced 2024-11-12 19:27:17 +00:00
Use ServerUplinkConnector with new name TFWServerConnector
This commit is contained in:
parent
de4c534568
commit
4fa9895854
@ -1,7 +1,7 @@
|
||||
from tornado.ioloop import IOLoop
|
||||
|
||||
from tfw.components import SourceCodeEventHandler, TerminadoEventHandler, ProcessManagingEventHandler, BashMonitor
|
||||
from tfw.networking import MessageSender, ServerUplinkConnector
|
||||
from tfw.networking import MessageSender, TFWServerConnector
|
||||
from tfw.config import TFWENV
|
||||
from tfw.config.logs import logging
|
||||
|
||||
@ -17,7 +17,7 @@ def selectdir(history):
|
||||
try:
|
||||
cmd = history[-1].split()
|
||||
if cmd[0] == 'selectdir':
|
||||
ServerUplinkConnector().send_to_eventhandler('webide',
|
||||
TFWServerConnector().send_to_eventhandler('webide',
|
||||
{'data': {'command': 'selectdir',
|
||||
'directory': cmd[1]}})
|
||||
except IndexError:
|
||||
@ -29,7 +29,7 @@ def toggle_next(history):
|
||||
try:
|
||||
cmd = history[-1].split()
|
||||
if cmd[0] == 'togglenext':
|
||||
ServerUplinkConnector().send('messagecontrol',
|
||||
TFWServerConnector().send('messagecontrol',
|
||||
{'data': {'command': 'showbutton',
|
||||
'next_visibility': toggle_next.button_state}})
|
||||
except IndexError:
|
||||
|
Loading…
Reference in New Issue
Block a user