From d23dff9ca85e820cb8b4e0d7d51616af20a17afe Mon Sep 17 00:00:00 2001 From: "Eliel C. Sardanons" Date: Wed, 5 Nov 2008 12:13:57 +0000 Subject: [PATCH] - Add some see-also references based on TFOT. git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@154542 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- apps/app_db.c | 7 +++++++ apps/app_queue.c | 37 +++++++++++++++++++++++++++++++++++++ apps/app_readfile.c | 4 ++++ apps/app_senddtmf.c | 3 +++ apps/app_sendtext.c | 4 ++++ apps/app_url.c | 4 ++++ funcs/func_blacklist.c | 3 +++ funcs/func_db.c | 14 ++++++++++++++ 8 files changed, 76 insertions(+) diff --git a/apps/app_db.c b/apps/app_db.c index 72b604680b..3a89b867b7 100644 --- a/apps/app_db.c +++ b/apps/app_db.c @@ -55,6 +55,8 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$") DB_DELETE + DBdeltree + DB @@ -69,6 +71,11 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$") This application will delete a family or keytree from the Asterisk database. + + DB_DELETE + DBdel + DB + ***/ diff --git a/apps/app_queue.c b/apps/app_queue.c index eef55f55b9..a4b86f5fb6 100644 --- a/apps/app_queue.c +++ b/apps/app_queue.c @@ -214,6 +214,16 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$") + + AddQueueMember + RemoveQueueMember + PauseQueueMember + UnpauseQueueMember + AgentLogin + QUEUE_MEMBER_COUNT + QUEUE_MEMBER_LIST + QUEUE_WAITING_COUNT + @@ -240,6 +250,12 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$") + + RemoveQueueMember + PauseQueueMember + UnpauseQueueMember + AgentLogin + @@ -262,6 +278,12 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$") Example: RemoveQueueMember(techsupport,SIP/3000) + + Queue + AddQueueMember + PauseQueueMember + UnpauseQueueMember + @@ -291,6 +313,9 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$") Example: PauseQueueMember(,SIP/3000) + + UnpauseQueueMember + @@ -317,6 +342,9 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$") Example: UnpauseQueueMember(,SIP/3000) + + PauseQueueMember + @@ -333,6 +361,9 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$") Allows you to write your own events into the queue log. Example: QueueLog(101,${UNIQUEID},${AGENT},WENTONBREAK,600) + + Queue + @@ -408,6 +439,9 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$") Returns the number of members currently associated with the specified queuename. This function has been deprecated in favor of the QUEUE_MEMBER() function + + QUEUE_MEMBER_LIST + @@ -430,6 +464,9 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$") Returns a comma-separated list of members associated with the specified queuename. + + QUEUE_MEMBER_COUNT + diff --git a/apps/app_readfile.c b/apps/app_readfile.c index c5234089f0..b65dbf6567 100644 --- a/apps/app_readfile.c +++ b/apps/app_readfile.c @@ -58,6 +58,10 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$") Read the contents of a text file into channel variable varname ReadFile has been deprecated in favor of Set(varname=${FILE(file,0,length)}) + + System + Read + ***/ diff --git a/apps/app_senddtmf.c b/apps/app_senddtmf.c index bd92230bd6..05faf2221a 100644 --- a/apps/app_senddtmf.c +++ b/apps/app_senddtmf.c @@ -55,6 +55,9 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$") DTMF digits sent to a channel with half second pause It will pass all digits or terminate if it encounters an error. + + Read + ***/ static char *app = "SendDTMF"; diff --git a/apps/app_sendtext.c b/apps/app_sendtext.c index 53306aa5ab..91273b45ac 100644 --- a/apps/app_sendtext.c +++ b/apps/app_sendtext.c @@ -63,6 +63,10 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$") At this moment, text is supposed to be 7 bit ASCII in most channels. + + SendImage + SendURL + ***/ diff --git a/apps/app_url.c b/apps/app_url.c index e20159f5a1..af72b44efc 100644 --- a/apps/app_url.c +++ b/apps/app_url.c @@ -73,6 +73,10 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$") SendURL continues normally if the URL was sent correctly or if the channel does not support HTML transport. Otherwise, the channel is hung up. + + SendImage + SendText + ***/ diff --git a/funcs/func_blacklist.c b/funcs/func_blacklist.c index c353b20fd7..304ba9bdfd 100644 --- a/funcs/func_blacklist.c +++ b/funcs/func_blacklist.c @@ -45,6 +45,9 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$") Uses astdb to check if the Caller*ID is in family blacklist. Returns 1 or 0. + + DB + ***/ diff --git a/funcs/func_db.c b/funcs/func_db.c index 9c8e0bdf90..5fa753f6da 100644 --- a/funcs/func_db.c +++ b/funcs/func_db.c @@ -56,6 +56,12 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$") DB_RESULT. If you wish to find out if an entry exists, use the DB_EXISTS function. + + DBdel + DB_DELETE + DBdeltree + DB_EXISTS + @@ -71,6 +77,9 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$") it will return 0. Checking for existence of a database key will also set the variable DB_RESULT to the key's value if it exists. + + DB + @@ -85,6 +94,11 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$") and then remove that key from the database. DB_RESULT will be set to the key's value if it exists. + + DBdel + DB + DBdeltree + ***/