[asterisk-commits] mvanbaak: branch group/appdocsxml r143074 - /team/group/appdocsxml/apps/
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Sun Sep 14 04:16:23 CDT 2008
Author: mvanbaak
Date: Sun Sep 14 04:16:22 2008
New Revision: 143074
URL: http://svn.digium.com/view/asterisk?view=rev&rev=143074
Log:
fix documentation of the RetryDial application
Modified:
team/group/appdocsxml/apps/app_dial.c
Modified: team/group/appdocsxml/apps/app_dial.c
URL: http://svn.digium.com/view/asterisk/team/group/appdocsxml/apps/app_dial.c?view=diff&rev=143074&r1=143073&r2=143074
==============================================================================
--- team/group/appdocsxml/apps/app_dial.c (original)
+++ team/group/appdocsxml/apps/app_dial.c Sun Sep 14 04:16:22 2008
@@ -415,8 +415,23 @@
<synopsis>
Place a call, retrying on failure allowing an optional exit extension.
</synopsis>
+ <syntax>
+ <parameter name="announce" required="true">
+ <para>Filename of sound that will be played when no channel can be reached</para>
+ </parameter>
+ <parameter name="sleep" required="true">
+ <para>Number of seconds to wait after a dialattempt failed before a new attempt is made</para>
+ </parameter>
+ <parameter name="retries" required="true">
+ <para>Number of retries</para>
+ <para>When this is reached flow will continue at the next priority in the dialplan</para>
+ </parameter>
+ <parameter name="dialargs" required="true">
+ <para>Same format as arguments provided to the Dial application</para>
+ </parameter>
+ </syntax>
<description>
- This application will attempt to place a call using the normal Dial application.
+ <para>This application will attempt to place a call using the normal Dial application.
If no channel can be reached, the <replaceable>announce</replaceable> file will be played.
Then, it will wait <replaceable>sleep</replaceable> number of seconds before retrying the call.
After <replaceable>retries</replaceable> number of attempts, the calling channel will continue at the next priority in the dialplan.
@@ -425,20 +440,8 @@
extension exists in either the context defined in ${EXITCONTEXT} or the current
one, The call will jump to that extension immediately.
The <replaceable>dialargs</replaceable> are specified in the same format that arguments are provided
- to the Dial application.
+ to the Dial application.<para>
</description>
- <option name="announce" required="true">
- Filename of sound that will be played when no channel can be reached
- </option>
- <option name="sleep" required="true">
- Number of seconds to wait after a dialattempt failed before a new attempt is made
- </option>
- <option name="retries">
- Number of retries. When this is reached flow will continue at the next priority in the dialplan
- </option>
- <option name="dialargs" required="true">
- Some format as arguments providet to the Dial application
- </option>
</application>
***/
More information about the asterisk-commits
mailing list