[svn-commits] mvanbaak: branch group/appdocsxml r128338 - /team/group/appdocsxml/apps/

SVN commits to the Digium repositories svn-commits at lists.digium.com
Sat Jul 5 19:18:48 CDT 2008


Author: mvanbaak
Date: Sat Jul  5 19:18:48 2008
New Revision: 128338

URL: http://svn.digium.com/view/asterisk?view=rev&rev=128338
Log:
add some extra docs to app_dial

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=128338&r1=128337&r2=128338
==============================================================================
--- team/group/appdocsxml/apps/app_dial.c (original)
+++ team/group/appdocsxml/apps/app_dial.c Sat Jul  5 19:18:48 2008
@@ -112,6 +112,14 @@
 			</value>
 			<value name="INVALIDARGS" />
 		</variable>
+		<option name="Technology/Resource" required="true" argsep="&">
+			<argument name="Technology2/Resource2">
+				Optional extra 'devices' to dial.
+				If you need more then one enter them like this:
+				Technology2/Resource2&Technology3/Resourse3&.....
+			</argument>
+			Device to dial
+		</option>
 		<option name="A">
 			<argument name="x" required="true">
 				The file to play to the called party
@@ -374,14 +382,11 @@
 			The optional URL will be sent to the called party if the channel supports it.
 		</option>
 	</application>
-
-	<application name="RetryDial">
+	<application name="RetryDial" language="en">
 		<synopsis>
-			(THIS SHOULD BE SOME SPANISH !!!!!!!!!!!!!!!)
 			Place a call, retrying on failure allowing an optional exit extension.
 		</synopsis>
 		<description>
-		    RetryDial(announce,sleep,retries,dialargs):
 		    This application will attempt to place a call using the normal Dial application.
 		    If no channel can be reached, the 'announce' file will be played.
 		    Then, it will wait 'sleep' number of seconds before retrying the call.
@@ -393,29 +398,28 @@
 		    The 'dialargs' are specified in the same format that arguments are provided
 		    to the Dial application.
 		</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>
-
 	<application name="RetryDial" language="es">
 		<synopsis>
 			(THIS SHOULD BE SOME SPANISH !!!!!!!!!!!!!!!)
-			Place a call, retrying on failure allowing an optional exit extension.
+			No hablo Espanol
 		</synopsis>
 		<description>
-		    RetryDial(announce,sleep,retries,dialargs):
-		    This application will attempt to place a call using the normal Dial application.
-		    If no channel can be reached, the 'announce' file will be played.
-		    Then, it will wait 'sleep' number of seconds before retrying the call.
-		    After 'retries' number of attempts, the calling channel will continue at the next priority in the dialplan. 
-		    If the 'retries' setting is set to 0, this application will retry endlessly.
-		    While waiting to retry a call, a 1 digit extension may be dialed. If that
-		    extension exists in either the context defined in ${EXITCONTEXT} or the current
-		    one, The call will jump to that extension immediately.
-		    The 'dialargs' are specified in the same format that arguments are provided
-		    to the Dial application.
+			Si signor, No Hablo Espanol
 		</description>
 	</application>
-
-
  ***/
 
 static char *app = "Dial";




More information about the svn-commits mailing list