[asterisk-commits] tilghman: branch 1.4 r56922 - /branches/1.4/apps/
asterisk-commits at lists.digium.com
asterisk-commits at lists.digium.com
Mon Feb 26 15:01:24 MST 2007
Author: tilghman
Date: Mon Feb 26 16:01:23 2007
New Revision: 56922
URL: http://svn.digium.com/view/asterisk?view=rev&rev=56922
Log:
Picky, picky... show deprecation warning in application help, too (reported via list)
Modified:
branches/1.4/apps/app_lookupblacklist.c
branches/1.4/apps/app_lookupcidname.c
Modified: branches/1.4/apps/app_lookupblacklist.c
URL: http://svn.digium.com/view/asterisk/branches/1.4/apps/app_lookupblacklist.c?view=diff&rev=56922&r1=56921&r2=56922
==============================================================================
--- branches/1.4/apps/app_lookupblacklist.c (original)
+++ branches/1.4/apps/app_lookupblacklist.c Mon Feb 26 16:01:23 2007
@@ -59,7 +59,9 @@
"This application sets the following channel variable upon completion:\n"
" LOOKUPBLSTATUS The status of the Blacklist lookup as a text string, one of\n"
" FOUND | NOTFOUND\n"
- "Example: exten => 1234,1,LookupBlacklist()\n";
+ "Example: exten => 1234,1,LookupBlacklist()\n\n"
+ "This application is deprecated and may be removed from a future release.\n"
+ "Please use the dialplan function BLACKLIST() instead.\n";
static int blacklist_read(struct ast_channel *chan, char *cmd, char *data, char *buf, size_t len)
Modified: branches/1.4/apps/app_lookupcidname.c
URL: http://svn.digium.com/view/asterisk/branches/1.4/apps/app_lookupcidname.c?view=diff&rev=56922&r1=56921&r2=56922
==============================================================================
--- branches/1.4/apps/app_lookupcidname.c (original)
+++ branches/1.4/apps/app_lookupcidname.c Mon Feb 26 16:01:23 2007
@@ -55,7 +55,9 @@
"Caller*ID name. Does nothing if no Caller*ID was received on the\n"
"channel. This is useful if you do not subscribe to Caller*ID\n"
"name delivery, or if you want to change the names on some incoming\n"
- "calls.\n";
+ "calls.\n\n"
+ "LookupCIDName is deprecated. Please use ${DB(cidname/${CALLERID(num)})}\n"
+ "instead.\n";
static int lookupcidname_exec (struct ast_channel *chan, void *data)
More information about the asterisk-commits
mailing list