[svn-commits] tilghman: branch group/issue10217 r204748 - in /team/group/issue10217: ./ add...

SVN commits to the Digium repositories svn-commits at lists.digium.com
Thu Jul 2 12:21:20 CDT 2009


Author: tilghman
Date: Thu Jul  2 12:21:09 2009
New Revision: 204748

URL: http://svn.asterisk.org/svn-view/asterisk?view=rev&rev=204748
Log:
Merged revisions 203258,203304,203338,203376,203381,203402,203443-203444,203479,203508,203525,203534,203569,203605,203638,203640,203672,203699,203702,203710,203720-203721,203735,203779,203783,203802,203842,203846,203853,203909,203960,203962,203985,204013,204069,204118-204119,204143,204171,204217,204247,204301,204355,204413,204415,204417-204420,204422-204423,204428,204440,204470,204475,204530,204532,204561,204563,204622,204654,204710 via svnmerge from 
https://origsvn.digium.com/svn/asterisk/trunk

................
  r203258 | qwell | 2009-06-25 14:22:46 -0500 (Thu, 25 Jun 2009) | 10 lines
  
  Unmute when we get a dtmfup (we muted on dtmfdown) event.
  
  This would occasionally cause one-way audio when using hardware DTMF detection.
  
  (closes issue #14761)
  Reported by: tzafrir
  Patches:
        v1-14761.patch uploaded by dimas (license 88)
  Tested by: tzafrir, dimas
................
  r203304 | jpeeler | 2009-06-25 14:54:12 -0500 (Thu, 25 Jun 2009) | 6 lines
  
  New signaling module to handle PRI/BRI operations in chan_dahdi
  
  This merge splits the PRI/BRI signaling logic out of chan_dahdi.c into
  sig_pri.c. Functionality in theory should not change (mostly). A few trivial
  changes were made in sig_analog with verbose messages and commenting.
................
  r203338 | twilson | 2009-06-25 15:25:39 -0500 (Thu, 25 Jun 2009) | 9 lines
  
  Merged revisions 203311 via svnmerge from 
  https://origsvn.digium.com/svn/asterisk/branches/1.4
  
  ........
    r203311 | twilson | 2009-06-25 15:09:15 -0500 (Thu, 25 Jun 2009) | 2 lines
    
    Don't try to free NULL
  ........
................
  r203376 | russell | 2009-06-25 16:04:55 -0500 (Thu, 25 Jun 2009) | 16 lines
  
  Merged revisions 203375 via svnmerge from 
  https://origsvn.digium.com/svn/asterisk/branches/1.4
  
  ........
    r203375 | russell | 2009-06-25 16:02:18 -0500 (Thu, 25 Jun 2009) | 9 lines
    
    Fix a case where CDR answer time could be before the start time involving parking.
    
    (closes issue #13794)
    Reported by: davidw
    Patches:
          13794.patch uploaded by murf (license 17)
          13794.patch.160 uploaded by murf (license 17)
    Tested by: murf, dbrooks
  ........
................
  r203381 | twilson | 2009-06-25 16:15:11 -0500 (Thu, 25 Jun 2009) | 11 lines
  
  Merged revisions 203380 via svnmerge from 
  https://origsvn.digium.com/svn/asterisk/branches/1.4
  
  ........
    r203380 | twilson | 2009-06-25 16:13:10 -0500 (Thu, 25 Jun 2009) | 4 lines
    
    I didn't see that Mark already fixed the underlying issue!
    
    Yay for removing useless code.
  ........
................
  r203402 | jpeeler | 2009-06-25 16:22:12 -0500 (Thu, 25 Jun 2009) | 2 lines
  
  Remove some unnecessary code and update sample config file with respect to GR-303.
................
  r203443 | rmudgett | 2009-06-25 16:34:18 -0500 (Thu, 25 Jun 2009) | 1 line
  
  Picking nits
................
  r203444 | dvossel | 2009-06-25 16:45:32 -0500 (Thu, 25 Jun 2009) | 4 lines
  
  fixes a few redundant conditions
  
  (issue #15269)
................
  r203479 | jpeeler | 2009-06-25 17:48:33 -0500 (Thu, 25 Jun 2009) | 1 line
  
  make sure chan_dahdi compiles with only libss7 and not libpri installed
................
  r203508 | seanbright | 2009-06-25 18:54:03 -0500 (Thu, 25 Jun 2009) | 5 lines
  
  Move syslog utility functions into a separate file so they can be re-used.
  
  This has the pleasant side effect of cleaning up the header inclusion process
  in logger.c.
................
  r203525 | russell | 2009-06-25 19:21:09 -0500 (Thu, 25 Jun 2009) | 2 lines
  
  Convert spaces to tabs for indentation.
................
  r203534 | russell | 2009-06-25 19:23:55 -0500 (Thu, 25 Jun 2009) | 2 lines
  
  One more formatting nit ... use spaces for inline indentation.
................
  r203569 | seanbright | 2009-06-25 22:06:06 -0500 (Thu, 25 Jun 2009) | 2 lines
  
  Add checks in configure for non-POSIX syslog facilities.
................
  r203605 | seanbright | 2009-06-26 08:00:35 -0500 (Fri, 26 Jun 2009) | 5 lines
  
  Add functions to map syslog facilities and priorities constants to strings.
  
  Also change the default casing of the string contants to lowercase.  This really
  just saves us from have to lowercase them later when displaying them.
................
  r203638 | russell | 2009-06-26 10:28:53 -0500 (Fri, 26 Jun 2009) | 14 lines
  
  Merge the new Channel Event Logging (CEL) subsystem.
  
  CEL is the new system for logging channel events.  This was inspired after
  facing many problems trying to represent what is possible to happen to a call
  in Asterisk using CDR records.  For more information on CEL, see the built in
  HTML or PDF documentation generated from the files in doc/tex/.
  
  Many thanks to Steve Murphy (murf) and Brian Degenhardt (bmd) for their hard
  work developing this code.  Also, thanks to Matt Nicholson (mnicholson) and
  Sean Bright (seanbright) for their assistance in the final push to get this
  code ready for Asterisk trunk.
  
  Review: https://reviewboard.asterisk.org/r/239/
................
  r203640 | russell | 2009-06-26 10:42:26 -0500 (Fri, 26 Jun 2009) | 2 lines
  
  Note a new API call, and one that changed in doxygen.
................
  r203672 | jpeeler | 2009-06-26 14:03:25 -0500 (Fri, 26 Jun 2009) | 16 lines
  
  Check if polarityonanswerdelay has elapsed before setting a channel as answered
  after a polarity reversal.
  
  Previously on a polarity switch event chan_dahdi would set the channel
  immediately as answered. This would cause problems if a polarity reversal
  occurred when the line was picked up as the dial would not have yet occurred. 
  Now if the polarity reversal occurs before delay has elapsed after coming off
  hook or an answer, it is ignored. Also, some refactoring was done in
  _handle_event.
  
  (closes issue #13917)
  Reported by: alecdavis
  Patches:
        chan_dahdi.bug13917.feb09.diff2.txt uploaded by alecdavis (license 585)
  Tested by: alecdavis
................
  r203699 | file | 2009-06-26 14:27:24 -0500 (Fri, 26 Jun 2009) | 2 lines
  
  Improve T.38 negotiation by exchanging session parameters between application and channel.
................
  r203702 | russell | 2009-06-26 14:31:14 -0500 (Fri, 26 Jun 2009) | 5 lines
  
  Make invalid hints report Unavailable instead of Idle.
  
  (closes issue #14413)
  Reported by: pj
................
  r203710 | dvossel | 2009-06-26 14:47:11 -0500 (Fri, 26 Jun 2009) | 7 lines
  
  moving debug message from level 0 to 1.
  
  (closes issue #15404)
  Reported by: leobrown
  Patches:
        iax_codec_debug.patch uploaded by leobrown (license 541)
................
  r203720 | dbrooks | 2009-06-26 15:11:47 -0500 (Fri, 26 Jun 2009) | 22 lines
  
  Blocked revisions 203719 via svnmerge
  
  ........
    r203719 | dbrooks | 2009-06-26 15:03:42 -0500 (Fri, 26 Jun 2009) | 16 lines
    
    Fixing voicemail's error in checking max silence vs min message length
    
    Max silence was represented in milliseconds, yet vmminsecs (minmessage) was represented
    as seconds.
    
    Also, the inequality was reversed. The warning, if triggered, was "Max silence should 
    be less than minmessage or you may get empty messages", which should have been logged 
    if max silence was greater than minmessage, but the check was for less than.
    
    Also, conforming if statement to coding guidelines.
    
    closes issue #15331)
    Reported by: markd
    
    Review: https://reviewboard.asterisk.org/r/293/
  ........
................
  r203721 | dbrooks | 2009-06-26 15:13:51 -0500 (Fri, 26 Jun 2009) | 16 lines
  
  Fixing voicemail's error in checking max silence vs min message length
  
  Max silence was represented in milliseconds, yet vmminsecs (minmessage) was represented
  as seconds.
  
  Also, the inequality was reversed. The warning, if triggered, was "Max silence should 
  be less than minmessage or you may get empty messages", which should have been logged 
  if max silence was greater than minmessage, but the check was for less than.
  
  Also, conforming if statement to coding guidelines.
  
  closes issue #15331)
  Reported by: markd
  
  Review: https://reviewboard.asterisk.org/r/293/
................
  r203735 | file | 2009-06-26 15:19:49 -0500 (Fri, 26 Jun 2009) | 6 lines
  
  Fix the 'nat' option to actually do RFC3581 as expected and extend the configurable values for finer control.
  
  (closes issue #8855)
  Reported by: mikma
  Tested by: klaus3000, file
................
  r203779 | russell | 2009-06-26 15:45:00 -0500 (Fri, 26 Jun 2009) | 5 lines
  
  Ensure the TCP read buffer is fully initialized before handling each packet.
  
  (closes issue #14452)
  Reported by: umberto71
................
  r203783 | mmichelson | 2009-06-26 15:52:19 -0500 (Fri, 26 Jun 2009) | 8 lines
  
  Add timestamp to response to "Ping" manager action.
  
  (closes issue #14596)
  Reported by: JimDickenson
  Patches:
        pong2.diff uploaded by JimDickenson (license 710)
................
  r203802 | russell | 2009-06-26 16:21:48 -0500 (Fri, 26 Jun 2009) | 22 lines
  
  Merged revisions 203785 via svnmerge from 
  https://origsvn.digium.com/svn/asterisk/branches/1.4
  
  ........
    r203785 | russell | 2009-06-26 16:16:39 -0500 (Fri, 26 Jun 2009) | 15 lines
    
    Don't fast forward past the end of a message.
    
    This is nice change for users of the voicemail application.  If someone gets a
    little carried away with fast forwarding through a message, they can easily
    get to the end and accidentally exit the voicemail application by hitting the
    fast forward key during the following prompt.
    
    This adds some safety by not allowing a fast forward past the end of a message.
    
    (closes issue #14554)
    Reported by: lacoursj
    Patches:
          21761.patch uploaded by lacoursj (license 707)
    Tested by: lacoursj
  ........
................
  r203842 | russell | 2009-06-26 16:48:41 -0500 (Fri, 26 Jun 2009) | 7 lines
  
  Add 's' option to ChanSpy, which makes the app exit when no channels are left to spy on.
  
  (closes issue #14594)
  Reported by: JimDickenson
  Patches:
        chanspy.diff uploaded by JimDickenson (license 710)
................
  r203846 | seanbright | 2009-06-26 17:08:05 -0500 (Fri, 26 Jun 2009) | 14 lines
  
  Add a new module, cdr_syslog, which allows writing CDRs to syslog.
  
  The original patch for this was written by Brett Bryant, and I split it out into
  it's own module.
  
  (closes issue #12876)
  Reported by: bbryant
  Patches:
        06162008_cdr_custom_syslog.diff uploaded by bbryant (license 36)
        05212009_cdr_syslog.patch uploaded by seanbright (license 71)
  Tested by: seanbright
  
  Review: https://reviewboard.asterisk.org/r/297/
................
  r203853 | jpeeler | 2009-06-26 17:11:31 -0500 (Fri, 26 Jun 2009) | 12 lines
  
  Merged revisions 203848 via svnmerge from 
  https://origsvn.digium.com/svn/asterisk/branches/1.4
  
  ........
    r203848 | jpeeler | 2009-06-26 17:09:19 -0500 (Fri, 26 Jun 2009) | 5 lines
    
    Make sure to recreate the dahdi pseudo channel after dahdi restart
    
    (closes issue #14477)
    Reported by: timking
  ........
................
  r203909 | rmudgett | 2009-06-26 20:07:52 -0500 (Fri, 26 Jun 2009) | 23 lines
  
  Merged revisions 203908 via svnmerge from 
  https://origsvn.digium.com/svn/asterisk/branches/1.4
  
  ........
    r203908 | rmudgett | 2009-06-26 19:55:12 -0500 (Fri, 26 Jun 2009) | 16 lines
    
    The ISDN CPE side should not exclusively pick B channels normally.
    
    Before this patch, Asterisk unconditionally picked B channels exclusively
    on the CPE side and normally allowed alternative B channels on the network
    side.  Now Asterisk does the opposite.
    
    Reasons for the CPE side to normally not pick B channels exclusively:
    *  For CPE point-to-multipoint mode (i.e. phone side), the CPE side does
    not have enough information to exclusively pick B channels.  (There may be
    other devices on the line.)
    *  Q.931 gives preference to the network side picking B channels.
    *  Some telcos require the CPE side to not pick B channels exclusively.
    
    (closes issue #14383)
    Reported by: mbrancaleoni
  ........
................
  r203960 | russell | 2009-06-27 04:51:45 -0500 (Sat, 27 Jun 2009) | 2 lines
  
  Minor tweaks and spelling fixes for CHANGES and UPGRADE.txt.
................
  r203962 | russell | 2009-06-27 05:04:51 -0500 (Sat, 27 Jun 2009) | 8 lines
  
  Only update total silence counter after a counter reset.
  
  (closes issue #2264)
  Reported by: pfn
  Patches:
        silent-vm-1.6.2-fix2.txt uploaded by pfn (license 810)
  Tested by: pfn
................
  r203985 | seanbright | 2009-06-27 15:26:01 -0500 (Sat, 27 Jun 2009) | 1 line
  
  Another CHANGES spelling fix.
................
  r204013 | mmichelson | 2009-06-29 10:04:39 -0500 (Mon, 29 Jun 2009) | 11 lines
  
  Blocked revisions 204012 via svnmerge
  
  ........
    r204012 | mmichelson | 2009-06-29 10:04:17 -0500 (Mon, 29 Jun 2009) | 6 lines
    
    Place unlock of mutex in an else block so that it does not get unlocked twice.
    
    (closes issue #15400)
    Reported by: aragon
  ........
................
  r204069 | tilghman | 2009-06-29 12:15:15 -0500 (Mon, 29 Jun 2009) | 7 lines
  
  Remove invalid entries in the config.
  This might seem like a legitimate comment that merely needed semicolon
  prefixes, but in reality, the adaptive layer is designed to allow arbitrary
  CDR variables, without needing the use of a userfield to store multiple items.
  It's therefore not only invalid syntax but also goes against the intent of the
  adaptive method.
................
  r204118 | tilghman | 2009-06-29 12:56:29 -0500 (Mon, 29 Jun 2009) | 2 lines
  
  Allow trunk to once again compile under MALLOC_DEBUG
................
  r204119 | seanbright | 2009-06-29 13:05:27 -0500 (Mon, 29 Jun 2009) | 1 line
  
  Add common headers to CEL related configs.
................
  r204143 | seanbright | 2009-06-29 13:44:44 -0500 (Mon, 29 Jun 2009) | 7 lines
  
  Get app_rpt compiling again.  I doubt seriously that it actually works.
  
  Also, the code in this module is horrendous and we should remove it from the
  tree.  I'm not sure who is supposed to be maintaning this thing, but they
  clearly are not.  I don't see the sense of leaving it in the main tree.  If it
  lives *anywhere* it should be in addons.
................
  r204171 | tilghman | 2009-06-29 14:36:57 -0500 (Mon, 29 Jun 2009) | 9 lines
  
  Blocked revisions 204170 via svnmerge
  
  ........
    r204170 | tilghman | 2009-06-29 14:36:01 -0500 (Mon, 29 Jun 2009) | 3 lines
    
    Revision 189537 was supposed to make 1.4 more correct.  Instead, it broke func_odbc.  Reverting.
    (closes issue #15317, issue #14614)
  ........
................
  r204217 | seanbright | 2009-06-29 15:29:10 -0500 (Mon, 29 Jun 2009) | 1 line
  
  Reorganize this adaptive CEL config a bit.
................
  r204247 | mmichelson | 2009-06-29 16:48:54 -0500 (Mon, 29 Jun 2009) | 34 lines
  
  Merged revisions 204243,204246 via svnmerge from 
  https://origsvn.digium.com/svn/asterisk/branches/1.4
  
  ........
    r204243 | mmichelson | 2009-06-29 16:23:43 -0500 (Mon, 29 Jun 2009) | 22 lines
    
    Fix a problem where chan_sip would ignore "old" but valid responses.
    
    chan_sip has had a problem for quite a long time that would manifest when
    Asterisk would send multiple SIP responses on the same dialog before receiving
    a response. The problem occurred because chan_sip only kept track of the highest
    outgoing sequence number used on the dialog. If Asterisk sent two requests out,
    and a response arrived for the first request sent, then Asterisk would ignore
    the response. The result was that Asterisk would continue retransmitting the
    requests and ignoring the responses until the maximum number of retransmissions
    had been reached.
    
    The fix here is to rearrange the code a bit so that instead of simply comparing
    the sequence number of the response to our latest outgoing sequence number, we
    walk our list of outstanding packets and determine if there is a match. If there is,
    we continue. If not, then we ignore the response.
    
    In doing this, I found a few completely useless variables that I have now removed.
    
    (closes issue #11231)
    Reported by: flefoll
  
    Review: https://reviewboard.asterisk.org/r/298
  ........
    r204246 | mmichelson | 2009-06-29 16:37:05 -0500 (Mon, 29 Jun 2009) | 3 lines
    
    Fix build oops.
  ........
................
  r204301 | mmichelson | 2009-06-29 17:50:35 -0500 (Mon, 29 Jun 2009) | 15 lines
  
  Merged revisions 204300 via svnmerge from 
  https://origsvn.digium.com/svn/asterisk/branches/1.4
  
  ........
    r204300 | mmichelson | 2009-06-29 17:45:34 -0500 (Mon, 29 Jun 2009) | 9 lines
    
    Add error message so that it is clear why a SIP peer was not processed when
    a DNS lookup fails on a host or outboundproxy.
    
    (closes issue #13432)
    Reported by: p_lindheimer
    Patches:
          outboundproxy.patch uploaded by p (license 558)
  ........
................
  r204355 | seanbright | 2009-06-29 18:50:46 -0500 (Mon, 29 Jun 2009) | 2 lines
  
  A few const changes in app_meetme.c that I noticed while browsing the source.
................
  r204413 | russell | 2009-06-30 11:40:38 -0500 (Tue, 30 Jun 2009) | 12 lines
  
  Move Asterisk-addons modules into the main Asterisk source tree.
  
  Someone asked yesterday, "is there a good reason why we can't just put these
  modules in Asterisk?".  After a brief discussion, as long as the modules are
  clearly set aside in their own directory and not enabled by default, it is
  perfectly fine.
  
  For more information about why a module goes in addons, see README-addons.txt.
  
  chan_ooh323 does not currently compile as it is behind some trunk API updates.
  However, it will not build by default, so it should be okay for now.
................
  r204415 | kpfleming | 2009-06-30 12:04:35 -0500 (Tue, 30 Jun 2009) | 8 lines
  
  Add-ons related build system improvements.
  
  Ensure that add-on modules can be embedded, fix up Makefile.moddir_rules
  to allow module directory Makefiles to more easily specify the modules to
  be built, and explicitly list the addons modules in its Makefile, since
  the module names don't follow any pattern.
................
  r204417 | russell | 2009-06-30 12:08:14 -0500 (Tue, 30 Jun 2009) | 2 lines
  
  Rename app_addon_sql_mysql to app_mysql
................
  r204418 | russell | 2009-06-30 12:09:04 -0500 (Tue, 30 Jun 2009) | 2 lines
  
  Rename cdr_addon_mysql to cdr_mysql
................
  r204419 | russell | 2009-06-30 12:10:45 -0500 (Tue, 30 Jun 2009) | 2 lines
  
  Rename mysql.conf to app_mysql.conf, make module support both names
................
  r204420 | russell | 2009-06-30 12:11:31 -0500 (Tue, 30 Jun 2009) | 2 lines
  
  Make addons build last - this is for Qwell.
................
  r204422 | russell | 2009-06-30 12:15:09 -0500 (Tue, 30 Jun 2009) | 2 lines
  
  Rename res_mysql.conf to res_config_mysql.conf, make module support both
................
  r204423 | russell | 2009-06-30 12:16:56 -0500 (Tue, 30 Jun 2009) | 2 lines
  
  Rename mobile.conf to chan_mobile.conf, make module support old name, too
................
  r204428 | russell | 2009-06-30 12:18:18 -0500 (Tue, 30 Jun 2009) | 2 lines
  
  Rename ooh323.conf to chan_ooh323.conf, make module support both names
................
  r204440 | russell | 2009-06-30 12:22:16 -0500 (Tue, 30 Jun 2009) | 2 lines
  
  Rename res_config_sqlite.conf to res_config_sqlite.conf.sample (missing .sample).
................
  r204470 | tilghman | 2009-06-30 13:36:24 -0500 (Tue, 30 Jun 2009) | 18 lines
  
  Recorded merge of revisions 204469 via svnmerge from 
  https://origsvn.digium.com/svn/asterisk/branches/1.4
  
  ........
    r204469 | tilghman | 2009-06-30 13:23:35 -0500 (Tue, 30 Jun 2009) | 11 lines
    
    "tw" is the language specification for Twi (from Ghana) not Taiwanese.
    (closes issue #15346)
     Reported by: volivier
     Patches: 
           20090617__issue15346__1.4.diff.txt uploaded by tilghman (license 14)
           20090617__issue15346__trunk.diff.txt uploaded by tilghman (license 14)
           20090617__issue15346__1.6.0.diff.txt uploaded by tilghman (license 14)
           20090617__issue15346__1.6.1.diff.txt uploaded by tilghman (license 14)
           20090617__issue15346__1.6.2.diff.txt uploaded by tilghman (license 14)
     Tested by: volivier
  ........
................
  r204475 | qwell | 2009-06-30 13:48:35 -0500 (Tue, 30 Jun 2009) | 9 lines
  
  Merged revisions 204474 via svnmerge from 
  https://origsvn.digium.com/svn/asterisk/branches/1.4
  
  ........
    r204474 | qwell | 2009-06-30 13:47:06 -0500 (Tue, 30 Jun 2009) | 1 line
    
    Fix ast_say_counted_noun to correctly handle Polish.  Fix a comment typo in passing.
  ........
................
  r204530 | mmichelson | 2009-06-30 14:55:59 -0500 (Tue, 30 Jun 2009) | 10 lines
  
  Remove some bogus deadlock avoidance code from local_attended_transfer.
  
  First of all, the code was unnecessary. The goal was to lock a channel
  which was already locked. Second, the assumption of the deadlock avoidance
  loop was that the sip_pvt was already locked and we were trying to get the
  channel lock. The problem is that the sip_pvt was unlocked a few lines above.
  
  Basically, I'm removing 5 lines of no-op.
................
  r204532 | mmichelson | 2009-06-30 14:59:20 -0500 (Tue, 30 Jun 2009) | 5 lines
  
  Move the masquerade in local_attended_transfer to a point where we hold the channel lock.
  
  Masquerading without the channel's lock held is a *horrible* idea.
................
  r204561 | seanbright | 2009-06-30 15:39:39 -0500 (Tue, 30 Jun 2009) | 1 line
  
  Remove an unnecessary #ifdef
................
  r204563 | tilghman | 2009-06-30 15:41:04 -0500 (Tue, 30 Jun 2009) | 13 lines
  
  Merged revisions 204556 via svnmerge from 
  https://origsvn.digium.com/svn/asterisk/branches/1.4
  
  ........
    r204556 | tilghman | 2009-06-30 15:23:51 -0500 (Tue, 30 Jun 2009) | 6 lines
    
    More incorrect language codes, plus ensuring that regionalizations use the specified language, and not English for grammar.
    (closes issue #15022)
     Reported by: greenfieldtech
     Patches: 
           20090519__issue15022.diff.txt uploaded by tilghman (license 14)
  ........
................
  r204622 | seanbright | 2009-07-01 11:06:18 -0500 (Wed, 01 Jul 2009) | 2 lines
  
  A bunch of CODING_GUIDELINES related fixes.  Not even close to done.
................
  r204654 | rbrindley | 2009-07-01 14:47:38 -0500 (Wed, 01 Jul 2009) | 4 lines
  
  
  - cfgbasic.html has been replaced by index.html in the GUI for some time now
................
  r204710 | dvossel | 2009-07-02 11:03:44 -0500 (Thu, 02 Jul 2009) | 21 lines
  
  Merged revisions 204681 via svnmerge from 
  https://origsvn.digium.com/svn/asterisk/branches/1.4
  
  ........
    r204681 | dvossel | 2009-07-02 10:05:57 -0500 (Thu, 02 Jul 2009) | 14 lines
    
    Improved mapping of extension states from combined device states.
    
    This fixes a few issues with incorrect extension states and adds
    a cli command, core show device2extenstate, to display all possible
    state mappings.
    
    (closes issue #15413)
    Reported by: legart
    Patches:
          exten_helper.diff uploaded by dvossel (license 671)
    Tested by: dvossel, legart, amilcar
    
    Review: https://reviewboard.asterisk.org/r/301/
  ........
................

Added:
    team/group/issue10217/README-addons.txt
      - copied unchanged from r204710, trunk/README-addons.txt
    team/group/issue10217/addons/   (props changed)
      - copied from r204710, trunk/addons/
    team/group/issue10217/addons/Makefile
      - copied unchanged from r204710, trunk/addons/Makefile
    team/group/issue10217/addons/app_mysql.c
      - copied unchanged from r204710, trunk/addons/app_mysql.c
    team/group/issue10217/addons/app_saycountpl.c
      - copied unchanged from r204710, trunk/addons/app_saycountpl.c
    team/group/issue10217/addons/cdr_mysql.c
      - copied unchanged from r204710, trunk/addons/cdr_mysql.c
    team/group/issue10217/addons/chan_mobile.c
      - copied unchanged from r204710, trunk/addons/chan_mobile.c
    team/group/issue10217/addons/chan_ooh323.c
      - copied unchanged from r204710, trunk/addons/chan_ooh323.c
    team/group/issue10217/addons/chan_ooh323.h
      - copied unchanged from r204710, trunk/addons/chan_ooh323.h
    team/group/issue10217/addons/format_mp3.c
      - copied unchanged from r204710, trunk/addons/format_mp3.c
    team/group/issue10217/addons/mp3/
      - copied from r204710, trunk/addons/mp3/
    team/group/issue10217/addons/mp3/MPGLIB_README
      - copied unchanged from r204710, trunk/addons/mp3/MPGLIB_README
    team/group/issue10217/addons/mp3/MPGLIB_TODO
      - copied unchanged from r204710, trunk/addons/mp3/MPGLIB_TODO
    team/group/issue10217/addons/mp3/Makefile
      - copied unchanged from r204710, trunk/addons/mp3/Makefile
    team/group/issue10217/addons/mp3/README
      - copied unchanged from r204710, trunk/addons/mp3/README
    team/group/issue10217/addons/mp3/common.c
      - copied unchanged from r204710, trunk/addons/mp3/common.c
    team/group/issue10217/addons/mp3/dct64_i386.c
      - copied unchanged from r204710, trunk/addons/mp3/dct64_i386.c
    team/group/issue10217/addons/mp3/decode_i386.c
      - copied unchanged from r204710, trunk/addons/mp3/decode_i386.c
    team/group/issue10217/addons/mp3/decode_ntom.c
      - copied unchanged from r204710, trunk/addons/mp3/decode_ntom.c
    team/group/issue10217/addons/mp3/huffman.h
      - copied unchanged from r204710, trunk/addons/mp3/huffman.h
    team/group/issue10217/addons/mp3/interface.c
      - copied unchanged from r204710, trunk/addons/mp3/interface.c
    team/group/issue10217/addons/mp3/layer3.c
      - copied unchanged from r204710, trunk/addons/mp3/layer3.c
    team/group/issue10217/addons/mp3/mpg123.h
      - copied unchanged from r204710, trunk/addons/mp3/mpg123.h
    team/group/issue10217/addons/mp3/mpglib.h
      - copied unchanged from r204710, trunk/addons/mp3/mpglib.h
    team/group/issue10217/addons/mp3/tabinit.c
      - copied unchanged from r204710, trunk/addons/mp3/tabinit.c
    team/group/issue10217/addons/ooh323c/
      - copied from r204710, trunk/addons/ooh323c/
    team/group/issue10217/addons/ooh323c/COPYING
      - copied unchanged from r204710, trunk/addons/ooh323c/COPYING
    team/group/issue10217/addons/ooh323c/README
      - copied unchanged from r204710, trunk/addons/ooh323c/README
    team/group/issue10217/addons/ooh323c/src/
      - copied from r204710, trunk/addons/ooh323c/src/
    team/group/issue10217/addons/ooh323c/src/Makefile.in
      - copied unchanged from r204710, trunk/addons/ooh323c/src/Makefile.in
    team/group/issue10217/addons/ooh323c/src/context.c
      - copied unchanged from r204710, trunk/addons/ooh323c/src/context.c
    team/group/issue10217/addons/ooh323c/src/decode.c
      - copied unchanged from r204710, trunk/addons/ooh323c/src/decode.c
    team/group/issue10217/addons/ooh323c/src/dlist.c
      - copied unchanged from r204710, trunk/addons/ooh323c/src/dlist.c
    team/group/issue10217/addons/ooh323c/src/dlist.h
      - copied unchanged from r204710, trunk/addons/ooh323c/src/dlist.h
    team/group/issue10217/addons/ooh323c/src/encode.c
      - copied unchanged from r204710, trunk/addons/ooh323c/src/encode.c
    team/group/issue10217/addons/ooh323c/src/errmgmt.c
      - copied unchanged from r204710, trunk/addons/ooh323c/src/errmgmt.c
    team/group/issue10217/addons/ooh323c/src/eventHandler.c
      - copied unchanged from r204710, trunk/addons/ooh323c/src/eventHandler.c
    team/group/issue10217/addons/ooh323c/src/eventHandler.h
      - copied unchanged from r204710, trunk/addons/ooh323c/src/eventHandler.h
    team/group/issue10217/addons/ooh323c/src/h323/
      - copied from r204710, trunk/addons/ooh323c/src/h323/
    team/group/issue10217/addons/ooh323c/src/h323/H235-SECURITY-MESSAGES.h
      - copied unchanged from r204710, trunk/addons/ooh323c/src/h323/H235-SECURITY-MESSAGES.h
    team/group/issue10217/addons/ooh323c/src/h323/H235-SECURITY-MESSAGESDec.c
      - copied unchanged from r204710, trunk/addons/ooh323c/src/h323/H235-SECURITY-MESSAGESDec.c
    team/group/issue10217/addons/ooh323c/src/h323/H235-SECURITY-MESSAGESEnc.c
      - copied unchanged from r204710, trunk/addons/ooh323c/src/h323/H235-SECURITY-MESSAGESEnc.c
    team/group/issue10217/addons/ooh323c/src/h323/H323-MESSAGES.c
      - copied unchanged from r204710, trunk/addons/ooh323c/src/h323/H323-MESSAGES.c
    team/group/issue10217/addons/ooh323c/src/h323/H323-MESSAGES.h
      - copied unchanged from r204710, trunk/addons/ooh323c/src/h323/H323-MESSAGES.h
    team/group/issue10217/addons/ooh323c/src/h323/H323-MESSAGESDec.c
      - copied unchanged from r204710, trunk/addons/ooh323c/src/h323/H323-MESSAGESDec.c
    team/group/issue10217/addons/ooh323c/src/h323/H323-MESSAGESEnc.c
      - copied unchanged from r204710, trunk/addons/ooh323c/src/h323/H323-MESSAGESEnc.c
    team/group/issue10217/addons/ooh323c/src/h323/MULTIMEDIA-SYSTEM-CONTROL.c
      - copied unchanged from r204710, trunk/addons/ooh323c/src/h323/MULTIMEDIA-SYSTEM-CONTROL.c
    team/group/issue10217/addons/ooh323c/src/h323/MULTIMEDIA-SYSTEM-CONTROL.h
      - copied unchanged from r204710, trunk/addons/ooh323c/src/h323/MULTIMEDIA-SYSTEM-CONTROL.h
    team/group/issue10217/addons/ooh323c/src/h323/MULTIMEDIA-SYSTEM-CONTROLDec.c
      - copied unchanged from r204710, trunk/addons/ooh323c/src/h323/MULTIMEDIA-SYSTEM-CONTROLDec.c
    team/group/issue10217/addons/ooh323c/src/h323/MULTIMEDIA-SYSTEM-CONTROLEnc.c
      - copied unchanged from r204710, trunk/addons/ooh323c/src/h323/MULTIMEDIA-SYSTEM-CONTROLEnc.c
    team/group/issue10217/addons/ooh323c/src/memheap.c
      - copied unchanged from r204710, trunk/addons/ooh323c/src/memheap.c
    team/group/issue10217/addons/ooh323c/src/memheap.h
      - copied unchanged from r204710, trunk/addons/ooh323c/src/memheap.h
    team/group/issue10217/addons/ooh323c/src/ooCalls.c
      - copied unchanged from r204710, trunk/addons/ooh323c/src/ooCalls.c
    team/group/issue10217/addons/ooh323c/src/ooCalls.h
      - copied unchanged from r204710, trunk/addons/ooh323c/src/ooCalls.h
    team/group/issue10217/addons/ooh323c/src/ooCapability.c
      - copied unchanged from r204710, trunk/addons/ooh323c/src/ooCapability.c
    team/group/issue10217/addons/ooh323c/src/ooCapability.h
      - copied unchanged from r204710, trunk/addons/ooh323c/src/ooCapability.h
    team/group/issue10217/addons/ooh323c/src/ooCmdChannel.c
      - copied unchanged from r204710, trunk/addons/ooh323c/src/ooCmdChannel.c
    team/group/issue10217/addons/ooh323c/src/ooCmdChannel.h
      - copied unchanged from r204710, trunk/addons/ooh323c/src/ooCmdChannel.h
    team/group/issue10217/addons/ooh323c/src/ooCommon.h
      - copied unchanged from r204710, trunk/addons/ooh323c/src/ooCommon.h
    team/group/issue10217/addons/ooh323c/src/ooDateTime.c
      - copied unchanged from r204710, trunk/addons/ooh323c/src/ooDateTime.c
    team/group/issue10217/addons/ooh323c/src/ooDateTime.h
      - copied unchanged from r204710, trunk/addons/ooh323c/src/ooDateTime.h
    team/group/issue10217/addons/ooh323c/src/ooGkClient.c
      - copied unchanged from r204710, trunk/addons/ooh323c/src/ooGkClient.c
    team/group/issue10217/addons/ooh323c/src/ooGkClient.h
      - copied unchanged from r204710, trunk/addons/ooh323c/src/ooGkClient.h
    team/group/issue10217/addons/ooh323c/src/ooLogChan.c
      - copied unchanged from r204710, trunk/addons/ooh323c/src/ooLogChan.c
    team/group/issue10217/addons/ooh323c/src/ooLogChan.h
      - copied unchanged from r204710, trunk/addons/ooh323c/src/ooLogChan.h
    team/group/issue10217/addons/ooh323c/src/ooSocket.c
      - copied unchanged from r204710, trunk/addons/ooh323c/src/ooSocket.c
    team/group/issue10217/addons/ooh323c/src/ooSocket.h
      - copied unchanged from r204710, trunk/addons/ooh323c/src/ooSocket.h
    team/group/issue10217/addons/ooh323c/src/ooStackCmds.c
      - copied unchanged from r204710, trunk/addons/ooh323c/src/ooStackCmds.c
    team/group/issue10217/addons/ooh323c/src/ooStackCmds.h
      - copied unchanged from r204710, trunk/addons/ooh323c/src/ooStackCmds.h
    team/group/issue10217/addons/ooh323c/src/ooTimer.c
      - copied unchanged from r204710, trunk/addons/ooh323c/src/ooTimer.c
    team/group/issue10217/addons/ooh323c/src/ooTimer.h
      - copied unchanged from r204710, trunk/addons/ooh323c/src/ooTimer.h
    team/group/issue10217/addons/ooh323c/src/ooUtils.c
      - copied unchanged from r204710, trunk/addons/ooh323c/src/ooUtils.c
    team/group/issue10217/addons/ooh323c/src/ooUtils.h
      - copied unchanged from r204710, trunk/addons/ooh323c/src/ooUtils.h
    team/group/issue10217/addons/ooh323c/src/ooasn1.h
      - copied unchanged from r204710, trunk/addons/ooh323c/src/ooasn1.h
    team/group/issue10217/addons/ooh323c/src/oochannels.c
      - copied unchanged from r204710, trunk/addons/ooh323c/src/oochannels.c
    team/group/issue10217/addons/ooh323c/src/oochannels.h
      - copied unchanged from r204710, trunk/addons/ooh323c/src/oochannels.h
    team/group/issue10217/addons/ooh323c/src/ooh245.c
      - copied unchanged from r204710, trunk/addons/ooh323c/src/ooh245.c
    team/group/issue10217/addons/ooh323c/src/ooh245.h
      - copied unchanged from r204710, trunk/addons/ooh323c/src/ooh245.h
    team/group/issue10217/addons/ooh323c/src/ooh323.c
      - copied unchanged from r204710, trunk/addons/ooh323c/src/ooh323.c
    team/group/issue10217/addons/ooh323c/src/ooh323.h
      - copied unchanged from r204710, trunk/addons/ooh323c/src/ooh323.h
    team/group/issue10217/addons/ooh323c/src/ooh323ep.c
      - copied unchanged from r204710, trunk/addons/ooh323c/src/ooh323ep.c
    team/group/issue10217/addons/ooh323c/src/ooh323ep.h
      - copied unchanged from r204710, trunk/addons/ooh323c/src/ooh323ep.h
    team/group/issue10217/addons/ooh323c/src/oohdr.h
      - copied unchanged from r204710, trunk/addons/ooh323c/src/oohdr.h
    team/group/issue10217/addons/ooh323c/src/ooper.h
      - copied unchanged from r204710, trunk/addons/ooh323c/src/ooper.h
    team/group/issue10217/addons/ooh323c/src/ooports.c
      - copied unchanged from r204710, trunk/addons/ooh323c/src/ooports.c
    team/group/issue10217/addons/ooh323c/src/ooports.h
      - copied unchanged from r204710, trunk/addons/ooh323c/src/ooports.h
    team/group/issue10217/addons/ooh323c/src/ooq931.c
      - copied unchanged from r204710, trunk/addons/ooh323c/src/ooq931.c
    team/group/issue10217/addons/ooh323c/src/ooq931.h
      - copied unchanged from r204710, trunk/addons/ooh323c/src/ooq931.h
    team/group/issue10217/addons/ooh323c/src/ootrace.c
      - copied unchanged from r204710, trunk/addons/ooh323c/src/ootrace.c
    team/group/issue10217/addons/ooh323c/src/ootrace.h
      - copied unchanged from r204710, trunk/addons/ooh323c/src/ootrace.h
    team/group/issue10217/addons/ooh323c/src/ootypes.h
      - copied unchanged from r204710, trunk/addons/ooh323c/src/ootypes.h
    team/group/issue10217/addons/ooh323c/src/perutil.c
      - copied unchanged from r204710, trunk/addons/ooh323c/src/perutil.c
    team/group/issue10217/addons/ooh323c/src/printHandler.c
      - copied unchanged from r204710, trunk/addons/ooh323c/src/printHandler.c
    team/group/issue10217/addons/ooh323c/src/printHandler.h
      - copied unchanged from r204710, trunk/addons/ooh323c/src/printHandler.h
    team/group/issue10217/addons/ooh323c/src/rtctype.c
      - copied unchanged from r204710, trunk/addons/ooh323c/src/rtctype.c
    team/group/issue10217/addons/ooh323c/src/rtctype.h
      - copied unchanged from r204710, trunk/addons/ooh323c/src/rtctype.h
    team/group/issue10217/addons/ooh323cDriver.c
      - copied unchanged from r204710, trunk/addons/ooh323cDriver.c
    team/group/issue10217/addons/ooh323cDriver.h
      - copied unchanged from r204710, trunk/addons/ooh323cDriver.h
    team/group/issue10217/addons/res_config_mysql.c
      - copied unchanged from r204710, trunk/addons/res_config_mysql.c
    team/group/issue10217/apps/app_celgenuserevent.c
      - copied unchanged from r204710, trunk/apps/app_celgenuserevent.c
    team/group/issue10217/cdr/cdr_syslog.c
      - copied unchanged from r204710, trunk/cdr/cdr_syslog.c
    team/group/issue10217/cel/   (props changed)
      - copied from r204710, trunk/cel/
    team/group/issue10217/cel/Makefile
      - copied unchanged from r204710, trunk/cel/Makefile
    team/group/issue10217/cel/cel_adaptive_odbc.c
      - copied unchanged from r204710, trunk/cel/cel_adaptive_odbc.c
    team/group/issue10217/cel/cel_custom.c
      - copied unchanged from r204710, trunk/cel/cel_custom.c
    team/group/issue10217/cel/cel_manager.c
      - copied unchanged from r204710, trunk/cel/cel_manager.c
    team/group/issue10217/cel/cel_pgsql.c
      - copied unchanged from r204710, trunk/cel/cel_pgsql.c
    team/group/issue10217/cel/cel_radius.c
      - copied unchanged from r204710, trunk/cel/cel_radius.c
    team/group/issue10217/cel/cel_sqlite3_custom.c
      - copied unchanged from r204710, trunk/cel/cel_sqlite3_custom.c
    team/group/issue10217/cel/cel_tds.c
      - copied unchanged from r204710, trunk/cel/cel_tds.c
    team/group/issue10217/channels/sig_pri.c
      - copied unchanged from r204710, trunk/channels/sig_pri.c
    team/group/issue10217/channels/sig_pri.h
      - copied unchanged from r204710, trunk/channels/sig_pri.h
    team/group/issue10217/configs/app_mysql.conf.sample
      - copied unchanged from r204710, trunk/configs/app_mysql.conf.sample
    team/group/issue10217/configs/cdr_mysql.conf.sample
      - copied unchanged from r204710, trunk/configs/cdr_mysql.conf.sample
    team/group/issue10217/configs/cdr_syslog.conf.sample
      - copied unchanged from r204710, trunk/configs/cdr_syslog.conf.sample
    team/group/issue10217/configs/cel.conf.sample
      - copied unchanged from r204710, trunk/configs/cel.conf.sample
    team/group/issue10217/configs/cel_adaptive_odbc.conf.sample
      - copied unchanged from r204710, trunk/configs/cel_adaptive_odbc.conf.sample
    team/group/issue10217/configs/cel_custom.conf.sample
      - copied unchanged from r204710, trunk/configs/cel_custom.conf.sample
    team/group/issue10217/configs/cel_pgsql.conf.sample
      - copied unchanged from r204710, trunk/configs/cel_pgsql.conf.sample
    team/group/issue10217/configs/cel_sqlite3_custom.conf.sample
      - copied unchanged from r204710, trunk/configs/cel_sqlite3_custom.conf.sample
    team/group/issue10217/configs/cel_tds.conf.sample
      - copied unchanged from r204710, trunk/configs/cel_tds.conf.sample
    team/group/issue10217/configs/chan_mobile.conf.sample
      - copied unchanged from r204710, trunk/configs/chan_mobile.conf.sample
    team/group/issue10217/configs/chan_ooh323.conf.sample
      - copied unchanged from r204710, trunk/configs/chan_ooh323.conf.sample
    team/group/issue10217/configs/res_config_mysql.conf.sample
      - copied unchanged from r204710, trunk/configs/res_config_mysql.conf.sample
    team/group/issue10217/configs/res_config_sqlite.conf.sample
      - copied unchanged from r204710, trunk/configs/res_config_sqlite.conf.sample
    team/group/issue10217/doc/tex/cel-doc.tex
      - copied unchanged from r204710, trunk/doc/tex/cel-doc.tex
    team/group/issue10217/doc/tex/celdriver.tex
      - copied unchanged from r204710, trunk/doc/tex/celdriver.tex

[... 16258 lines stripped ...]



More information about the svn-commits mailing list