[svn-commits] branch bweschke/gain_functions r24383 - in /team/bweschke/gain_functions: ./ ...

svn-commits at lists.digium.com svn-commits at lists.digium.com
Wed May 3 05:49:10 MST 2006


Author: bweschke
Date: Wed May  3 07:49:10 2006
New Revision: 24383

URL: http://svn.digium.com/view/asterisk?rev=24383&view=rev
Log:
 Property reset


Added:
    team/bweschke/gain_functions/funcs/func_realtime.c   (props changed)
      - copied unchanged from r24380, trunk/funcs/func_realtime.c
Modified:
    team/bweschke/gain_functions/   (props changed)
    team/bweschke/gain_functions/UPGRADE.txt
    team/bweschke/gain_functions/apps/app_realtime.c
    team/bweschke/gain_functions/loader.c

Propchange: team/bweschke/gain_functions/
------------------------------------------------------------------------------
    automerge = *

Propchange: team/bweschke/gain_functions/
------------------------------------------------------------------------------
--- svnmerge-integrated (original)
+++ svnmerge-integrated Wed May  3 07:49:10 2006
@@ -1,1 +1,1 @@
-/trunk:1-24345
+/trunk:1-24381

Modified: team/bweschke/gain_functions/UPGRADE.txt
URL: http://svn.digium.com/view/asterisk/team/bweschke/gain_functions/UPGRADE.txt?rev=24383&r1=24382&r2=24383&view=diff
==============================================================================
--- team/bweschke/gain_functions/UPGRADE.txt (original)
+++ team/bweschke/gain_functions/UPGRADE.txt Wed May  3 07:49:10 2006
@@ -115,6 +115,11 @@
 * The ENUMLOOKUP() function with the 'c' option (for counting the number of records),
   but the lookup fails to match any records, the returned value will now be "0" instead of blank.
 
+* The REALTIME() function is now available in version 1.4 and app_realtime has
+  been deprecated in favor of the new function. app_realtime will be removed
+  completely with the version 1.6 release so please take the time between
+  releases to make any necessary changes
+
 The IAX2 channel:
 
 * The "mailboxdetail" option has been deprecated.  Previously, if this option

Modified: team/bweschke/gain_functions/apps/app_realtime.c
URL: http://svn.digium.com/view/asterisk/team/bweschke/gain_functions/apps/app_realtime.c?rev=24383&r1=24382&r2=24383&view=diff
==============================================================================
--- team/bweschke/gain_functions/apps/app_realtime.c (original)
+++ team/bweschke/gain_functions/apps/app_realtime.c Wed May  3 07:49:10 2006
@@ -140,6 +140,8 @@
 	int res = 0, count = 0;
 	char countc[13];
 
+        ast_log(LOG_WARNING, "The RealTimeUpdate application has been deprecated in favor of the REALTIME dialplan function.\n");
+
 	if (ast_strlen_zero(data)) {
 		ast_log(LOG_ERROR,"Invalid input: usage %s\n",UUSAGE);
 		return -1;
@@ -185,6 +187,8 @@
 	char countc[13];
 	size_t len;
 		
+        ast_log(LOG_WARNING, "The RealTime application has been deprecated in favor of the REALTIME dialplan function.\n");
+
 	if (ast_strlen_zero(data)) {
 		ast_log(LOG_ERROR,"Invalid input: usage %s\n",USAGE);
 		return -1;

Propchange: team/bweschke/gain_functions/funcs/func_realtime.c
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: team/bweschke/gain_functions/funcs/func_realtime.c
------------------------------------------------------------------------------
    svn:keywords = Author Date ld Revision

Propchange: team/bweschke/gain_functions/funcs/func_realtime.c
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Modified: team/bweschke/gain_functions/loader.c
URL: http://svn.digium.com/view/asterisk/team/bweschke/gain_functions/loader.c?rev=24383&r1=24382&r2=24383&view=diff
==============================================================================
--- team/bweschke/gain_functions/loader.c (original)
+++ team/bweschke/gain_functions/loader.c Wed May  3 07:49:10 2006
@@ -728,7 +728,7 @@
 		cur->cb = m;	/* use the mod_data from the module itself */
 		errors = check_exported(cur);
 	} else {
-		ast_log(LOG_WARNING, "misstng mod_data for %s\n",
+		ast_log(LOG_WARNING, "missing mod_data for %s\n",
 			resource_name);
 		errors++;
 	}



More information about the svn-commits mailing list