[Asterisk-cvs] asterisk/res res_indications.c,1.7.2.1,1.7.2.2

russell at lists.digium.com russell at lists.digium.com
Tue Jan 11 13:07:52 CST 2005


Update of /usr/cvsroot/asterisk/res
In directory mongoose.digium.com:/tmp/cvs-serv7600/res

Modified Files:
      Tag: v1-0
	res_indications.c 
Log Message:
update help text (bug #3298)


Index: res_indications.c
===================================================================
RCS file: /usr/cvsroot/asterisk/res/res_indications.c,v
retrieving revision 1.7.2.1
retrieving revision 1.7.2.2
diff -u -d -r1.7.2.1 -r1.7.2.2
--- res_indications.c	21 Dec 2004 15:24:43 -0000	1.7.2.1
+++ res_indications.c	11 Jan 2005 19:12:00 -0000	1.7.2.2
@@ -53,6 +53,14 @@
 "       Show either a condensed for of all country/indications, or the\n"
 "       indications for the specified countries.\n";
 
+char *playtones_desc=
+"PlayTone(arg): Plays a tone list. Execution will continue with the next step immediately,\n"
+"while the tones continue to play.\n"
+"Arg is either the tone name defined in the indications.conf configuration file, or a directly\n"
+"specified list of frequencies and durations.\n"
+"See indications.conf for a description of the specification of a tonelist.\n\n"
+"Use the StopPlaytones application to stop the tones playing. \n";
+
 /*
  * Implementation of functions provided by this module
  */
@@ -372,6 +380,7 @@
 	return 0;
 }
 
+
 int load_module(void)
 {
 	if (ind_load_module()) return -1;
@@ -379,7 +388,7 @@
 	ast_cli_register(&add_indication_cli);
 	ast_cli_register(&remove_indication_cli);
 	ast_cli_register(&show_indications_cli);
-	ast_register_application("Playtones", handle_playtones, "Play a tone list","Play a tone list, either registered (through indications.conf) or a direct list of tones and durations.");
+	ast_register_application("Playtones", handle_playtones, "Play a tone list", playtones_desc);
 	ast_register_application("StopPlaytones", handle_stopplaytones, "Stop playing a tone list","Stop playing a tone list");
 
 	return 0;




More information about the svn-commits mailing list