[asterisk-commits] kmoore: branch 12 r406223 - in /branches/12: ./ apps/app_confbridge.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Wed Jan 22 13:34:18 CST 2014
Author: kmoore
Date: Wed Jan 22 13:34:15 2014
New Revision: 406223
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=406223
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
........
Merged revisions 406217 from http://svn.asterisk.org/svn/asterisk/branches/11
Modified:
branches/12/ (props changed)
branches/12/apps/app_confbridge.c
Propchange: branches/12/
------------------------------------------------------------------------------
Binary property 'branch-11-merged' - no diff available.
Modified: branches/12/apps/app_confbridge.c
URL: http://svnview.digium.com/svn/asterisk/branches/12/apps/app_confbridge.c?view=diff&rev=406223&r1=406222&r2=406223
==============================================================================
--- branches/12/apps/app_confbridge.c (original)
+++ branches/12/apps/app_confbridge.c Wed Jan 22 13:34:15 2014
@@ -194,7 +194,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>
@@ -206,7 +208,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>
@@ -276,7 +280,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>
@@ -2445,7 +2451,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) {
@@ -2472,7 +2481,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