[asterisk-commits] mvanbaak: branch 1.6.1 r144881 - in /branches/1.6.1: ./ apps/ channels/

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Fri Sep 26 20:08:12 CDT 2008


Author: mvanbaak
Date: Fri Sep 26 20:08:11 2008
New Revision: 144881

URL: http://svn.digium.com/view/asterisk?view=rev&rev=144881
Log:
Merged revisions 144879 via svnmerge from 
https://origsvn.digium.com/svn/asterisk/trunk

........
r144879 | mvanbaak | 2008-09-27 02:49:24 +0200 (Sat, 27 Sep 2008) | 2 lines

fix a couple of CLI commands that did not have a help description.

........

Modified:
    branches/1.6.1/   (props changed)
    branches/1.6.1/apps/app_queue.c
    branches/1.6.1/channels/chan_dahdi.c

Propchange: branches/1.6.1/
------------------------------------------------------------------------------
Binary property 'trunk-merged' - no diff available.

Modified: branches/1.6.1/apps/app_queue.c
URL: http://svn.digium.com/view/asterisk/branches/1.6.1/apps/app_queue.c?view=diff&rev=144881&r1=144880&r2=144881
==============================================================================
--- branches/1.6.1/apps/app_queue.c (original)
+++ branches/1.6.1/apps/app_queue.c Fri Sep 26 20:08:11 2008
@@ -6059,7 +6059,8 @@
 	case CLI_INIT:
 		e->command = "queue add member";
 		e->usage =
-			"Usage: queue add member <channel> to <queue> [[[penalty <penalty>] as <membername>] state_interface <interface>]\n"; 
+			"Usage: queue add member <channel> to <queue> [[[penalty <penalty>] as <membername>] state_interface <interface>]\n"
+			"       Add a channel to a queue with optionally:  a penalty, membername and a state_interface\n";
 		return NULL;
 	case CLI_GENERATE:
 		return complete_queue_add_member(a->line, a->word, a->pos, a->n);
@@ -6171,7 +6172,9 @@
 	switch (cmd) {
 	case CLI_INIT:
 		e->command = "queue remove member";
-		e->usage = "Usage: queue remove member <channel> from <queue>\n"; 
+		e->usage = 
+			"Usage: queue remove member <channel> from <queue>\n"
+			"       Remove a specific channel from a queue.\n";
 		return NULL;
 	case CLI_GENERATE:
 		return complete_queue_remove_member(a->line, a->word, a->pos, a->n);

Modified: branches/1.6.1/channels/chan_dahdi.c
URL: http://svn.digium.com/view/asterisk/branches/1.6.1/channels/chan_dahdi.c?view=diff&rev=144881&r1=144880&r2=144881
==============================================================================
--- branches/1.6.1/channels/chan_dahdi.c (original)
+++ branches/1.6.1/channels/chan_dahdi.c Fri Sep 26 20:08:11 2008
@@ -11897,6 +11897,7 @@
 	switch (cmd) {
 	case CLI_INIT:	
 		e->command = "pri show debug";
+		e->usage = "Show the debug state of pri spans\n";
 		return NULL;
 	case CLI_GENERATE:
 		return NULL;	
@@ -11930,6 +11931,7 @@
 	switch (cmd) {
 	case CLI_INIT:
 		e->command = "pri show version";
+		e->usage = "Show libpri version information\n";
 		return NULL;
 	case CLI_GENERATE:
 		return NULL;
@@ -13470,6 +13472,7 @@
 	switch (cmd) {
 	case CLI_INIT:
 		e->command = "ss7 show version";
+		e->usage = "Show the libss7 version\n";
 		return NULL;
 	case CLI_GENERATE:
 		return NULL;




More information about the asterisk-commits mailing list