Ignore:
Timestamp:
Feb 24, 2014 11:00:15 AM (10 years ago)
Author:
bennylp
Message:

More re #1715: doxygen integration into the book

Location:
pjproject/trunk/doc/pjsip-book
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/doc/pjsip-book

    • Property svn:ignore set to
      xml
  • pjproject/trunk/doc/pjsip-book/intro.rst

    r4704 r4762  
    1  
    21 
    32Introduction to PJSUA2 
     
    54This documentation is intended for developers looking to develop Session Initiation Protocol (SIP) based client application. Some knowledge on SIP is definitely required, and of course some programming experience. Prior knowledge of PJSUA C API is not needed, although it will probably help. 
    65 
    7 This PJSUA2 module provides very high level API to do SIP calls, presence, and instant messaging, as well as handling media and NAT traversal. Knowledge of SIP protocol details (such as the grammar, transaction, dialog, and whatnot) are not required, however you should know how SIP works in general and particularly how to configure SIP clients to, e.g. register to a SIP provider, specify SIP URI to make call to, and so on, to use the module. 
     6This PJSUA2 module provides very high level C++ API to do SIP calls, presence, and instant messaging, as well as handling media and NAT traversal. Knowledge of SIP protocol details (such as the grammar, transaction, dialog, and whatnot) are not required, however you should know how SIP works in general and particularly how to configure SIP clients to, e.g. register to a SIP provider, specify SIP URI to make call to, and so on, to use the module. 
    87 
    98Getting Started with PJSIP 
    109============================== 
    11 To begin using PJSIP 
    12 http://trac.pjsip.org/repos/wiki/Getting-Started 
     10Check `PJSIP's Features List`_ to make sure that it has the features that you require. 
     11 
     12.. _`PJSIP's Features List`: http://trac.pjsip.org/repos/wiki/PJSIP-Datasheet 
     13 
     14Then to begin using PJSIP, the `Getting Started Guide`_ contains instructions to acquire and build PJSIP on various platforms that we support. 
     15 
     16.. _`Getting Started Guide`: http://trac.pjsip.org/repos/wiki/Getting-Started  
    1317 
    1418PJSIP Info and Documentation 
    1519================================ 
    16 PJSIP General Wiki: 
    17 http://trac.pjsip.org/repos/wiki 
     20To get other relevant info and documentations about PJSIP, you can visit: 
    1821 
    19 PJSIP FAQ: 
    20 http://trac.pjsip.org/repos/wiki/FAQ 
     22- `PJSIP General Wiki`_ 
     23- `PJSIP FAQ`_ 
     24- `PJSIP Reference Manual`_ - please see Reference Manual section 
    2125 
    22 PJSIP Reference Manual: 
    23 http://trac.pjsip.org/repos/wiki - Reference Manual 
     26.. _`PJSIP General Wiki`: http://trac.pjsip.org/repos/wiki 
     27.. _`PJSIP FAQ`: http://trac.pjsip.org/repos/wiki/FAQ 
     28.. _`PJSIP Reference Manual`: http://trac.pjsip.org/repos/wiki 
    2429 
    2530Building PJSUA2 
    2631================= 
    27 PJSUA2 API declaration can be found in pjproject/pjsip/include/pjsua2 while the source codes are located in pjproject/pjsip/src/pjsua2. It will be automatically built when you compile PJSIP. 
     32PJSUA2 API declaration can be found in ``pjsip/include/pjsua2`` while the source codes are located in ``pjsip/src/pjsua2``. It will be automatically built when you compile PJSIP. 
    2833 
    2934PJSUA2 Language Binding Support 
    3035=================================== 
    31 Optional if you want to: 
    32 â€‹SWIG (minimum version 2.0.5) 
     36The PJSUA2 API is also available for other programming languages via SWIG binding, such as Java and Python. 
    3337 
Note: See TracChangeset for help on using the changeset viewer.