[asterisk-commits] eliel: branch group/appdocsxml r148244 - /team/group/appdocsxml/apps/app_while.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Fri Oct 10 08:01:09 CDT 2008
Author: eliel
Date: Fri Oct 10 08:01:09 2008
New Revision: 148244
URL: http://svn.digium.com/view/asterisk?view=rev&rev=148244
Log:
Add <see-also> tags to the While, EndWhile, ExitWhile and ContinueWhile applications.
Modified:
team/group/appdocsxml/apps/app_while.c
Modified: team/group/appdocsxml/apps/app_while.c
URL: http://svn.digium.com/view/asterisk/team/group/appdocsxml/apps/app_while.c?view=diff&rev=148244&r1=148243&r2=148244
==============================================================================
--- team/group/appdocsxml/apps/app_while.c (original)
+++ team/group/appdocsxml/apps/app_while.c Fri Oct 10 08:01:09 2008
@@ -45,6 +45,11 @@
<para>Start a While Loop. Execution will return to this point when
<literal>EndWhile()</literal> is called until expr is no longer true.</para>
</description>
+ <see-also>
+ <ref type="application">EndWhile</ref>
+ <ref type="application">ExitWhile</ref>
+ <ref type="application">ContinueWhile</ref>
+ </see-also>
</application>
<application name="EndWhile" language="en_US">
<synopsis>
@@ -54,6 +59,11 @@
<description>
<para>Return to the previous called <literal>While()</literal>.</para>
</description>
+ <see-also>
+ <ref type="application">While</ref>
+ <ref type="application">ExitWhile</ref>
+ <ref type="application">ContinueWhile</ref>
+ </see-also>
</application>
<application name="ExitWhile" language="en_US">
<synopsis>
@@ -63,6 +73,11 @@
<description>
<para>Exits a <literal>While()</literal> loop, whether or not the conditional has been satisfied.</para>
</description>
+ <see-also>
+ <ref type="application">While</ref>
+ <ref type="application">EndWhile</ref>
+ <ref type="application">ContinueWhile</ref>
+ </see-also>
</application>
<application name="ContinueWhile" language="en_US">
<synopsis>
@@ -72,6 +87,11 @@
<description>
<para>Returns to the top of the while loop and re-evaluates the conditional.</para>
</description>
+ <see-also>
+ <ref type="application">While</ref>
+ <ref type="application">EndWhile</ref>
+ <ref type="application">ExitWhile</ref>
+ </see-also>
</application>
***/
More information about the asterisk-commits
mailing list