aboutsummaryrefslogtreecommitdiffstats
path: root/apps/app_cut.c
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2005-11-11 13:34:38 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2005-11-11 13:34:38 +0000
commitd5e7b740ec39d822004cb5901e868c1a42a3034d (patch)
tree1c9f2eab32d3bd593c0c9254ea70fb5790a5c8fa /apps/app_cut.c
parented70dd754ade76a5c91a97bcd61090c6cb0b253a (diff)
more cleanups to application descriptions
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@7072 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'apps/app_cut.c')
-rwxr-xr-xapps/app_cut.c23
1 files changed, 13 insertions, 10 deletions
diff --git a/apps/app_cut.c b/apps/app_cut.c
index 718583ec7..4eb6e552e 100755
--- a/apps/app_cut.c
+++ b/apps/app_cut.c
@@ -42,29 +42,32 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
/* Maximum length of any variable */
#define MAXRESULT 1024
-static char *tdesc = "String manipulation";
+static char *tdesc = "Cut out information from a string";
static char *app_cut = "Cut";
-static char *cut_synopsis = "Splits a variable's content using the specified delimiter";
+static char *cut_synopsis = "Splits a variable's contents using the specified delimiter";
static char *cut_descrip =
-"Usage: Cut(newvar=varname,delimiter,fieldspec)\n"
+" Cut(newvar=varname,delimiter,fieldspec): This applicaiton will split the\n"
+"contents of a variable based on the given delimeter and store the result in\n"
+"a new variable.\n"
+"Parameters:\n"
" newvar - new variable created from result string\n"
" varname - variable you want cut\n"
" delimiter - defaults to '-'\n"
" fieldspec - number of the field you want (1-based offset)\n"
-" may also be specified as a range (with -)\n"
-" or group of ranges and fields (with &)\n"
-" The process with complete on success or fail on hangup or error\n";
+" may also be specified as a range (with -)\n"
+" or group of ranges and fields (with &)\n"
+"This application has been deprecated in favor of the CUT function.\n";
static char *app_sort = "Sort";
static char *app_sort_synopsis = "Sorts a list of keywords and values";
static char *app_sort_descrip =
-" Sort(<newvar>=<key1>:<val1>[,<key2>:<val2>[[...],<keyN>:<valN>]])\n"
-"Sorts the list provided by using the value as a float to order the list of\n"
-"keywords in ascending order. Sets the variable provided to the list of\n"
-"sorted keywords. \n";
+" Sort(newvar=key1:val1[,key2:val2[[...],keyN:valN]]): This application will\n"
+"sort the list provided in ascending order. The result will be stored in the\n"
+"specified variable name.\n"
+" This applicaiton has been deprecated in favor of the SORT function.\n";
STANDARD_LOCAL_USER;