diff --git a/apps/app_adsiprog.c b/apps/app_adsiprog.c index 126068c94d..8f789c6c4b 100644 --- a/apps/app_adsiprog.c +++ b/apps/app_adsiprog.c @@ -60,6 +60,10 @@ static char *app = "ADSIProg"; This application programs an ADSI Phone with the given script + + GetCPEID + adsi.conf + ***/ diff --git a/apps/app_authenticate.c b/apps/app_authenticate.c index 69abf6f38b..88b2018f03 100644 --- a/apps/app_authenticate.c +++ b/apps/app_authenticate.c @@ -98,6 +98,10 @@ static char *app = "Authenticate"; When using a database key, the value associated with the key can be anything. Users have three attempts to authenticate before the channel is hung up. + + VMAuthenticate + DISA + ***/ diff --git a/apps/app_chanspy.c b/apps/app_chanspy.c index f4a5a5d81f..0f9ae44385 100644 --- a/apps/app_chanspy.c +++ b/apps/app_chanspy.c @@ -164,6 +164,9 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$") single digit extension exists in the correct context ChanSpy will exit to it. This also disables choosing a channel based on chanprefix and a digit sequence. + + ExtenSpy + @@ -279,6 +282,9 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$") single digit extension exists in the correct context ChanSpy will exit to it. This also disables choosing a channel based on chanprefix and a digit sequence. + + ChanSpy + ***/ diff --git a/apps/app_disa.c b/apps/app_disa.c index 515bdce9c0..80aeb09eac 100644 --- a/apps/app_disa.c +++ b/apps/app_disa.c @@ -104,6 +104,10 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$") line, with the sole exception of the options. The file may contain blank lines, or comments starting with # or ;. + + Authenticate + VMAuthenticate + ***/ static char *app = "DISA"; diff --git a/apps/app_dumpchan.c b/apps/app_dumpchan.c index e2300dbeae..d3bf17f6cd 100644 --- a/apps/app_dumpchan.c +++ b/apps/app_dumpchan.c @@ -52,6 +52,10 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$") displayed when the verbose level is currently set to that number or greater. + + NoOp + Verbose + ***/ diff --git a/apps/app_image.c b/apps/app_image.c index e74397c0de..a6fbac50ce 100644 --- a/apps/app_image.c +++ b/apps/app_image.c @@ -62,6 +62,10 @@ static char *app = "SendImage"; + + SendText + SendURL + ***/ diff --git a/apps/app_page.c b/apps/app_page.c index ddebbf0ac8..7d1dca447b 100644 --- a/apps/app_page.c +++ b/apps/app_page.c @@ -91,6 +91,9 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$") caller is dumped into the conference as a speaker and the room is destroyed when the original callers leaves. + + MeetMe + ***/ static const char *app_page= "Page"; diff --git a/apps/app_stack.c b/apps/app_stack.c index beeea30f63..45db41d05e 100644 --- a/apps/app_stack.c +++ b/apps/app_stack.c @@ -59,6 +59,13 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$") Jumps to the label specified, saving the return address. + + GosubIf + Macro + Goto + Return + StackPop + @@ -82,6 +89,13 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$") labeliffalse, if specified. In either case, a jump saves the return point in the dialplan, to be returned to with a Return. + + Gosub + Return + MacroIf + IF + GotoIf + @@ -96,6 +110,10 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$") Jumps to the last label on the stack, removing it. The return value, if any, is saved in the channel variable GOSUB_RETVAL. + + Gosub + StackPop + @@ -105,6 +123,10 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$") Removes last label on the stack, discarding it. + + Return + Gosub + diff --git a/main/pbx.c b/main/pbx.c index 438403e933..8ae0879876 100644 --- a/main/pbx.c +++ b/main/pbx.c @@ -4223,6 +4223,8 @@ static char *xmldoc_build_seealso(const char *type, const char *name) ast_str_append(&outputstr, 0, "%s\n", content); } else if (!strcasecmp(typename, "manpage")) { ast_str_append(&outputstr, 0, "ManPage: %s\n", content); + } else if (!strcasecmp(typename, "filename")) { + ast_str_append(&outputstr, 0, "File: %s\n", content); } ast_xml_free_text(content); }