示例#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)