Skip to content
Snippets Groups Projects
  1. May 08, 2015
    • George Joseph's avatar
      doc: Make progdocs play nice with git · 7de043e4
      George Joseph authored
      Moved contrib/asterisk-ng-doxygen to doc/asterisk-ng-doxygen.in
      
      Changed /Makefile to copy asterisk-ng-doxygen.in to
      asterisk-ng-doxygen then modify it with version instead of
      modifying asterisk-ng-doxygen directly.  Updated clean
      targets as well.
      
      Updated /.gitignore and doc/.gitignore.
      
      Change-Id: I38712d3e334fa4baec19d30d05de8c6f28137622
      7de043e4
  2. Apr 12, 2015
    • George Joseph's avatar
      Add .gitignore and .gitreview files · 7079f53a
      George Joseph authored
      Add the .gitignore and .gitreview files to the asterisk repo.
      
      NB:  You can add local ignores to the .git/info/exclude file
      without having to do a commit.
      
      Common ignore patterns are in the top-level .gitignore file.
      Subdirectory-specific ignore patterns are in their own .gitignore
      files.
      
      Change-Id: I2b7513fc9acf5d432cf9587c25faa9786af14abf
      Tested-by: George Joseph
      7079f53a
  3. Sep 26, 2014
  4. Aug 29, 2014
  5. Jan 17, 2014
    • Rusty Newton's avatar
      Documentation: doc fixes across various parts of the code for ASTERISK issues... · 9e640759
      Rusty Newton authored
      Documentation: doc fixes across various parts of the code for ASTERISK issues 23061,23028,23046,23027
      
      Fixes typos of "transfered" instead of "transferred" in various code. Fixes incorrect gosub param help text for app_queue.
      Fixes Asterisk man pages containing unquoted minus signs. Adds note about the "textsupport" option in sip.conf.sample.
      
      (issue ASTERISK-23061)
      (issue ASTERISK-23028)
      (issue ASTERISK-23046)
      (issue ASTERISK-23027)
      (closes issue ASTERISK-23061)
      (closes issue ASTERISK-23028)
      (closes issue ASTERISK-23046)
      (closes issue ASTERISK-23027)
      Reported by: Eugene, Jeremy Laine, Denis Pantsyrev
      Patches:
       transferred.patch uploaded by Jeremy Laine (license 6561)
       hyphen.patch uploaded by Jeremy Laine (license 6561)
       sip.conf.sample.patch uploaded by Eugene (license 6360)
      ........
      
      Merged revisions 405791 from http://svn.asterisk.org/svn/asterisk/branches/1.8
      
      
      git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/11@405792 65c4cc65-6c06-0410-ace0-fbb531ad65f3
      9e640759
  6. Oct 02, 2013
  7. Jan 16, 2013
  8. Aug 30, 2012
  9. Jul 19, 2012
    • Matthew Jordan's avatar
      Add the ability to specify technology specific documentation · 86ff5585
      Matthew Jordan authored
      A number of applications/AMI commands in Asterisk have specific behavioral
      differences depending on the resource or channel technology those
      applications are executed on.  For example, the MessageSend application/
      command is technology agnostic, but how the channel drivers that support
      that functionality behave is dependant on the protocols and channel
      driver implementation.  Prior to this patch, those details were either
      documented in the application/command documentation itself, or were left
      undocumented.
      
      This patch adds a new element to the documentation schema, <info/>.  An info
      node is essentially a piece of technology specific reference information that
      can be included by any top level XML documentation node.  For example, the
      MessageSend application can now include XMPP/SIP specific information, where
      that technology specific information can be defined in chan_motif/res_xmpp/
      chan_sip.  Likewise, that information can also be included in the MessageSend
      AMI command.
      
      Review: https://reviewboard.asterisk.org/r/2049
      
      
      
      
      git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@370278 65c4cc65-6c06-0410-ace0-fbb531ad65f3
      86ff5585
  10. Jul 10, 2012
  11. Jun 25, 2012
    • Matthew Jordan's avatar
      Add AMI event documentation · 82a7409c
      Matthew Jordan authored
      This patch adds the core changes necessary to support AMI event documentation
      in the source files of Asterisk, and adds documentation to those AMI events
      defined in the core application modules.  Event documentation is built from
      the source by two new python scripts, located in build_tools:
      get_documentation.py and post_process_documentation.py.
      
      The get_documentation.py script mirrors the actions of the existing AWK
      get_documentation scripts, except that it will scan the entirety of a source
      file for Asterisk documentation.  Upon encountering it, if the documentation
      happens to be an AMI event, it will attempt to extract information about the
      event directly from the manager event macro calls that raise the event.  The
      post_process_documentation.py script combines manager event instances that
      are the same event but documented in multiple source files.  It generates
      the final core-[lang].xml file.
      
      As this process can take longer to complete than a typical 'make all', it
      is only performed if a new make target, 'full', is chosen.
      
      Review: https://reviewboard.asterisk.org/r/1967/
      
      git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@369346 65c4cc65-6c06-0410-ace0-fbb531ad65f3
      82a7409c
  12. Oct 10, 2011
  13. Aug 09, 2011
  14. Feb 08, 2011
  15. Nov 11, 2010
  16. Oct 14, 2010
  17. Sep 21, 2010
  18. Sep 14, 2010
  19. Sep 10, 2010
  20. Sep 02, 2010
  21. Aug 16, 2010
  22. Aug 03, 2010
  23. Jul 23, 2010
  24. Jul 16, 2010
  25. Jul 14, 2010
  26. Jul 07, 2010
  27. Jun 28, 2010
  28. Jun 25, 2010
  29. Jun 16, 2010
  30. Jun 15, 2010
  31. Jun 12, 2010
  32. Jun 10, 2010
  33. Jun 08, 2010
    • Terry Wilson's avatar
      Add SRTP support for Asterisk · 857814f4
      Terry Wilson authored
      After 5 years in mantis and over a year on reviewboard, SRTP support is finally
      being comitted. This includes generic CHANNEL dialplan functions that work for
      getting the status of whether a call has secure media or signaling as defined
      by the underlying channel technology and for setting whether or not a new
      channel being bridged to a calling channel should have secure signaling or
      media. See doc/tex/secure-calls.tex for examples.
      
      Original patch by mikma, updated for trunk and revised by me.
      
      (closes issue #5413)
      Reported by: mikma
      Tested by: twilson, notthematrix, hemanshurpatel
      
      Review: https://reviewboard.asterisk.org/r/191/
      
      
      git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@268894 65c4cc65-6c06-0410-ace0-fbb531ad65f3
      857814f4
  34. Jun 02, 2010
Loading