mirror of
https://github.com/asterisk/asterisk.git
synced 2025-12-19 04:59:04 +00:00
Compare commits
5 Commits
1.2.7-nets
...
1.2.7.1-ne
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
1000a2d07a | ||
|
|
02f59b431b | ||
|
|
63566eac42 | ||
|
|
87dfbd848e | ||
|
|
b64b6ef1f7 |
2
CREDITS
2
CREDITS
@@ -87,7 +87,7 @@ Leif Madsen, Jared Smith and Jim van Meggelen - the Asterisk book
|
|||||||
available under a Creative Commons License at http://www.asteriskdocs.org
|
available under a Creative Commons License at http://www.asteriskdocs.org
|
||||||
|
|
||||||
=== HOLD MUSIC ===
|
=== HOLD MUSIC ===
|
||||||
Music provided by www.opsound.org
|
Music provided by www.freeplaymusic.com
|
||||||
|
|
||||||
=== OTHER SOURCE CODE IN ASTERISK ===
|
=== OTHER SOURCE CODE IN ASTERISK ===
|
||||||
|
|
||||||
|
|||||||
15
ChangeLog
15
ChangeLog
@@ -1,3 +1,18 @@
|
|||||||
|
2006-04-13 Kevin P. Fleming <kpfleming@digium.com>
|
||||||
|
|
||||||
|
* Asterisk 1.2.7.1 released
|
||||||
|
|
||||||
|
2006-04-13 17:40 +0000 [r19812] Kevin P. Fleming <kpfleming@digium.com>
|
||||||
|
|
||||||
|
* apps/app_page.c: oops... let's not set a variable and then
|
||||||
|
immediately overwrite it while assuming its old value will
|
||||||
|
magically return
|
||||||
|
|
||||||
|
2006-04-13 15:56 +0000 [r19768] Tilghman Lesher <tilghman@mail.jeffandtilghman.com>
|
||||||
|
|
||||||
|
* pbx.c: Bug 6957 - variable names beginning with CALLERID weren't
|
||||||
|
substituted correctly
|
||||||
|
|
||||||
2006-04-12 Kevin P. Fleming <kpfleming@digium.com>
|
2006-04-12 Kevin P. Fleming <kpfleming@digium.com>
|
||||||
|
|
||||||
* Asterisk 1.2.7 released
|
* Asterisk 1.2.7 released
|
||||||
|
|||||||
8
README.fpm
Normal file
8
README.fpm
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
About Hold Music
|
||||||
|
================
|
||||||
|
Digium has licensed the music included with
|
||||||
|
the Asterisk distribution From FreePlayMusic
|
||||||
|
for use and distribution with Asterisk. It
|
||||||
|
is licensed ONLY for use as hold music within
|
||||||
|
an Asterisk based PBX.
|
||||||
|
|
||||||
@@ -1,22 +0,0 @@
|
|||||||
About Hold Music
|
|
||||||
================
|
|
||||||
These files were obtained from http://opsound.org, where the authors placed them
|
|
||||||
under the Creative Commons Attribution-Share Alike 2.5 license, a copy of which
|
|
||||||
may be found at http://creativecommons.org.
|
|
||||||
|
|
||||||
Credits
|
|
||||||
================
|
|
||||||
macroform-cold_day - Paul Shuler (Macroform)
|
|
||||||
paulshuler@gmail.com - http://macroform.bandcamp.com/
|
|
||||||
|
|
||||||
macroform-robot_dity - Paul Shuler (Macroform)
|
|
||||||
paulshuler@gmail.com - http://macroform.bandcamp.com/
|
|
||||||
|
|
||||||
macroform-the_simplicity - Paul Shuler (Macroform)
|
|
||||||
paulshuler@gmail.com - http://macroform.bandcamp.com/
|
|
||||||
|
|
||||||
manolo_camp-morning_coffee - Manolo Camp
|
|
||||||
beatbastard@gmx.net - http://ccmixter.org/people/ManoloCamp
|
|
||||||
|
|
||||||
reno_project-system - Reno Project
|
|
||||||
renoproject@hotmail.com - http://www.jamendo.com/en/album/23661
|
|
||||||
@@ -171,16 +171,16 @@ static int page_exec(struct ast_channel *chan, void *data)
|
|||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
ast_copy_string(originator, chan->name, sizeof(originator));
|
||||||
|
if ((tmp = strchr(originator, '-')))
|
||||||
|
*tmp = '\0';
|
||||||
|
|
||||||
tmp = strsep(&options, "|");
|
tmp = strsep(&options, "|");
|
||||||
if (options)
|
if (options)
|
||||||
ast_app_parse_options(page_opts, &flags, NULL, options);
|
ast_app_parse_options(page_opts, &flags, NULL, options);
|
||||||
|
|
||||||
snprintf(meetmeopts, sizeof(meetmeopts), "%ud|%sqxdw", confid, ast_test_flag(&flags, PAGE_DUPLEX) ? "" : "m");
|
snprintf(meetmeopts, sizeof(meetmeopts), "%ud|%sqxdw", confid, ast_test_flag(&flags, PAGE_DUPLEX) ? "" : "m");
|
||||||
|
|
||||||
ast_copy_string(originator, chan->name, sizeof(originator));
|
|
||||||
if ((tmp = strchr(originator, '-')))
|
|
||||||
*tmp = '\0';
|
|
||||||
|
|
||||||
while ((tech = strsep(&tmp, "&"))) {
|
while ((tech = strsep(&tmp, "&"))) {
|
||||||
/* don't call the originating device */
|
/* don't call the originating device */
|
||||||
if (!strcasecmp(tech, originator))
|
if (!strcasecmp(tech, originator))
|
||||||
|
|||||||
3
pbx.c
3
pbx.c
@@ -1023,7 +1023,8 @@ void pbx_retrieve_variable(struct ast_channel *c, const char *var, char **ret, c
|
|||||||
*ret = workspace;
|
*ret = workspace;
|
||||||
} else
|
} else
|
||||||
*ret = NULL;
|
*ret = NULL;
|
||||||
}
|
} else
|
||||||
|
goto icky;
|
||||||
} else if (!strcmp(var + 6, "ANI")) {
|
} else if (!strcmp(var + 6, "ANI")) {
|
||||||
/* CALLERANI */
|
/* CALLERANI */
|
||||||
if (c->cid.cid_ani) {
|
if (c->cid.cid_ani) {
|
||||||
|
|||||||
BIN
sounds/fpm-calm-river.mp3
Normal file
BIN
sounds/fpm-calm-river.mp3
Normal file
Binary file not shown.
BIN
sounds/fpm-sunshine.mp3
Normal file
BIN
sounds/fpm-sunshine.mp3
Normal file
Binary file not shown.
BIN
sounds/fpm-world-mix.mp3
Normal file
BIN
sounds/fpm-world-mix.mp3
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Reference in New Issue
Block a user