Пример #1
0
 def __init__(self, filename, format=FORMAT_WAV, escape_digits='', timeout=-1, sample_offset=0, beep=True, silence=None):
     escape_digits = _process_digit_list(escape_digits)
     _Action.__init__(self,
      'RECORD FILE', quote(filename), quote(format),
      quote(escape_digits), quote(timeout), quote(sample_offset),
      (beep and quote('beep') or None),
      (silence and quote('s=' + str(silence)) or None)
     )
Пример #2
0
 def __init__(self,
              filename,
              escape_digits='',
              sample_offset=0,
              forward='',
              rewind='',
              pause=''):
     escape_digits = _process_digit_list(escape_digits)
     _Action.__init__(self, 'CONTROL STREAM FILE', quote(filename),
                      quote(escape_digits), quote(sample_offset),
                      quote(forward), quote(rewind), quote(pause))
Пример #3
0
 def __init__(self, number, name=None):
     if name:  #Escape it
         name = '\\"%(name)s\\"' % {
             'name': name,
         }
     else:  #Make sure it's the empty string
         name = ''
     number = "%(name)s<%(number)s>" % {
         'name': name,
         'number': number,
     }
     _Action.__init__(self, 'SET CALLERID', quote(number))
Пример #4
0
 def __init__(self, number, name=None):
     if name: #Escape it
         name = '\\"%(name)s\\"' % {
          'name': name,
         }
     else: #Make sure it's the empty string
         name = ''
     number = "%(name)s<%(number)s>" % {
      'name': name,
      'number': number,
     }
     _Action.__init__(self, 'SET CALLERID', quote(number))
Пример #5
0
 def __init__(self,
              filename,
              format=FORMAT_WAV,
              escape_digits='',
              timeout=-1,
              sample_offset=0,
              beep=True,
              silence=None):
     escape_digits = _process_digit_list(escape_digits)
     _Action.__init__(self, 'RECORD FILE', quote(filename), quote(format),
                      quote(escape_digits), quote(timeout),
                      quote(sample_offset),
                      (beep and quote('beep') or None),
                      (silence and quote('s=' + str(silence)) or None))
Пример #6
0
 def __init__(self, application, options=()):
     self._application = application
     options = ','.join((str(o or '') for o in options))
     _Action.__init__(self, 'EXEC', self._application, (options and quote(options)) or '')
Пример #7
0
 def __init__(self, family, key):
     _Action.__init__(self, 'DATABASE GET', quote(family), quote(key))
Пример #8
0
 def __init__(self, filename, escape_digits='', sample_offset=0, forward='', rewind='', pause=''):
     escape_digits = _process_digit_list(escape_digits)
     _Action.__init__(self, 'CONTROL STREAM FILE', quote(filename),
      quote(escape_digits), quote(sample_offset),
      quote(forward), quote(rewind), quote(pause)
     )
Пример #9
0
 def __init__(self, family, key):
     _Action.__init__(self, 'DATABASE GET', quote(family), quote(key))
Пример #10
0
 def __init__(self, application, options=()):
     options = ','.join((str(o or '') for o in options))
     _Action.__init__(self, 'EXEC', application,
                      (options and quote(options)) or '')
Пример #11
0
 def __init__(self, channel=None):
     _Action.__init__(self, 'CHANNEL STATUS', (channel and quote(channel))
                      or None)
Пример #12
0
 def __init__(self, timeout=0):
     _Action.__init__(self, 'RECEIVE TEXT', quote(timeout))
Пример #13
0
 def __init__(self, text):
     _Action.__init__(self, 'SEND TEXT', quote(text))
Пример #14
0
 def __init__(self, channel=None):
     _Action.__init__(self, 'HANGUP', (channel and quote(channel) or None))
Пример #15
0
 def __init__(self):
     _Action.__init__(self, 'NOOP')
Пример #16
0
 def __init__(self, variable):
     _Action.__init__(self, 'GET VARIABLE', quote(variable))
Пример #17
0
 def __init__(self, filename, escape_digits='', timeout=2000):
     escape_digits = _process_digit_list(escape_digits)
     _Action.__init__(self, 'GET OPTION', quote(filename),
                      quote(escape_digits), quote(timeout))
Пример #18
0
 def __init__(self, filename, timeout=2000, max_digits=255):
     _Action.__init__(self, 'GET DATA', quote(filename), quote(timeout),
                      quote(max_digits))
Пример #19
0
 def __init__(self, timeout=0):
     _Action.__init__(self, 'RECEIVE TEXT', quote(timeout))
Пример #20
0
 def __init__(self, extension):
     _Action.__init__(self, 'SET EXTENSION', quote(extension))
Пример #21
0
 def __init__(self, say_type, argument, escape_digits, *args):
     escape_digits = _process_digit_list(escape_digits)
     _Action.__init__(self,
      'SAY ' + say_type, quote(argument), quote(escape_digits), *args
     )
Пример #22
0
 def __init__(self, filename, escape_digits='', sample_offset=0):
     escape_digits = _process_digit_list(escape_digits)
     _Action.__init__(self,
      'STREAM FILE', quote(filename),
      quote(escape_digits), quote(sample_offset)
     )
Пример #23
0
 def __init__(self, say_type, argument, escape_digits, *args):
     escape_digits = _process_digit_list(escape_digits)
     _Action.__init__(self, 'SAY ' + say_type, quote(argument),
                      quote(escape_digits), *args)
Пример #24
0
 def __init__(self, family, key, value):
     _Action.__init__(self, 'DATABASE PUT', quote(family), quote(key),
                      quote(value))
Пример #25
0
 def __init__(self, priority):
     _Action.__init__(self, 'SET PRIORITY', quote(priority))
Пример #26
0
 def __init__(self, filename):
     _Action.__init__(self, 'SEND FILE', quote(filename))
Пример #27
0
 def __init__(self, message, level=LOG_INFO):
     _Action.__init__(self, 'VERBOSE', quote(message), quote(level))
Пример #28
0
 def __init__(self, text):
     _Action.__init__(self, 'SEND TEXT', quote(text))
Пример #29
0
 def __init__(self, channel=None):
     _Action.__init__(self, 'CHANNEL STATUS', (channel and quote(channel)) or None)
Пример #30
0
 def __init__(self, seconds=0):
     _Action.__init__(self, 'SET AUTOHANGUP', quote(seconds))
Пример #31
0
 def __init__(self, family, keytree=None):
     _Action.__init__(self,
      'DATABASE DELTREE', quote(family), (keytree and quote(keytree) or None)
     )
Пример #32
0
 def __init__(self, filename, escape_digits='', timeout=2000):
     escape_digits = _process_digit_list(escape_digits)
     _Action.__init__(self,
      'GET OPTION', quote(filename),
      quote(escape_digits), quote(timeout)
     )
Пример #33
0
 def __init__(self, family, key, value):
     _Action.__init__(self, 'DATABASE PUT', quote(family), quote(key), quote(value))
Пример #34
0
 def __init__(self, channel=None):
     _Action.__init__(self, 'HANGUP', (channel and quote(channel) or None))
Пример #35
0
 def __init__(self, filename, timeout=2000, max_digits=255):
     _Action.__init__(self,
      'GET DATA', quote(filename), quote(timeout), quote(max_digits)
     )
Пример #36
0
 def __init__(self, family, keytree=None):
     _Action.__init__(self, 'DATABASE DELTREE', quote(family),
                      (keytree and quote(keytree) or None))
Пример #37
0
 def __init__(self, variable):
     _Action.__init__(self, 'GET VARIABLE', quote(variable))
Пример #38
0
 def __init__(self, context):
     _Action.__init__(self, 'SET CONTEXT', quote(context))
Пример #39
0
 def __init__(self):
     _Action.__init__(self, 'NOOP')
Пример #40
0
 def __init__(self, extension):
     _Action.__init__(self, 'SET EXTENSION', quote(extension))
Пример #41
0
 def __init__(self, on, moh_class=None):
     _Action.__init__(self, 'SET MUSIC', quote(on and 'on' or 'off'),
                      (moh_class and quote(moh_class) or None))
Пример #42
0
 def __init__(self, priority):
     _Action.__init__(self, 'SET PRIORITY', quote(priority))
Пример #43
0
 def __init__(self, filename):
     _Action.__init__(self, 'SEND FILE', quote(filename))
Пример #44
0
 def __init__(self, name, value):
     _Action.__init__(self, 'SET VARIABLE', quote(name), quote(value))
Пример #45
0
 def __init__(self, seconds=0):
     _Action.__init__(self, 'SET AUTOHANGUP', quote(seconds))
Пример #46
0
 def __init__(self, filename, escape_digits='', sample_offset=0):
     escape_digits = _process_digit_list(escape_digits)
     _Action.__init__(self, 'STREAM FILE', quote(filename),
                      quote(escape_digits), quote(sample_offset))
Пример #47
0
 def __init__(self, context):
     _Action.__init__(self, 'SET CONTEXT', quote(context))
Пример #48
0
 def __init__(self, mode):
     _Action.__init__(self, 'TDD MODE', mode)
Пример #49
0
 def __init__(self, on, moh_class=None):
     _Action.__init__(self,
      'SET MUSIC', quote(on and 'on' or 'off'),
      (moh_class and quote(moh_class) or None)
     )
Пример #50
0
 def __init__(self, message, level=LOG_INFO):
     _Action.__init__(self, 'VERBOSE', quote(message), quote(level))
Пример #51
0
 def __init__(self, name, value):
     _Action.__init__(self, 'SET VARIABLE', quote(name), quote(value))
Пример #52
0
 def __init__(self, timeout=-1):
     _Action.__init__(self, 'WAIT FOR DIGIT', quote(timeout))
Пример #53
0
 def __init__(self, mode):
     _Action.__init__(self, 'TDD MODE', mode)
Пример #54
0
 def __init__(self):
     _Action.__init__(self, 'ANSWER')
Пример #55
0
 def __init__(self, timeout=-1):
     _Action.__init__(self, 'WAIT FOR DIGIT', quote(timeout))
Пример #56
0
 def __init__(self):
     _Action.__init__(self, 'ANSWER')