summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorEliel C. Sardanons <eliels@gmail.com>2008-11-05 12:13:57 +0000
committerEliel C. Sardanons <eliels@gmail.com>2008-11-05 12:13:57 +0000
commitd23dff9ca85e820cb8b4e0d7d51616af20a17afe (patch)
tree370e13f21a5cec57db695cc35ec7ce15ca42d190 /apps
parent1402c2528466bff44c15c4f760baa83a2f091cdb (diff)
- Add some see-also references based on TFOT.
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@154542 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'apps')
-rw-r--r--apps/app_db.c7
-rw-r--r--apps/app_queue.c37
-rw-r--r--apps/app_readfile.c4
-rw-r--r--apps/app_senddtmf.c3
-rw-r--r--apps/app_sendtext.c4
-rw-r--r--apps/app_url.c4
6 files changed, 59 insertions, 0 deletions
diff --git a/apps/app_db.c b/apps/app_db.c
index 72b604680..3a89b867b 100644
--- a/apps/app_db.c
+++ b/apps/app_db.c
@@ -55,6 +55,8 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
</description>
<see-also>
<ref type="function">DB_DELETE</ref>
+ <ref type="application">DBdeltree</ref>
+ <ref type="function">DB</ref>
</see-also>
</application>
<application name="DBdeltree" language="en_US">
@@ -69,6 +71,11 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
<para>This application will delete a <replaceable>family</replaceable> or <replaceable>keytree</replaceable>
from the Asterisk database.</para>
</description>
+ <see-also>
+ <ref type="function">DB_DELETE</ref>
+ <ref type="application">DBdel</ref>
+ <ref type="function">DB</ref>
+ </see-also>
</application>
***/
diff --git a/apps/app_queue.c b/apps/app_queue.c
index eef55f55b..a4b86f5fb 100644
--- a/apps/app_queue.c
+++ b/apps/app_queue.c
@@ -214,6 +214,16 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
</variable>
</variablelist>
</description>
+ <see-also>
+ <ref type="application">AddQueueMember</ref>
+ <ref type="application">RemoveQueueMember</ref>
+ <ref type="application">PauseQueueMember</ref>
+ <ref type="application">UnpauseQueueMember</ref>
+ <ref type="application">AgentLogin</ref>
+ <ref type="function">QUEUE_MEMBER_COUNT</ref>
+ <ref type="function">QUEUE_MEMBER_LIST</ref>
+ <ref type="function">QUEUE_WAITING_COUNT</ref>
+ </see-also>
</application>
<application name="AddQueueMember" language="en_US">
<synopsis>
@@ -240,6 +250,12 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
</variable>
</variablelist>
</description>
+ <see-also>
+ <ref type="application">RemoveQueueMember</ref>
+ <ref type="application">PauseQueueMember</ref>
+ <ref type="application">UnpauseQueueMember</ref>
+ <ref type="application">AgentLogin</ref>
+ </see-also>
</application>
<application name="RemoveQueueMember" language="en_US">
<synopsis>
@@ -262,6 +278,12 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
</variablelist>
<para>Example: RemoveQueueMember(techsupport,SIP/3000)</para>
</description>
+ <see-also>
+ <ref type="application">Queue</ref>
+ <ref type="application">AddQueueMember</ref>
+ <ref type="application">PauseQueueMember</ref>
+ <ref type="application">UnpauseQueueMember</ref>
+ </see-also>
</application>
<application name="PauseQueueMember" language="en_US">
<synopsis>
@@ -291,6 +313,9 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
</variablelist>
<para>Example: PauseQueueMember(,SIP/3000)</para>
</description>
+ <see-also>
+ <ref type="application">UnpauseQueueMember</ref>
+ </see-also>
</application>
<application name="UnpauseQueueMember" language="en_US">
<synopsis>
@@ -317,6 +342,9 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
</variablelist>
<para>Example: UnpauseQueueMember(,SIP/3000)</para>
</description>
+ <see-also>
+ <ref type="application">PauseQueueMember</ref>
+ </see-also>
</application>
<application name="QueueLog" language="en_US">
<synopsis>
@@ -333,6 +361,9 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
<para>Allows you to write your own events into the queue log.</para>
<para>Example: QueueLog(101,${UNIQUEID},${AGENT},WENTONBREAK,600)</para>
</description>
+ <see-also>
+ <ref type="application">Queue</ref>
+ </see-also>
</application>
<function name="QUEUE_VARIABLES" language="en_US">
<synopsis>
@@ -408,6 +439,9 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
<para>Returns the number of members currently associated with the specified <replaceable>queuename</replaceable>.</para>
<warning><para>This function has been deprecated in favor of the <literal>QUEUE_MEMBER()</literal> function</para></warning>
</description>
+ <see-also>
+ <ref type="function">QUEUE_MEMBER_LIST</ref>
+ </see-also>
</function>
<function name="QUEUE_WAITING_COUNT" language="en_US">
<synopsis>
@@ -430,6 +464,9 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
<description>
<para>Returns a comma-separated list of members associated with the specified <replaceable>queuename</replaceable>.</para>
</description>
+ <see-also>
+ <ref type="function">QUEUE_MEMBER_COUNT</ref>
+ </see-also>
</function>
<function name="QUEUE_MEMBER_PENALTY" language="en_US">
<synopsis>
diff --git a/apps/app_readfile.c b/apps/app_readfile.c
index c5234089f..b65dbf656 100644
--- a/apps/app_readfile.c
+++ b/apps/app_readfile.c
@@ -58,6 +58,10 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
<para>Read the contents of a text file into channel variable <replaceable>varname</replaceable></para>
<warning><para>ReadFile has been deprecated in favor of Set(varname=${FILE(file,0,length)})</para></warning>
</description>
+ <see-also>
+ <ref type="application">System</ref>
+ <ref type="application">Read</ref>
+ </see-also>
</application>
***/
diff --git a/apps/app_senddtmf.c b/apps/app_senddtmf.c
index bd92230bd..05faf2221 100644
--- a/apps/app_senddtmf.c
+++ b/apps/app_senddtmf.c
@@ -55,6 +55,9 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
<para>DTMF digits sent to a channel with half second pause</para>
<para>It will pass all digits or terminate if it encounters an error.</para>
</description>
+ <see-also>
+ <ref type="application">Read</ref>
+ </see-also>
</application>
***/
static char *app = "SendDTMF";
diff --git a/apps/app_sendtext.c b/apps/app_sendtext.c
index 53306aa5a..91273b45a 100644
--- a/apps/app_sendtext.c
+++ b/apps/app_sendtext.c
@@ -63,6 +63,10 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
</variablelist>
<note><para>At this moment, text is supposed to be 7 bit ASCII in most channels.</para></note>
</description>
+ <see-also>
+ <ref type="application">SendImage</ref>
+ <ref type="application">SendURL</ref>
+ </see-also>
</application>
***/
diff --git a/apps/app_url.c b/apps/app_url.c
index e20159f5a..af72b44ef 100644
--- a/apps/app_url.c
+++ b/apps/app_url.c
@@ -73,6 +73,10 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
<para>SendURL continues normally if the URL was sent correctly or if the channel
does not support HTML transport. Otherwise, the channel is hung up.</para>
</description>
+ <see-also>
+ <ref type="application">SendImage</ref>
+ <ref type="application">SendText</ref>
+ </see-also>
</application>
***/