[svn-commits] branch murf/AEL-trunk-fixesonly r33063 - in
/team/murf/AEL-trunk-fixesonly: ....
svn-commits at lists.digium.com
svn-commits at lists.digium.com
Thu Jun 8 10:24:16 MST 2006
Author: murf
Date: Thu Jun 8 12:24:13 2006
New Revision: 33063
URL: http://svn.digium.com/view/asterisk?rev=33063&view=rev
Log:
Merged revisions 31776,31813-31814,31840-31843,31861,31868-31872,31895,31922,31953,31977,31979,32003,32017-32018,32040,32046,32063-32065,32087-32089,32111,32115,32137-32138,32161,32183,32185,32207,32229-32230,32252-32253,32255,32281,32302,32304-32306,32327,32349,32372,32401,32407,32434,32455-32456,32478,32499,32524,32545,32567,32596-32597,32604,32606,32633-32634,32654,32673-32675,32694-32703,32720,32740,32759,32779,32798,32817,32819,32845-32846,32860,32864,32867-32868,32878,32884-32886,32901,32916-32919,32935,32953,32970-32971,32990-32992,33011,33035 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk
................
r31776 | russell | 2006-06-03 11:04:51 -0600 (Sat, 03 Jun 2006) | 3 lines
when using moh files mode, don't look for a file past the number of files
that have been loaded, or worse, past the size of the files array
................
r31813 | rizzo | 2006-06-03 14:34:26 -0600 (Sat, 03 Jun 2006) | 5 lines
Replace '\"' with '"'.
The escape is unnecessary, and makes a bad example
to people reading the code.
................
r31814 | rizzo | 2006-06-03 14:40:54 -0600 (Sat, 03 Jun 2006) | 3 lines
remove duplicate code
................
r31840 | bweschke | 2006-06-03 16:08:25 -0600 (Sat, 03 Jun 2006) | 3 lines
Make sure DEBUG is really cranked up before we decide to flood the logs with messages about Internal timing when a channel has to make a decision about generating internal timing (eg - MOH)
................
r31841 | rizzo | 2006-06-03 16:18:41 -0600 (Sat, 03 Jun 2006) | 4 lines
mark XXX a bug in the code. oej/kevin, any idea what you want
to use here ?
................
r31842 | rizzo | 2006-06-03 16:29:37 -0600 (Sat, 03 Jun 2006) | 3 lines
simplify logic in a small block of code
................
r31843 | rizzo | 2006-06-03 16:56:45 -0600 (Sat, 03 Jun 2006) | 6 lines
mark XXX a buggy section of code and implement a probable
replacement (leave the original in case my code does not
do what the function was meant to do).
oej, please check this...
................
r31861 | rizzo | 2006-06-03 17:03:29 -0600 (Sat, 03 Jun 2006) | 4 lines
use ast_skip_blanks() where appropriate, and use standard
C jargoon *foo++ = '\0'; instead of two separate statements.
................
r31868 | rizzo | 2006-06-03 17:17:54 -0600 (Sat, 03 Jun 2006) | 4 lines
some code simplifications using S_OR() to remove some if blocks
and duplicate code.
................
r31869 | rizzo | 2006-06-03 17:23:24 -0600 (Sat, 03 Jun 2006) | 3 lines
fix indentation of a block
................
r31870 | rizzo | 2006-06-03 17:34:01 -0600 (Sat, 03 Jun 2006) | 5 lines
mark XXX some places where there is a return right before
a large "else" block, which is suitable for a reduction of
the nesting depth.
................
r31871 | rizzo | 2006-06-03 17:46:23 -0600 (Sat, 03 Jun 2006) | 3 lines
small simplification in assignments, and fix a typo in a comment.
................
r31872 | rizzo | 2006-06-03 17:58:32 -0600 (Sat, 03 Jun 2006) | 6 lines
remove some duplicated code;
fix indentation on one line;
mark XXX some unreachable code;
mark XXX another place where we could reduce the nesting depth.
................
r31895 | rizzo | 2006-06-03 18:09:13 -0600 (Sat, 03 Jun 2006) | 3 lines
add a bit of comment on what build_route does,
plus minor code simplification.
................
r31922 | kpfleming | 2006-06-03 21:45:54 -0600 (Sat, 03 Jun 2006) | 10 lines
Merged revisions 31921 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.2
........
r31921 | kpfleming | 2006-06-03 22:43:35 -0500 (Sat, 03 Jun 2006) | 2 lines
return bridge exit logic to what it was before i broke it :-(
........
................
r31953 | russell | 2006-06-04 00:21:43 -0600 (Sun, 04 Jun 2006) | 10 lines
Use a dynamically sized array to store the list of files for moh "files" mode
- Instead of always allocating 64KB of memory for every MOH class, this has
been reduced to only a single pointer per class, with more memory only
allocatted when using "files" mode, as needed
- Instead of imposing a length limit on the full filename, including full
path, of 127 characters, use PATH_MAX, the maximum length that the system
can handle
- There is no longer a limit on the number of files than can be used for a
single MOH class using "files" mode
................
r31977 | oej | 2006-06-04 02:15:41 -0600 (Sun, 04 Jun 2006) | 2 lines
Doxygen formatting fixes
................
r31979 | oej | 2006-06-04 02:57:34 -0600 (Sun, 04 Jun 2006) | 2 lines
Doxygen improvements
................
r32003 | oej | 2006-06-04 05:00:12 -0600 (Sun, 04 Jun 2006) | 2 lines
Add formats in text form to dumpchan()
................
r32017 | oej | 2006-06-04 05:09:14 -0600 (Sun, 04 Jun 2006) | 3 lines
- Typo in chan_sip (: missing)
- Only print formats once in dumpchan()
................
r32018 | oej | 2006-06-04 05:47:51 -0600 (Sun, 04 Jun 2006) | 2 lines
Make tonezone writeable in CHANNEL() (from my old func_tonezone.c)
................
r32040 | mogorman | 2006-06-04 10:56:16 -0600 (Sun, 04 Jun 2006) | 2 lines
solves some issues with jabberstatus app
................
r32046 | mogorman | 2006-06-04 11:00:59 -0600 (Sun, 04 Jun 2006) | 2 lines
oops
................
r32063 | mogorman | 2006-06-04 11:07:09 -0600 (Sun, 04 Jun 2006) | 2 lines
oops fixing example config
................
r32064 | mogorman | 2006-06-04 11:08:18 -0600 (Sun, 04 Jun 2006) | 2 lines
oops my config file was out of date not the sample
................
r32065 | oej | 2006-06-04 11:35:30 -0600 (Sun, 04 Jun 2006) | 2 lines
Show max bitrate in "sip show user" and "sip show channel"
................
r32087 | oej | 2006-06-04 12:35:29 -0600 (Sun, 04 Jun 2006) | 3 lines
- Doxygen fix
- Debug message change
................
r32088 | oej | 2006-06-04 12:55:16 -0600 (Sun, 04 Jun 2006) | 3 lines
- 5 is the highest used debug level, so let's stay there
- Change formatting of RTP debug to align better
................
r32089 | oej | 2006-06-04 12:58:27 -0600 (Sun, 04 Jun 2006) | 2 lines
Fix potential bug. THanks luigi!
................
r32111 | oej | 2006-06-04 13:18:24 -0600 (Sun, 04 Jun 2006) | 2 lines
Respond to some of Luigis questions...
................
r32115 | oej | 2006-06-04 13:38:05 -0600 (Sun, 04 Jun 2006) | 2 lines
- Add information about transcoding to "show channel"
................
r32137 | oej | 2006-06-04 15:01:13 -0600 (Sun, 04 Jun 2006) | 3 lines
- Fix more problems in transfer code (thanks Tholo!)
- Add debug for hangup not in UP state
................
r32138 | oej | 2006-06-04 15:13:48 -0600 (Sun, 04 Jun 2006) | 2 lines
Code simplification
................
r32161 | russell | 2006-06-04 22:51:10 -0600 (Sun, 04 Jun 2006) | 2 lines
fix a typo in the documentation of how to use string fields
................
r32183 | oej | 2006-06-05 00:23:22 -0600 (Mon, 05 Jun 2006) | 2 lines
Only override callingpres set by rpid if user/peer preference is set. (Issue #7240)
................
r32185 | oej | 2006-06-05 00:36:18 -0600 (Mon, 05 Jun 2006) | 2 lines
Do not use ':' as a separator between arguments (kept around for 1.4 for backwards compatibility)
................
r32207 | oej | 2006-06-05 01:43:40 -0600 (Mon, 05 Jun 2006) | 2 lines
Issue 7208 - Handle ; in userinfo part of URI too
................
r32229 | oej | 2006-06-05 02:06:02 -0600 (Mon, 05 Jun 2006) | 3 lines
- Add headers to e-mail with caller ID name and number to simplify automatic parsing
- Formatting fixes
................
r32230 | oej | 2006-06-05 02:39:42 -0600 (Mon, 05 Jun 2006) | 3 lines
Issue #2863 - Improved RTCP support (John Martin, Fredrik Olsson)
Thanks to everyone involved in working with this!
................
r32252 | oej | 2006-06-05 03:27:38 -0600 (Mon, 05 Jun 2006) | 3 lines
Issue #7231 - Missing indications from libtonezone (tzafrir)
- "tuttter" changed to "stutter" ;-)
................
r32253 | oej | 2006-06-05 03:31:02 -0600 (Mon, 05 Jun 2006) | 2 lines
Issue 7231 - Utility to convert libtonezone indications to indications.conf format
................
r32255 | oej | 2006-06-05 03:42:28 -0600 (Mon, 05 Jun 2006) | 2 lines
Move definition of RTP structure to rtp.h (preparing for future changes)
................
r32281 | kpfleming | 2006-06-05 08:00:13 -0600 (Mon, 05 Jun 2006) | 2 lines
it's time... only enable global priority jumping if the config file says to do so
................
r32302 | oej | 2006-06-05 09:20:09 -0600 (Mon, 05 Jun 2006) | 2 lines
Doxygen updates
................
r32304 | file | 2006-06-05 09:44:37 -0600 (Mon, 05 Jun 2006) | 2 lines
Convert chan_iax2 to use dnsmgr in order to deal with hostnames that can change their resolved IP (aka dynamic dns setups) (issue #6305 reported and fixed by ivanfm)
................
r32305 | russell | 2006-06-05 09:47:36 -0600 (Mon, 05 Jun 2006) | 2 lines
clean up various formatting issues
................
r32306 | russell | 2006-06-05 09:56:35 -0600 (Mon, 05 Jun 2006) | 2 lines
use the standard Asterisk copyright header
................
r32327 | russell | 2006-06-05 10:17:31 -0600 (Mon, 05 Jun 2006) | 3 lines
revert the changes to allow chan_iax2 to use dnsmgr for registrations.
my concerns are listed in issue #6305
................
r32349 | kpfleming | 2006-06-05 12:05:53 -0600 (Mon, 05 Jun 2006) | 2 lines
yet another massive performance and memory savings improvement
................
r32372 | kpfleming | 2006-06-05 13:16:04 -0600 (Mon, 05 Jun 2006) | 2 lines
begin adding support for new sound packages
................
r32401 | kpfleming | 2006-06-05 14:10:06 -0600 (Mon, 05 Jun 2006) | 10 lines
Merged revisions 32373 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.2
........
r32373 | kpfleming | 2006-06-05 14:53:16 -0500 (Mon, 05 Jun 2006) | 2 lines
ensure that the received number of bytes is included in all IAX2 incoming frame analysis checks (fixes a known vulnerability)
........
................
r32407 | kpfleming | 2006-06-05 14:46:27 -0600 (Mon, 05 Jun 2006) | 3 lines
use module names, not file names, in menuselect
work around XML parsing bug in menuselect for default sounds package
................
r32434 | russell | 2006-06-05 18:25:23 -0600 (Mon, 05 Jun 2006) | 4 lines
add the ability to do the same thing as "make dont-optimize" by enabling the
option in menuselect. This is very useful for developers if you want to ensure
that all of your builds are done without optimizations.
................
r32455 | russell | 2006-06-05 19:21:52 -0600 (Mon, 05 Jun 2006) | 2 lines
fix some typos in the stringfields documentation
................
r32456 | russell | 2006-06-05 19:22:47 -0600 (Mon, 05 Jun 2006) | 3 lines
- use stringfields in a bunch of the fields of the zt_pvt structure in chan_zap
- constify some arguments to functions in callerid.c / callerid.h
................
r32478 | russell | 2006-06-05 23:27:14 -0600 (Mon, 05 Jun 2006) | 4 lines
fix a channel deadlock in ast_answer
(deadlock reported by and debuged with hads on #asterisk-dev on IRC)
(probably fixes issue #7267, maybe others)
................
r32499 | bweschke | 2006-06-06 01:29:57 -0600 (Tue, 06 Jun 2006) | 3 lines
Introducing app_followme into /trunk!
................
r32524 | crichter | 2006-06-06 03:40:41 -0600 (Tue, 06 Jun 2006) | 1 line
added select before write to avoid deadlock on full buffer. added some defines for deadlock debugging. added code snippet for generating silence if we don't have data to write.
................
r32545 | russell | 2006-06-06 08:24:59 -0600 (Tue, 06 Jun 2006) | 3 lines
don't return -1 if zapata.conf is not present (part of the patch from
issue #7290, tzafrir)
................
r32567 | kpfleming | 2006-06-06 09:48:42 -0600 (Tue, 06 Jun 2006) | 10 lines
Merged revisions 32566 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.2
........
r32566 | kpfleming | 2006-06-06 10:48:00 -0500 (Tue, 06 Jun 2006) | 2 lines
clean up yesterday's security fix to not cause breakage when video mini frames are received
........
................
r32596 | tilghman | 2006-06-06 10:05:29 -0600 (Tue, 06 Jun 2006) | 10 lines
Merged revisions 32582 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.2
........
r32582 | tilghman | 2006-06-06 11:02:43 -0500 (Tue, 06 Jun 2006) | 2 lines
Bug 7268 - Callerid leaks memory on error
........
................
r32597 | oej | 2006-06-06 10:09:33 -0600 (Tue, 06 Jun 2006) | 13 lines
Merge of the "sdpcleanup" branch. Thanks to John Martin for a lot of tests
and some patches (all disclaimed).
- Don't change RTP properties if we reject a re-INVITE
- Don't add video to an outbound channel if there's no video on the inbound channel
- Don't include video in the "preferred codec" list for codec selection
- Clean up and document code that parses and adds SDP attachments
Since we do not transcode video, we can't handle video the same way as audio. This is a
bug fix patch. In future releases, we need to work on a solution for video negotiation,
not codecs but formats and framerates instead.
................
r32604 | kpfleming | 2006-06-06 10:54:52 -0600 (Tue, 06 Jun 2006) | 2 lines
fix some compiler warnings about variables used before initialization
................
r32606 | tilghman | 2006-06-06 10:59:13 -0600 (Tue, 06 Jun 2006) | 10 lines
Merged revisions 32605 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.2
........
r32605 | tilghman | 2006-06-06 11:55:23 -0500 (Tue, 06 Jun 2006) | 2 lines
Bug 7287 - A too short voicemail with ODBC_STORAGE will cause the first voicemail to be deleted erroneously
........
................
r32633 | bweschke | 2006-06-06 11:15:16 -0600 (Tue, 06 Jun 2006) | 3 lines
If the recorded file is found, don't actually start to play it.
................
r32634 | mogorman | 2006-06-06 11:25:07 -0600 (Tue, 06 Jun 2006) | 2 lines
fixed autoregister bug.
................
r32654 | mogorman | 2006-06-06 12:51:37 -0600 (Tue, 06 Jun 2006) | 3 lines
allow presence events to be handled before the
roster is received.
................
r32673 | russell | 2006-06-06 13:07:52 -0600 (Tue, 06 Jun 2006) | 2 lines
add missing include
................
r32674 | mogorman | 2006-06-06 13:18:44 -0600 (Tue, 06 Jun 2006) | 2 lines
fix a potential segfault
................
r32675 | mogorman | 2006-06-06 13:51:26 -0600 (Tue, 06 Jun 2006) | 3 lines
fixes some issues with description loggin on presence
as well as some typos.
................
r32694 | bweschke | 2006-06-06 14:04:52 -0600 (Tue, 06 Jun 2006) | 3 lines
All better now!
................
r32695 | russell | 2006-06-06 14:18:01 -0600 (Tue, 06 Jun 2006) | 2 lines
allocate an int on the stack instead of with ast_calloc
................
r32696 | bweschke | 2006-06-06 14:34:00 -0600 (Tue, 06 Jun 2006) | 3 lines
Don't leak memory.
................
r32697 | russell | 2006-06-06 14:37:51 -0600 (Tue, 06 Jun 2006) | 2 lines
move a declaration to the beginning of a block
................
r32698 | bweschke | 2006-06-06 14:39:11 -0600 (Tue, 06 Jun 2006) | 3 lines
More cleanup.
................
r32699 | russell | 2006-06-06 14:44:10 -0600 (Tue, 06 Jun 2006) | 2 lines
make a global list head static
................
r32700 | bweschke | 2006-06-06 14:44:50 -0600 (Tue, 06 Jun 2006) | 3 lines
More updates.
................
r32701 | russell | 2006-06-06 14:45:26 -0600 (Tue, 06 Jun 2006) | 2 lines
use sizeof to get the size of a buffer
................
r32702 | russell | 2006-06-06 14:47:46 -0600 (Tue, 06 Jun 2006) | 2 lines
use sizeof to determine the size of a buffer
................
r32703 | russell | 2006-06-06 14:55:17 -0600 (Tue, 06 Jun 2006) | 2 lines
move a variable declaration to the beginning of a block
................
r32720 | russell | 2006-06-06 15:03:18 -0600 (Tue, 06 Jun 2006) | 2 lines
oops.
................
r32740 | mattf | 2006-06-06 16:19:19 -0600 (Tue, 06 Jun 2006) | 2 lines
Add q.921 state information. (#7260)
................
r32759 | russell | 2006-06-06 17:22:12 -0600 (Tue, 06 Jun 2006) | 7 lines
revert my changes to convert fields of zt_pvt to use stringfields. When I did
this, I was not keeping in mind the fact that after a stringfield is overwritten
by another string, the memory used by the old string can not be recovered. I
would like to go back through these changes and make sure that stringfields are
not used for fields that are written to many times before these changes are
committed.
................
r32779 | crichter | 2006-06-07 07:01:02 -0600 (Wed, 07 Jun 2006) | 1 line
changed the clean_up_bc function to work proper again. fixed the print with the conference nr. when bridged
................
r32798 | russell | 2006-06-07 10:03:31 -0600 (Wed, 07 Jun 2006) | 4 lines
remove the need to have to re-run make after a default menuselect.makeopts
file is generated. This allows a fresh checkout of asterisk to be built
and installed with the standard "./configure && make && make install".
................
r32817 | russell | 2006-06-07 11:44:36 -0600 (Wed, 07 Jun 2006) | 3 lines
add an updated patch that adds dnsmgr support for outgoing iax2 registrations
(issue #6305, by ivanfm, with mods)
................
r32819 | russell | 2006-06-07 11:54:26 -0600 (Wed, 07 Jun 2006) | 10 lines
Merged revisions 32818 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.2
........
r32818 | russell | 2006-06-07 13:53:21 -0400 (Wed, 07 Jun 2006) | 2 lines
fix some broken code with BRIDGE_OPTIMIZATION defined (issue #7292)
........
................
r32845 | russell | 2006-06-07 12:28:29 -0600 (Wed, 07 Jun 2006) | 2 lines
remove the WITH_SMDI define
................
r32846 | kpfleming | 2006-06-07 12:54:56 -0600 (Wed, 07 Jun 2006) | 2 lines
simplify autoconfig include mechanism (make tholo happy he can use lint again :-)
................
r32860 | kpfleming | 2006-06-07 13:05:35 -0600 (Wed, 07 Jun 2006) | 3 lines
move autoconfig.h to the include/asterisk directory so it will get installed
install asterisk.h include the system's default include directory
................
r32864 | kpfleming | 2006-06-07 13:06:30 -0600 (Wed, 07 Jun 2006) | 2 lines
put the proper filename into the ignore property
................
r32867 | russell | 2006-06-07 13:42:37 -0600 (Wed, 07 Jun 2006) | 4 lines
fix an incorrect usage of scanf, where it should be using sscanf, instead,
which was causing asterisk to hang when loading this module
(reported by blitzrage on IRC)
................
r32868 | russell | 2006-06-07 13:53:03 -0600 (Wed, 07 Jun 2006) | 2 lines
fix the build with astmm enabled
................
r32878 | russell | 2006-06-07 14:02:07 -0600 (Wed, 07 Jun 2006) | 3 lines
simplify the loop that iterates through the categories in followme.conf and
don't try to read the general section as a followme profile
................
r32884 | russell | 2006-06-07 14:08:29 -0600 (Wed, 07 Jun 2006) | 2 lines
fix a typo in an option name in config parsing
................
r32885 | kpfleming | 2006-06-07 14:19:40 -0600 (Wed, 07 Jun 2006) | 2 lines
prepare for using sound files from out of the source tree
................
r32886 | kpfleming | 2006-06-07 14:54:30 -0600 (Wed, 07 Jun 2006) | 2 lines
woo-hoo, now it knows how to download the sound packages... doesn't install them yet though
................
r32901 | kpfleming | 2006-06-07 15:05:05 -0600 (Wed, 07 Jun 2006) | 4 lines
don't force the sounds to download... only when needed
fix a few buglets i caused in menuselect
remove downloaded sounds on 'dist-clean'
................
r32916 | kpfleming | 2006-06-07 16:03:02 -0600 (Wed, 07 Jun 2006) | 2 lines
ok, now it knows how to auto-download and install
................
r32917 | kpfleming | 2006-06-07 16:37:31 -0600 (Wed, 07 Jun 2006) | 5 lines
moh files will now be distributed in native format, not mp3, so...
update sounds/Makefile to download/unpack the proper files
remove all evidence of mpg123 from the main Makefile
change the sample musiconhold.conf file to use native mode instead of mp3
................
r32918 | mogorman | 2006-06-07 16:43:20 -0600 (Wed, 07 Jun 2006) | 4 lines
solves some bugs with memory allocation, and adds
a message stack.
................
r32919 | kpfleming | 2006-06-07 16:55:46 -0600 (Wed, 07 Jun 2006) | 2 lines
ok, new sounds/moh handling stuff should be done... bring on the bug reports!
................
r32935 | russell | 2006-06-07 17:09:41 -0600 (Wed, 07 Jun 2006) | 3 lines
move the common wget arguments to a variable and remove --no-verbose so
users will see download progress
................
r32953 | markster | 2006-06-07 23:24:50 -0600 (Wed, 07 Jun 2006) | 2 lines
Cleanup formatting a little...
................
r32970 | oej | 2006-06-08 01:26:05 -0600 (Thu, 08 Jun 2006) | 2 lines
Enable doxygen
................
r32971 | oej | 2006-06-08 01:29:46 -0600 (Thu, 08 Jun 2006) | 2 lines
Doxygen formatting
................
r32990 | oej | 2006-06-08 02:10:58 -0600 (Thu, 08 Jun 2006) | 2 lines
Doxygen update
................
r32991 | oej | 2006-06-08 02:13:32 -0600 (Thu, 08 Jun 2006) | 2 lines
Add video.txt to doxygen
................
r32992 | oej | 2006-06-08 02:15:43 -0600 (Thu, 08 Jun 2006) | 2 lines
Update doxygen for video formats
................
r33011 | crichter | 2006-06-08 03:51:13 -0600 (Thu, 08 Jun 2006) | 1 line
Fixed detection of dtmfs with bridged channels.
................
r33035 | kpfleming | 2006-06-08 10:36:34 -0600 (Thu, 08 Jun 2006) | 2 lines
try to get keyword substitution working for this file
................
Added:
team/murf/AEL-trunk-fixesonly/apps/app_followme.c (props changed)
- copied unchanged from r33035, trunk/apps/app_followme.c
team/murf/AEL-trunk-fixesonly/configs/followme.conf.sample (props changed)
- copied unchanged from r33035, trunk/configs/followme.conf.sample
team/murf/AEL-trunk-fixesonly/contrib/utils/zones2indications.c (props changed)
- copied unchanged from r33035, trunk/contrib/utils/zones2indications.c
team/murf/AEL-trunk-fixesonly/include/asterisk/autoconfig.h.in (props changed)
- copied unchanged from r33035, trunk/include/asterisk/autoconfig.h.in
team/murf/AEL-trunk-fixesonly/sounds/Makefile (props changed)
- copied unchanged from r33035, trunk/sounds/Makefile
team/murf/AEL-trunk-fixesonly/sounds/sounds.xml (props changed)
- copied unchanged from r33035, trunk/sounds/sounds.xml
Removed:
team/murf/AEL-trunk-fixesonly/include/autoconfig.h.in
team/murf/AEL-trunk-fixesonly/sounds/agent-alreadyon.gsm
team/murf/AEL-trunk-fixesonly/sounds/agent-incorrect.gsm
team/murf/AEL-trunk-fixesonly/sounds/agent-loggedoff.gsm
team/murf/AEL-trunk-fixesonly/sounds/agent-loginok.gsm
team/murf/AEL-trunk-fixesonly/sounds/agent-newlocation.gsm
team/murf/AEL-trunk-fixesonly/sounds/agent-pass.gsm
team/murf/AEL-trunk-fixesonly/sounds/agent-user.gsm
team/murf/AEL-trunk-fixesonly/sounds/auth-incorrect.gsm
team/murf/AEL-trunk-fixesonly/sounds/auth-thankyou.gsm
team/murf/AEL-trunk-fixesonly/sounds/beep.gsm
team/murf/AEL-trunk-fixesonly/sounds/beeperr.gsm
team/murf/AEL-trunk-fixesonly/sounds/conf-adminmenu.gsm
team/murf/AEL-trunk-fixesonly/sounds/conf-enteringno.gsm
team/murf/AEL-trunk-fixesonly/sounds/conf-errormenu.gsm
team/murf/AEL-trunk-fixesonly/sounds/conf-getchannel.gsm
team/murf/AEL-trunk-fixesonly/sounds/conf-getconfno.gsm
team/murf/AEL-trunk-fixesonly/sounds/conf-getpin.gsm
team/murf/AEL-trunk-fixesonly/sounds/conf-hasjoin.gsm
team/murf/AEL-trunk-fixesonly/sounds/conf-hasleft.gsm
team/murf/AEL-trunk-fixesonly/sounds/conf-invalid.gsm
team/murf/AEL-trunk-fixesonly/sounds/conf-invalidpin.gsm
team/murf/AEL-trunk-fixesonly/sounds/conf-kicked.gsm
team/murf/AEL-trunk-fixesonly/sounds/conf-leaderhasleft.gsm
team/murf/AEL-trunk-fixesonly/sounds/conf-locked.gsm
team/murf/AEL-trunk-fixesonly/sounds/conf-lockednow.gsm
team/murf/AEL-trunk-fixesonly/sounds/conf-muted.gsm
team/murf/AEL-trunk-fixesonly/sounds/conf-noempty.gsm
team/murf/AEL-trunk-fixesonly/sounds/conf-onlyone.gsm
team/murf/AEL-trunk-fixesonly/sounds/conf-onlyperson.gsm
team/murf/AEL-trunk-fixesonly/sounds/conf-otherinparty.gsm
team/murf/AEL-trunk-fixesonly/sounds/conf-placeintoconf.gsm
team/murf/AEL-trunk-fixesonly/sounds/conf-thereare.gsm
team/murf/AEL-trunk-fixesonly/sounds/conf-unlockednow.gsm
team/murf/AEL-trunk-fixesonly/sounds/conf-unmuted.gsm
team/murf/AEL-trunk-fixesonly/sounds/conf-usermenu.gsm
team/murf/AEL-trunk-fixesonly/sounds/conf-userswilljoin.gsm
team/murf/AEL-trunk-fixesonly/sounds/conf-userwilljoin.gsm
team/murf/AEL-trunk-fixesonly/sounds/conf-waitforleader.gsm
team/murf/AEL-trunk-fixesonly/sounds/demo-abouttotry.gsm
team/murf/AEL-trunk-fixesonly/sounds/demo-congrats.gsm
team/murf/AEL-trunk-fixesonly/sounds/demo-echodone.gsm
team/murf/AEL-trunk-fixesonly/sounds/demo-echotest.gsm
team/murf/AEL-trunk-fixesonly/sounds/demo-enterkeywords.gsm
team/murf/AEL-trunk-fixesonly/sounds/demo-instruct.gsm
team/murf/AEL-trunk-fixesonly/sounds/demo-moreinfo.gsm
team/murf/AEL-trunk-fixesonly/sounds/demo-nogo.gsm
team/murf/AEL-trunk-fixesonly/sounds/demo-nomatch.gsm
team/murf/AEL-trunk-fixesonly/sounds/demo-thanks.gsm
team/murf/AEL-trunk-fixesonly/sounds/dictate/
team/murf/AEL-trunk-fixesonly/sounds/digits/
team/murf/AEL-trunk-fixesonly/sounds/dir-instr.gsm
team/murf/AEL-trunk-fixesonly/sounds/dir-intro-fn.gsm
team/murf/AEL-trunk-fixesonly/sounds/dir-intro.gsm
team/murf/AEL-trunk-fixesonly/sounds/dir-nomatch.gsm
team/murf/AEL-trunk-fixesonly/sounds/dir-nomore.gsm
team/murf/AEL-trunk-fixesonly/sounds/fpm-calm-river.mp3
team/murf/AEL-trunk-fixesonly/sounds/fpm-sunshine.mp3
team/murf/AEL-trunk-fixesonly/sounds/fpm-world-mix.mp3
team/murf/AEL-trunk-fixesonly/sounds/hello-world.gsm
team/murf/AEL-trunk-fixesonly/sounds/hours.gsm
team/murf/AEL-trunk-fixesonly/sounds/invalid.gsm
team/murf/AEL-trunk-fixesonly/sounds/letters/
team/murf/AEL-trunk-fixesonly/sounds/minutes.gsm
team/murf/AEL-trunk-fixesonly/sounds/pbx-invalid.gsm
team/murf/AEL-trunk-fixesonly/sounds/pbx-invalidpark.gsm
team/murf/AEL-trunk-fixesonly/sounds/pbx-transfer.gsm
team/murf/AEL-trunk-fixesonly/sounds/phonetic/
team/murf/AEL-trunk-fixesonly/sounds/priv-callee-options.gsm
team/murf/AEL-trunk-fixesonly/sounds/priv-callpending.gsm
team/murf/AEL-trunk-fixesonly/sounds/priv-introsaved.gsm
team/murf/AEL-trunk-fixesonly/sounds/priv-recordintro.gsm
team/murf/AEL-trunk-fixesonly/sounds/privacy-incorrect.gsm
team/murf/AEL-trunk-fixesonly/sounds/privacy-prompt.gsm
team/murf/AEL-trunk-fixesonly/sounds/privacy-thankyou.gsm
team/murf/AEL-trunk-fixesonly/sounds/privacy-unident.gsm
team/murf/AEL-trunk-fixesonly/sounds/queue-callswaiting.gsm
team/murf/AEL-trunk-fixesonly/sounds/queue-holdtime.gsm
team/murf/AEL-trunk-fixesonly/sounds/queue-less-than.gsm
team/murf/AEL-trunk-fixesonly/sounds/queue-minutes.gsm
team/murf/AEL-trunk-fixesonly/sounds/queue-periodic-announce.gsm
team/murf/AEL-trunk-fixesonly/sounds/queue-reporthold.gsm
team/murf/AEL-trunk-fixesonly/sounds/queue-seconds.gsm
team/murf/AEL-trunk-fixesonly/sounds/queue-thankyou.gsm
team/murf/AEL-trunk-fixesonly/sounds/queue-thereare.gsm
team/murf/AEL-trunk-fixesonly/sounds/queue-youarenext.gsm
team/murf/AEL-trunk-fixesonly/sounds/screen-callee-options.gsm
team/murf/AEL-trunk-fixesonly/sounds/seconds.gsm
team/murf/AEL-trunk-fixesonly/sounds/spy-agent.gsm
team/murf/AEL-trunk-fixesonly/sounds/spy-h323.gsm
team/murf/AEL-trunk-fixesonly/sounds/spy-iax.gsm
team/murf/AEL-trunk-fixesonly/sounds/spy-iax2.gsm
team/murf/AEL-trunk-fixesonly/sounds/spy-mgcp.gsm
team/murf/AEL-trunk-fixesonly/sounds/spy-sip.gsm
team/murf/AEL-trunk-fixesonly/sounds/spy-skinny.gsm
team/murf/AEL-trunk-fixesonly/sounds/spy-zap.gsm
team/murf/AEL-trunk-fixesonly/sounds/ss-noservice.gsm
team/murf/AEL-trunk-fixesonly/sounds/transfer.gsm
team/murf/AEL-trunk-fixesonly/sounds/tt-allbusy.gsm
team/murf/AEL-trunk-fixesonly/sounds/tt-monkeys.gsm
team/murf/AEL-trunk-fixesonly/sounds/tt-monkeysintro.gsm
team/murf/AEL-trunk-fixesonly/sounds/tt-somethingwrong.gsm
team/murf/AEL-trunk-fixesonly/sounds/tt-weasels.gsm
team/murf/AEL-trunk-fixesonly/sounds/vm-Cust1.gsm
team/murf/AEL-trunk-fixesonly/sounds/vm-Cust2.gsm
team/murf/AEL-trunk-fixesonly/sounds/vm-Cust3.gsm
team/murf/AEL-trunk-fixesonly/sounds/vm-Cust4.gsm
team/murf/AEL-trunk-fixesonly/sounds/vm-Cust5.gsm
team/murf/AEL-trunk-fixesonly/sounds/vm-Family.gsm
team/murf/AEL-trunk-fixesonly/sounds/vm-Friends.gsm
team/murf/AEL-trunk-fixesonly/sounds/vm-INBOX.gsm
team/murf/AEL-trunk-fixesonly/sounds/vm-Old.gsm
team/murf/AEL-trunk-fixesonly/sounds/vm-Work.gsm
team/murf/AEL-trunk-fixesonly/sounds/vm-advopts.gsm
team/murf/AEL-trunk-fixesonly/sounds/vm-and.gsm
team/murf/AEL-trunk-fixesonly/sounds/vm-calldiffnum.gsm
team/murf/AEL-trunk-fixesonly/sounds/vm-changeto.gsm
team/murf/AEL-trunk-fixesonly/sounds/vm-delete.gsm
team/murf/AEL-trunk-fixesonly/sounds/vm-deleted.gsm
team/murf/AEL-trunk-fixesonly/sounds/vm-dialout.gsm
team/murf/AEL-trunk-fixesonly/sounds/vm-enter-num-to-call.gsm
team/murf/AEL-trunk-fixesonly/sounds/vm-extension.gsm
team/murf/AEL-trunk-fixesonly/sounds/vm-first.gsm
team/murf/AEL-trunk-fixesonly/sounds/vm-for.gsm
team/murf/AEL-trunk-fixesonly/sounds/vm-forward.gsm
team/murf/AEL-trunk-fixesonly/sounds/vm-forwardoptions.gsm
team/murf/AEL-trunk-fixesonly/sounds/vm-from-extension.gsm
team/murf/AEL-trunk-fixesonly/sounds/vm-from-phonenumber.gsm
team/murf/AEL-trunk-fixesonly/sounds/vm-from.gsm
team/murf/AEL-trunk-fixesonly/sounds/vm-goodbye.gsm
team/murf/AEL-trunk-fixesonly/sounds/vm-helpexit.gsm
team/murf/AEL-trunk-fixesonly/sounds/vm-incorrect-mailbox.gsm
team/murf/AEL-trunk-fixesonly/sounds/vm-incorrect.gsm
team/murf/AEL-trunk-fixesonly/sounds/vm-instructions.gsm
team/murf/AEL-trunk-fixesonly/sounds/vm-intro.gsm
team/murf/AEL-trunk-fixesonly/sounds/vm-isonphone.gsm
team/murf/AEL-trunk-fixesonly/sounds/vm-isunavail.gsm
team/murf/AEL-trunk-fixesonly/sounds/vm-last.gsm
team/murf/AEL-trunk-fixesonly/sounds/vm-leavemsg.gsm
team/murf/AEL-trunk-fixesonly/sounds/vm-login.gsm
team/murf/AEL-trunk-fixesonly/sounds/vm-mailboxfull.gsm
team/murf/AEL-trunk-fixesonly/sounds/vm-message.gsm
team/murf/AEL-trunk-fixesonly/sounds/vm-messages.gsm
team/murf/AEL-trunk-fixesonly/sounds/vm-minutes.gsm
team/murf/AEL-trunk-fixesonly/sounds/vm-mismatch.gsm
team/murf/AEL-trunk-fixesonly/sounds/vm-msginstruct.gsm
team/murf/AEL-trunk-fixesonly/sounds/vm-msgsaved.gsm
team/murf/AEL-trunk-fixesonly/sounds/vm-newpassword.gsm
team/murf/AEL-trunk-fixesonly/sounds/vm-newuser.gsm
team/murf/AEL-trunk-fixesonly/sounds/vm-next.gsm
team/murf/AEL-trunk-fixesonly/sounds/vm-no.gsm
team/murf/AEL-trunk-fixesonly/sounds/vm-nobodyavail.gsm
team/murf/AEL-trunk-fixesonly/sounds/vm-nobox.gsm
team/murf/AEL-trunk-fixesonly/sounds/vm-nomore.gsm
team/murf/AEL-trunk-fixesonly/sounds/vm-nonumber.gsm
team/murf/AEL-trunk-fixesonly/sounds/vm-num-i-have.gsm
team/murf/AEL-trunk-fixesonly/sounds/vm-onefor.gsm
team/murf/AEL-trunk-fixesonly/sounds/vm-options.gsm
team/murf/AEL-trunk-fixesonly/sounds/vm-opts.gsm
team/murf/AEL-trunk-fixesonly/sounds/vm-passchanged.gsm
team/murf/AEL-trunk-fixesonly/sounds/vm-password.gsm
team/murf/AEL-trunk-fixesonly/sounds/vm-press.gsm
team/murf/AEL-trunk-fixesonly/sounds/vm-prev.gsm
team/murf/AEL-trunk-fixesonly/sounds/vm-reachoper.gsm
team/murf/AEL-trunk-fixesonly/sounds/vm-rec-busy.gsm
team/murf/AEL-trunk-fixesonly/sounds/vm-rec-name.gsm
team/murf/AEL-trunk-fixesonly/sounds/vm-rec-temp.gsm
team/murf/AEL-trunk-fixesonly/sounds/vm-rec-unv.gsm
team/murf/AEL-trunk-fixesonly/sounds/vm-received.gsm
team/murf/AEL-trunk-fixesonly/sounds/vm-reenterpassword.gsm
team/murf/AEL-trunk-fixesonly/sounds/vm-repeat.gsm
team/murf/AEL-trunk-fixesonly/sounds/vm-review.gsm
team/murf/AEL-trunk-fixesonly/sounds/vm-saved.gsm
team/murf/AEL-trunk-fixesonly/sounds/vm-savedto.gsm
team/murf/AEL-trunk-fixesonly/sounds/vm-savefolder.gsm
team/murf/AEL-trunk-fixesonly/sounds/vm-savemessage.gsm
team/murf/AEL-trunk-fixesonly/sounds/vm-saveoper.gsm
team/murf/AEL-trunk-fixesonly/sounds/vm-sorry.gsm
team/murf/AEL-trunk-fixesonly/sounds/vm-star-cancel.gsm
team/murf/AEL-trunk-fixesonly/sounds/vm-starmain.gsm
team/murf/AEL-trunk-fixesonly/sounds/vm-tempgreetactive.gsm
team/murf/AEL-trunk-fixesonly/sounds/vm-tempgreeting.gsm
team/murf/AEL-trunk-fixesonly/sounds/vm-tempgreeting2.gsm
team/murf/AEL-trunk-fixesonly/sounds/vm-tempremoved.gsm
team/murf/AEL-trunk-fixesonly/sounds/vm-then-pound.gsm
team/murf/AEL-trunk-fixesonly/sounds/vm-theperson.gsm
team/murf/AEL-trunk-fixesonly/sounds/vm-tocallback.gsm
team/murf/AEL-trunk-fixesonly/sounds/vm-tocallnum.gsm
team/murf/AEL-trunk-fixesonly/sounds/vm-tocancel.gsm
team/murf/AEL-trunk-fixesonly/sounds/vm-tocancelmsg.gsm
team/murf/AEL-trunk-fixesonly/sounds/vm-toenternumber.gsm
team/murf/AEL-trunk-fixesonly/sounds/vm-toforward.gsm
team/murf/AEL-trunk-fixesonly/sounds/vm-tohearenv.gsm
team/murf/AEL-trunk-fixesonly/sounds/vm-tomakecall.gsm
team/murf/AEL-trunk-fixesonly/sounds/vm-tooshort.gsm
team/murf/AEL-trunk-fixesonly/sounds/vm-toreply.gsm
team/murf/AEL-trunk-fixesonly/sounds/vm-torerecord.gsm
team/murf/AEL-trunk-fixesonly/sounds/vm-undelete.gsm
team/murf/AEL-trunk-fixesonly/sounds/vm-undeleted.gsm
team/murf/AEL-trunk-fixesonly/sounds/vm-unknown-caller.gsm
team/murf/AEL-trunk-fixesonly/sounds/vm-whichbox.gsm
team/murf/AEL-trunk-fixesonly/sounds/vm-youhave.gsm
Modified:
team/murf/AEL-trunk-fixesonly/ (props changed)
team/murf/AEL-trunk-fixesonly/Makefile
team/murf/AEL-trunk-fixesonly/abstract_jb.c
team/murf/AEL-trunk-fixesonly/acl.c
team/murf/AEL-trunk-fixesonly/aclocal.m4
team/murf/AEL-trunk-fixesonly/app.c
team/murf/AEL-trunk-fixesonly/apps/Makefile
team/murf/AEL-trunk-fixesonly/apps/app_adsiprog.c
team/murf/AEL-trunk-fixesonly/apps/app_alarmreceiver.c
team/murf/AEL-trunk-fixesonly/apps/app_amd.c
team/murf/AEL-trunk-fixesonly/apps/app_authenticate.c
team/murf/AEL-trunk-fixesonly/apps/app_cdr.c
team/murf/AEL-trunk-fixesonly/apps/app_chanisavail.c
team/murf/AEL-trunk-fixesonly/apps/app_channelredirect.c
team/murf/AEL-trunk-fixesonly/apps/app_chanspy.c
team/murf/AEL-trunk-fixesonly/apps/app_controlplayback.c
team/murf/AEL-trunk-fixesonly/apps/app_db.c
team/murf/AEL-trunk-fixesonly/apps/app_dial.c
team/murf/AEL-trunk-fixesonly/apps/app_dictate.c
team/murf/AEL-trunk-fixesonly/apps/app_directed_pickup.c
team/murf/AEL-trunk-fixesonly/apps/app_directory.c
team/murf/AEL-trunk-fixesonly/apps/app_disa.c
team/murf/AEL-trunk-fixesonly/apps/app_dumpchan.c
team/murf/AEL-trunk-fixesonly/apps/app_echo.c
team/murf/AEL-trunk-fixesonly/apps/app_exec.c
team/murf/AEL-trunk-fixesonly/apps/app_externalivr.c
team/murf/AEL-trunk-fixesonly/apps/app_festival.c
team/murf/AEL-trunk-fixesonly/apps/app_flash.c
team/murf/AEL-trunk-fixesonly/apps/app_forkcdr.c
team/murf/AEL-trunk-fixesonly/apps/app_getcpeid.c
team/murf/AEL-trunk-fixesonly/apps/app_hasnewvoicemail.c
team/murf/AEL-trunk-fixesonly/apps/app_ices.c
team/murf/AEL-trunk-fixesonly/apps/app_image.c
team/murf/AEL-trunk-fixesonly/apps/app_ivrdemo.c
team/murf/AEL-trunk-fixesonly/apps/app_lookupblacklist.c
team/murf/AEL-trunk-fixesonly/apps/app_lookupcidname.c
team/murf/AEL-trunk-fixesonly/apps/app_macro.c
team/murf/AEL-trunk-fixesonly/apps/app_meetme.c
team/murf/AEL-trunk-fixesonly/apps/app_milliwatt.c
team/murf/AEL-trunk-fixesonly/apps/app_mixmonitor.c
team/murf/AEL-trunk-fixesonly/apps/app_morsecode.c
team/murf/AEL-trunk-fixesonly/apps/app_mp3.c
team/murf/AEL-trunk-fixesonly/apps/app_nbscat.c
team/murf/AEL-trunk-fixesonly/apps/app_osplookup.c
team/murf/AEL-trunk-fixesonly/apps/app_page.c
team/murf/AEL-trunk-fixesonly/apps/app_parkandannounce.c
team/murf/AEL-trunk-fixesonly/apps/app_playback.c
team/murf/AEL-trunk-fixesonly/apps/app_privacy.c
team/murf/AEL-trunk-fixesonly/apps/app_queue.c
team/murf/AEL-trunk-fixesonly/apps/app_random.c
team/murf/AEL-trunk-fixesonly/apps/app_read.c
team/murf/AEL-trunk-fixesonly/apps/app_readfile.c
team/murf/AEL-trunk-fixesonly/apps/app_realtime.c
team/murf/AEL-trunk-fixesonly/apps/app_record.c
team/murf/AEL-trunk-fixesonly/apps/app_sayunixtime.c
team/murf/AEL-trunk-fixesonly/apps/app_senddtmf.c
team/murf/AEL-trunk-fixesonly/apps/app_sendtext.c
team/murf/AEL-trunk-fixesonly/apps/app_setcallerid.c
team/murf/AEL-trunk-fixesonly/apps/app_setcdruserfield.c
team/murf/AEL-trunk-fixesonly/apps/app_settransfercapability.c
team/murf/AEL-trunk-fixesonly/apps/app_skel.c
team/murf/AEL-trunk-fixesonly/apps/app_sms.c
team/murf/AEL-trunk-fixesonly/apps/app_softhangup.c
team/murf/AEL-trunk-fixesonly/apps/app_speech_utils.c
team/murf/AEL-trunk-fixesonly/apps/app_stack.c
team/murf/AEL-trunk-fixesonly/apps/app_system.c
team/murf/AEL-trunk-fixesonly/apps/app_talkdetect.c
team/murf/AEL-trunk-fixesonly/apps/app_test.c
team/murf/AEL-trunk-fixesonly/apps/app_transfer.c
team/murf/AEL-trunk-fixesonly/apps/app_url.c
team/murf/AEL-trunk-fixesonly/apps/app_userevent.c
team/murf/AEL-trunk-fixesonly/apps/app_verbose.c
team/murf/AEL-trunk-fixesonly/apps/app_voicemail.c
team/murf/AEL-trunk-fixesonly/apps/app_waitforring.c
team/murf/AEL-trunk-fixesonly/apps/app_waitforsilence.c
team/murf/AEL-trunk-fixesonly/apps/app_while.c
team/murf/AEL-trunk-fixesonly/apps/app_zapateller.c
team/murf/AEL-trunk-fixesonly/apps/app_zapbarge.c
team/murf/AEL-trunk-fixesonly/apps/app_zapras.c
team/murf/AEL-trunk-fixesonly/apps/app_zapscan.c
team/murf/AEL-trunk-fixesonly/ast_expr2.c
team/murf/AEL-trunk-fixesonly/ast_expr2.fl
team/murf/AEL-trunk-fixesonly/ast_expr2.y
team/murf/AEL-trunk-fixesonly/ast_expr2f.c
team/murf/AEL-trunk-fixesonly/asterisk.c
team/murf/AEL-trunk-fixesonly/astmm.c
team/murf/AEL-trunk-fixesonly/autoservice.c
team/murf/AEL-trunk-fixesonly/build_tools/cflags.xml
team/murf/AEL-trunk-fixesonly/build_tools/menuselect.c
team/murf/AEL-trunk-fixesonly/build_tools/menuselect_curses.c
team/murf/AEL-trunk-fixesonly/build_tools/prep_moduledeps
team/murf/AEL-trunk-fixesonly/callerid.c
team/murf/AEL-trunk-fixesonly/cdr.c
team/murf/AEL-trunk-fixesonly/cdr/Makefile
team/murf/AEL-trunk-fixesonly/cdr/cdr_csv.c
team/murf/AEL-trunk-fixesonly/cdr/cdr_custom.c
team/murf/AEL-trunk-fixesonly/cdr/cdr_manager.c
team/murf/AEL-trunk-fixesonly/cdr/cdr_odbc.c
team/murf/AEL-trunk-fixesonly/cdr/cdr_pgsql.c
team/murf/AEL-trunk-fixesonly/cdr/cdr_radius.c
team/murf/AEL-trunk-fixesonly/cdr/cdr_sqlite.c
team/murf/AEL-trunk-fixesonly/cdr/cdr_tds.c
team/murf/AEL-trunk-fixesonly/channel.c
team/murf/AEL-trunk-fixesonly/channels/Makefile
team/murf/AEL-trunk-fixesonly/channels/chan_agent.c
team/murf/AEL-trunk-fixesonly/channels/chan_alsa.c
team/murf/AEL-trunk-fixesonly/channels/chan_features.c
team/murf/AEL-trunk-fixesonly/channels/chan_h323.c
[... 23462 lines stripped ...]
More information about the svn-commits
mailing list