[asterisk-commits] mmichelson: trunk r94463 - in /trunk: ./ apps/app_queue.c main/say.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Fri Dec 21 10:10:21 CST 2007
Author: mmichelson
Date: Fri Dec 21 10:10:21 2007
New Revision: 94463
URL: http://svn.digium.com/view/asterisk?view=rev&rev=94463
Log:
Merged revisions 94420 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4
........
r94420 | mmichelson | 2007-12-21 09:45:14 -0600 (Fri, 21 Dec 2007) | 5 lines
Fixing Portuguese syntax for saying dates and times. Also some coding guidelines cleanup.
(closes issue #11599, reported and patched by caio1982, coding guidelines cleanup by me)
........
Modified:
trunk/ (props changed)
trunk/apps/app_queue.c
trunk/main/say.c
Propchange: trunk/
------------------------------------------------------------------------------
Binary property 'branch-1.4-merged' - no diff available.
Modified: trunk/apps/app_queue.c
URL: http://svn.digium.com/view/asterisk/trunk/apps/app_queue.c?view=diff&rev=94463&r1=94462&r2=94463
==============================================================================
--- trunk/apps/app_queue.c (original)
+++ trunk/apps/app_queue.c Fri Dec 21 10:10:21 2007
@@ -2351,6 +2351,7 @@
break;
/* On "ringall" strategy we only move to the next penalty level
when *all* ringing phones are done in the current penalty level */
+ ast_log(LOG_DEBUG, "I actually hit this...\n");
ring_one(qe, outgoing, &numbusies);
/* and retry... */
}
Modified: trunk/main/say.c
URL: http://svn.digium.com/view/asterisk/trunk/main/say.c?view=diff&rev=94463&r1=94462&r2=94463
==============================================================================
--- trunk/main/say.c (original)
+++ trunk/main/say.c Fri Dec 21 10:10:21 2007
@@ -5298,7 +5298,7 @@
char sndfile[256], nextmsg[256];
if (format == NULL)
- format = "Ad 'digits/pt-de' B 'digits/pt-de' Y 'digits/at' IMp";
+ format = "Ad 'digits/pt-de' B 'digits/pt-de' Y I 'digits/pt-e' Mp";
ast_localtime(&tv, &tm, timezone);
@@ -5369,8 +5369,6 @@
}
if (!res)
res = ast_say_number(chan, (tm.tm_hour % 12), ints, lang, "f");
- if ((!res) && (format[offset] == 'I'))
- res = ast_say_date_with_format(chan, time, ints, lang, "P", timezone);
}
} else {
if (tm.tm_hour == 0) {
@@ -5442,10 +5440,9 @@
res = wait_file(chan, ints, "digits/pt-hora", lang);
if (tm.tm_hour != 1)
if (!res)
- res = wait_file(chan, ints, "digits/pt-sss", lang); } else {
- res = wait_file(chan,ints,"digits/pt-e",lang);
- if (!res)
- res = ast_say_number(chan, tm.tm_min, ints, lang, (char *) NULL);
+ res = wait_file(chan, ints, "digits/pt-sss", lang);
+ } else {
+ res = ast_say_number(chan, tm.tm_min, ints, lang, (char *) NULL);
}
}
break;
@@ -5637,7 +5634,7 @@
res = wait_file(chan,ints,nextmsg,lang);
}
}
- if(!res) res = wait_file(chan,ints,"digits/day",lang);
+ if (!res) res = wait_file(chan,ints,"digits/day",lang);
break;
case 'Y':
/* Year */
@@ -6723,15 +6720,14 @@
/* 100 < num < 200 */
snprintf(fn, sizeof(fn), "digits/hundred-100");
num %= 100;
- }else if (num < 1000) {
+ } else if (num < 1000) {
/* 200 < num < 1000 */
snprintf(fn, sizeof(fn), "digits/hundred-%d", (num/100)*100);
num %= 100;
- }else if (num < 2000){
+ } else if (num < 2000){
snprintf(fn, sizeof(fn), "digits/xilia");
num %= 1000;
- }
- else {
+ } else {
/* num > 1000 */
if (num < 1000000) {
res = ast_say_number_full_gr(chan, (num / 1000), ints, chan->language, audiofd, ctrlfd);
@@ -7274,7 +7270,7 @@
ast_free(new_string);
remainder = s + 1; /* position just after the found space char. */
- while(*remainder == ' ') /* skip multiple spaces */
+ while (*remainder == ' ') /* skip multiple spaces */
remainder++;
}
More information about the asterisk-commits
mailing list