[asterisk-commits] oej: trunk r89606 - in /trunk: CHANGES UPGRADE.txt apps/app_meetme.c main/cli.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Mon Nov 26 13:24:24 CST 2007
Author: oej
Date: Mon Nov 26 13:24:23 2007
New Revision: 89606
URL: http://svn.digium.com/view/asterisk?view=rev&rev=89606
Log:
- Mark "concise" as deprecated
- Restructure other changes to UPGRADE.txt and CHANGES
We're still looking for scripts that replace
asterisk -rx "show shannels concise"
by using the manager interface, but still produces the same output.
Anyone?
Modified:
trunk/CHANGES
trunk/UPGRADE.txt
trunk/apps/app_meetme.c
trunk/main/cli.c
Modified: trunk/CHANGES
URL: http://svn.digium.com/view/asterisk/trunk/CHANGES?view=diff&rev=89606&r1=89605&r2=89606
==============================================================================
--- trunk/CHANGES (original)
+++ trunk/CHANGES Mon Nov 26 13:24:23 2007
@@ -92,9 +92,6 @@
* The new default is that 100 Trying is not sent on REGISTER attempts as the RFC specifically
states it is not needed. For phones, however, that do require it the "registertrying" option
has been added so it can be enabled.
- * The "call-limit" option is marked as deprecated. It still works in this version of
- Asterisk, but will be removed in the following version. Please use the groupcount functions
- in the dialplan to enforce call limits.
* A new option called "callcounter" (global/peer/user level) enables call counters needed
for better status reports needed for queues and SIP subscriptions. (Call-Limit was previously
used to enable this functionality).
Modified: trunk/UPGRADE.txt
URL: http://svn.digium.com/view/asterisk/trunk/UPGRADE.txt?view=diff&rev=89606&r1=89605&r2=89606
==============================================================================
--- trunk/UPGRADE.txt (original)
+++ trunk/UPGRADE.txt Mon Nov 26 13:24:23 2007
@@ -46,6 +46,9 @@
* The logger.conf option 'rotatetimestamp' has been deprecated in favor of
'rotatestrategy'. This new option supports a 'rotate' strategy that more
closely mimics the system logger in terms of file rotation.
+
+* The concise versions of various CLI commands are now deprecated. We recommend
+ using the manager interface (AMI) for application integration with Asterisk.
Voicemail:
@@ -106,14 +109,18 @@
Channel Drivers:
-* chan_sip.c: a small upgrade to support the "Record" button on the SNOM360,
+* SIP: a small upgrade to support the "Record" button on the SNOM360,
which sends a sip INFO message with a "Record: on" or "Record: off"
- header. If asterisk is set up (via features.conf) to accept "One Touch Monitor"
+ header. If Asterisk is set up (via features.conf) to accept "One Touch Monitor"
requests (by default, via '*1'), then the user-configured dialpad sequence
is generated, and recording can be started and stopped via this button. The
file names and formats are all controlled via the normal mechanisms. If the
user has not configured the automon feature, the normal "415 Unsupported media type"
is returned, and nothing is done.
+* SIP: The "call-limit" option is marked as deprecated. It still works in this version of
+ Asterisk, but will be removed in the following version. Please use the groupcount functions
+ in the dialplan to enforce call limits. The "limitonpeer" configuration option is
+ now renamed to "counteronpeer".
* chan_local.c: the comma delimiter inside the channel name has been changed to a
semicolon, in order to make the Local channel driver compatible with the comma
Modified: trunk/apps/app_meetme.c
URL: http://svn.digium.com/view/asterisk/trunk/apps/app_meetme.c?view=diff&rev=89606&r1=89605&r2=89606
==============================================================================
--- trunk/apps/app_meetme.c (original)
+++ trunk/apps/app_meetme.c Mon Nov 26 13:24:23 2007
@@ -963,7 +963,7 @@
case CLI_INIT:
e->command = "meetme";
e->usage =
- "Usage: meetme concise|(un)lock|(un)mute|kick|list [concise] <confno> <usernumber>\n"
+ "Usage: meetme (un)lock|(un)mute|kick|list [concise] <confno> <usernumber>\n"
" Executes a command for the conference or on a conferee\n";
return NULL;
case CLI_GENERATE:
Modified: trunk/main/cli.c
URL: http://svn.digium.com/view/asterisk/trunk/main/cli.c?view=diff&rev=89606&r1=89605&r2=89606
==============================================================================
--- trunk/main/cli.c (original)
+++ trunk/main/cli.c Mon Nov 26 13:24:23 2007
@@ -592,7 +592,9 @@
" 'concise' is specified, the format is abridged and in a more easily\n"
" machine parsable format. If 'verbose' is specified, the output includes\n"
" more and longer fields. If 'count' is specified only the channel and call\n"
- " count is output.\n";
+ " count is output.\n"
+ " The 'concise' option is deprecated and will be removed from future versions\n"
+ " of Asterisk.\n";
return NULL;
case CLI_GENERATE:
More information about the asterisk-commits
mailing list