1. 16 10月, 2006 1 次提交
  2. 15 10月, 2006 7 次提交
  3. 13 10月, 2006 1 次提交
  4. 12 10月, 2006 4 次提交
  5. 10 10月, 2006 4 次提交
  6. 09 10月, 2006 12 次提交
  7. 08 10月, 2006 8 次提交
  8. 07 10月, 2006 3 次提交
    • Anthony Minessale's avatar
      Modify Originate input syntax · bc7a378c
      Anthony Minessale 提交于
      This adds the | to the originate syntax 
      making it possible to put a list of urls to call and attempt
      to call them one at a time until one of them is successful or there
      are none of them left
      
      The original & delimited list is valid for each step in the | separated
      list
      
      Example
      sofia/test-int/3920@10.3.3.104|sofia/test-int/3910@10.3.3.104&sofia/test-int/3920@10.3.3.104
      
      first call 1 location and if that results in a failure, try 2 at once on the next go
      
      
      
      git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@2996 d0543943-73ff-0310-b7d9-9358b9ac24b2
      bc7a378c
    • Michael Jerris's avatar
      update windows build to new sofia tarball · b9a350a4
      Michael Jerris 提交于
      git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@2995 d0543943-73ff-0310-b7d9-9358b9ac24b2
      b9a350a4
    • Anthony Minessale's avatar
      Modifying the behaviour of the dialplan engine · 741b8329
      Anthony Minessale 提交于
      the 'data' field in action tags may now refer to variables and api functions
      to be expanded at runtime.
      
      Syntax:
      
      $varname
      ${varname}
      &func_name(func args)
      
      
      Exception:
      variables that are numeric are still expanded at dialplan compile time based on the regex eg $1 $2 etc
      
      Example:
      
      <extension name="1000">
        <condition field="destination_number" expression="^(1000)$">
          <action appplication="my_route_app" data="$1"/>
          <action appplication="bridge" data="$destination"/>
        </condition>
      </extension>
      
      Here the $1 is ecaluated before the call begins setting it to 1000 based on the regex ^(1000)$
      $destination is evaluated on the fly in execution once the my_route_app has run and has had a 
      chance to set the variable 'destination' to the correct value.
      
      
      
      git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@2994 d0543943-73ff-0310-b7d9-9358b9ac24b2
      741b8329