예제 #1
0
 def hangup(self, uri):
     from __main__ import app
     return app.ipcCommand('hangup', uri)
예제 #2
0
파일: xmlrpc.py 프로젝트: braams/shtoom
 def xmlrpc_hangup(self, uri):
     "hangup current call"
     from __main__ import app
     return app.ipcCommand('hangup', uri)
예제 #3
0
 def call(self, uri):
     from __main__ import app
     return app.ipcCommand('call', uri)
예제 #4
0
파일: xmlrpc.py 프로젝트: braams/shtoom
 def xmlrpc_call(self, uri):
     "make a call"
     from __main__ import app
     return app.ipcCommand('call', uri)
예제 #5
0
파일: xmlrpc.py 프로젝트: xregist/shtoom
 def xmlrpc_hangup(self, uri):
     "hangup current call"
     from __main__ import app
     return app.ipcCommand('hangup', uri)
예제 #6
0
파일: xmlrpc.py 프로젝트: xregist/shtoom
 def xmlrpc_call(self, uri):
     "make a call"
     from __main__ import app
     return app.ipcCommand('call', uri)
예제 #7
0
파일: dbus.py 프로젝트: braams/shtoom
 def hangup(self, uri):
     from __main__ import app
     return app.ipcCommand('hangup', uri)
예제 #8
0
파일: dbus.py 프로젝트: braams/shtoom
 def call(self, uri):
     from __main__ import app
     return app.ipcCommand('call', uri)