From 990a6bebe8a69146b4c7fe8c522d45790190d4e0 Mon Sep 17 00:00:00 2001 From: "Eliel C. Sardanons" Date: Wed, 5 Nov 2008 14:37:07 +0000 Subject: [PATCH] Add more SeeAlso references based on TFOT. git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@154647 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- apps/app_alarmreceiver.c | 14 ++++-- apps/app_amd.c | 4 ++ apps/app_morsecode.c | 6 ++- apps/app_privacy.c | 3 ++ apps/app_sayunixtime.c | 5 ++ main/features.c | 8 +++ main/pbx.c | 106 +++++++++++++++++++++++++++++++++++++-- 7 files changed, 138 insertions(+), 8 deletions(-) diff --git a/apps/app_alarmreceiver.c b/apps/app_alarmreceiver.c index 12ae49d652..6b34dfb54b 100644 --- a/apps/app_alarmreceiver.c +++ b/apps/app_alarmreceiver.c @@ -66,16 +66,22 @@ static char *app = "AlarmReceiver"; /*** DOCUMENTATION - Provide support for receiving alarm reports from a burglar or fire alarm panel + Provide support for receiving alarm reports from a burglar or fire alarm panel. This application should be called whenever there is an alarm panel calling in to dump its events. - The application will handshake with the alarm panel, and receive events, validate them, handshake them, and store them until the panel hangs up. - Once the panel hangs up, the application will run the system command specified by the eventcmd setting in alarmreceiver.conf and pipe the events to the standard input of the application. - The configuration file also contains settings for DTMF timing, and for the loudness of the acknowledgement tones. + The application will handshake with the alarm panel, and receive events, validate them, handshake them, + and store them until the panel hangs up. Once the panel hangs up, the application will run the system + command specified by the eventcmd setting in alarmreceiver.conf and pipe the + events to the standard input of the application. + The configuration file also contains settings for DTMF timing, and for the loudness of the + acknowledgement tones. Only 1 signalling format is supported at this time: Ademco Contact ID. + + alarmreceiver.conf + ***/ diff --git a/apps/app_amd.c b/apps/app_amd.c index bf3603b3e6..56fa10fd2a 100644 --- a/apps/app_amd.c +++ b/apps/app_amd.c @@ -116,6 +116,10 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$") + + WaitForSilence + WaitForNoise + ***/ diff --git a/apps/app_morsecode.c b/apps/app_morsecode.c index f9005296a1..25b5c49e39 100644 --- a/apps/app_morsecode.c +++ b/apps/app_morsecode.c @@ -37,7 +37,7 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$") /*** DOCUMENTATION - Plays morse code + Plays morse code. @@ -57,6 +57,10 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$") + + SayAlpha + SayPhonetic + ***/ static char *app_morsecode = "Morsecode"; diff --git a/apps/app_privacy.c b/apps/app_privacy.c index 71811de1cd..a2e7152b77 100644 --- a/apps/app_privacy.c +++ b/apps/app_privacy.c @@ -71,6 +71,9 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$") + + Zapateller + ***/ diff --git a/apps/app_sayunixtime.c b/apps/app_sayunixtime.c index f6122e40d5..a4dc0afdca 100644 --- a/apps/app_sayunixtime.c +++ b/apps/app_sayunixtime.c @@ -57,6 +57,11 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$") Uses some of the sound files stored in /var/lib/asterisk/sounds to construct a phrase saying the specified date and/or time in the specified format. + + STRFTIME + STRPTIME + IFTIME + diff --git a/main/features.c b/main/features.c index cc43fad682..f6daef36c1 100644 --- a/main/features.c +++ b/main/features.c @@ -102,6 +102,10 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$") context. If no extension is provided, then the first available parked call will be acquired. + + Park + ParkAndAnnounce + @@ -145,6 +149,10 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$") parking context, Park() will park the call on that extension, unless it already exists. In that case, execution will continue at next priority. + + ParkAndAnnounce + ParkedCall + ***/ diff --git a/main/pbx.c b/main/pbx.c index 8ae0879876..16f9f68896 100644 --- a/main/pbx.c +++ b/main/pbx.c @@ -102,6 +102,9 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$") If the call has not been answered, this application will answer it. Otherwise, it has no effect on the call. + + Hangup + @@ -153,7 +156,10 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$") - Playback + ControlPlayback + WaitExten + BackgroundDetect + TIMEOUT @@ -169,6 +175,12 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$") This application will indicate the busy condition to the calling channel. + + Congestion + Progess + Playtones + Hangup + @@ -183,6 +195,12 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$") This application will indicate the congestion condition to the calling channel. + + Busy + Progess + Playtones + Hangup + @@ -203,6 +221,10 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$") This application will execute the specified dialplan application, with optional arguments, if the current time matches the given time specification. + + Exec + TryExec + @@ -230,6 +252,12 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$") it will not be possible to find the h or i extensions, and the call will terminate! + + GotoIf + GotoIfTime + Gosub + Macro + @@ -261,6 +289,12 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$") does not exist, then it will not be able to find any 'h' or 'i' extensions there, and the channel and call will both be terminated!. + + Goto + GotoIfTime + GosubIf + MacroIf + @@ -289,6 +323,10 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$") Further information on the time specification can be found in examples illustrating how to do time-based context includes in the dialplan. + + GotoIf + IFTIME + @@ -325,6 +363,11 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$") This application will hang up the calling channel. + + Answer + Busy + Congestion + @@ -341,7 +384,6 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$") and that further input should be allowed before matching can be considered to be complete. Can be used within a pattern match when certain criteria warrants a longer match. - @@ -369,6 +411,7 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$") Verbose + Log @@ -388,6 +431,12 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$") This application will request that in-band progress information be provided to the calling channel. + + Busy + Congestion + Ringing + Playtones + @@ -400,6 +449,9 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$") This application will jump to the e extension in the current context, setting the dialplan function EXCEPTION(). If the e extension does not exist, the call will hangup. + + Exception + @@ -426,6 +478,10 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$") This application causes the Call Data Record to be reset. + + ForkCDR + NoCDR + @@ -435,6 +491,12 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$") This application will request that the channel indicate a ringing tone to the user. + + Busy + Congestion + Progress + Playtones + @@ -447,6 +509,12 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$") This application will play the sounds that correspond to the letters of the given string. + + SayDigits + SayNumber + SayPhonetic + CHANNEL + @@ -459,6 +527,12 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$") This application will play the sounds that correspond to the digits of the given number. This will use the language that is currently set for the channel. + + SayAlpha + SayNumber + SayPhonetic + CHANNEL + @@ -473,6 +547,12 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$") Optionally, a gender may be specified. This will use the language that is currently set for the channel. See the LANGUAGE() function for more information on setting the language for the channel. + + SayAlpha + SayDigits + SayPhonetic + CHANNEL + @@ -485,6 +565,11 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$") This application will play the sounds from the phonetic alphabet that correspond to the letters in the given string. + + SayAlpha + SayDigits + SayNumber + @@ -510,6 +595,12 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$") protect separators and quotes in various database access strings has been greatly reduced by these changes. + + MSet + GLOBAL + SET + ENV + @@ -537,6 +628,9 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$") character (comma or vert-bar), you will need to escape them by inserting a backslash before them. Avoid its use if possible. + + Set + @@ -548,6 +642,9 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$") This application will set the channel's AMA Flags for billing purposes. + + CDR + @@ -588,8 +685,8 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$") of seconds. - Playback Background + TIMEOUT @@ -619,6 +716,9 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$") Retrieve the details (specified field) of the current dialplan exception. + + RaiseException + ***/