[asterisk-commits] kmoore: branch 11 r406217 - /branches/11/apps/app_confbridge.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Wed Jan 22 13:31:14 CST 2014
Author: kmoore
Date: Wed Jan 22 13:31:12 2014
New Revision: 406217
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=406217
Log:
ConfBridge: Fix channel parameter documentation
Confbridge AMI and CLI commands for mute, unmute, and setting the
single video source can accept channel prefixes in lieu of a full
channel name, but documentation states only that it is required and is
a channel name. This corrects the documentation.
(closes issue PQ-1397)
Reported by: Steve Pitts
Modified:
branches/11/apps/app_confbridge.c
Modified: branches/11/apps/app_confbridge.c
URL: http://svnview.digium.com/svn/asterisk/branches/11/apps/app_confbridge.c?view=diff&rev=406217&r1=406216&r2=406217
==============================================================================
--- branches/11/apps/app_confbridge.c (original)
+++ branches/11/apps/app_confbridge.c Wed Jan 22 13:31:12 2014
@@ -182,7 +182,9 @@
<syntax>
<xi:include xpointer="xpointer(/docs/manager[@name='Login']/syntax/parameter[@name='ActionID'])" />
<parameter name="Conference" required="true" />
- <parameter name="Channel" required="true" />
+ <parameter name="Channel" required="true">
+ <para>If this parameter is not a complete channel name, the first channel with this prefix will be used.</para>
+ </parameter>
</syntax>
<description>
</description>
@@ -194,7 +196,9 @@
<syntax>
<xi:include xpointer="xpointer(/docs/manager[@name='Login']/syntax/parameter[@name='ActionID'])" />
<parameter name="Conference" required="true" />
- <parameter name="Channel" required="true" />
+ <parameter name="Channel" required="true">
+ <para>If this parameter is not a complete channel name, the first channel with this prefix will be used.</para>
+ </parameter>
</syntax>
<description>
</description>
@@ -264,7 +268,9 @@
<syntax>
<xi:include xpointer="xpointer(/docs/manager[@name='Login']/syntax/parameter[@name='ActionID'])" />
<parameter name="Conference" required="true" />
- <parameter name="Channel" required="true" />
+ <parameter name="Channel" required="true">
+ <para>If this parameter is not a complete channel name, the first channel with this prefix will be used.</para>
+ </parameter>
</syntax>
<description>
</description>
@@ -2421,7 +2427,10 @@
e->command = "confbridge mute";
e->usage =
"Usage: confbridge mute <conference> <channel>\n"
- " Mute a channel in a conference.\n";
+ " Mute a channel in a conference.\n"
+ " If the specified channel is a prefix,\n"
+ " the action will be taken on the first\n"
+ " matching channel.\n";
return NULL;
case CLI_GENERATE:
if (a->pos == 2) {
@@ -2448,7 +2457,10 @@
e->command = "confbridge unmute";
e->usage =
"Usage: confbridge unmute <conference> <channel>\n"
- " Unmute a channel in a conference.\n";
+ " Unmute a channel in a conference.\n"
+ " If the specified channel is a prefix,\n"
+ " the action will be taken on the first\n"
+ " matching channel.\n";
return NULL;
case CLI_GENERATE:
if (a->pos == 2) {
More information about the asterisk-commits
mailing list