Changeset 48


Ignore:
Timestamp:
Nov 13, 2005 4:11:05 PM (18 years ago)
Author:
bennylp
Message:

Updated pjlib docs

Location:
pjproject/trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/RELNOTES.txt

    r43 r48  
    1 Version 0.3 
     1RELEASE NOTES 
     2 
     3Version 0.3-pre4 
     4Nov 13th, 2005 
     5==================================== 
     6 
    27PJLIB 
    3         - Correct error reporting in the whole library. No more vague -1 errors! 
    4         - New super portable socket abstraction. 
    5         - Other headers were made super portable too. 
    6         - Ioqueue supports multiple pending operations in a single socket! 
    7         - No more floating point. 
    8         - Ported to new platforms: 
    9                 - i386/linux kernel (!) 
    10                 - Sparc/Solaris 
    11                 - Alpha/Linux 
     8 - Correct error reporting in the whole library. No more vague -1 errors! 
     9 - New super portable socket abstraction. 
     10 - Other headers were made super portable too. 
     11 - Ioqueue supports multiple pending operations in a single socket! 
     12 - No more floating point. 
     13 - Ported to new platforms: 
     14    - i386/linux kernel (!) 
     15    - Sparc/Solaris 
     16    - Alpha/Linux 
     17 
    1218PJSIP 
    13         - Correct error reporting in the whole library. No more -1 errors! 
    14         - Rewrote event, now much more readable. 
    15         - Per object tracing. 
     19  - Correct error reporting in the whole library. No more -1 errors! 
     20  - Rewrote event, now much more readable. 
     21  - Per object tracing. 
    1622 
    1723 
    1824Version 0.2.9 - 2005/06/19 
     25==================================== 
    1926Core: 
    2027  - Moved authentication stuff to core. 
  • pjproject/trunk/pjlib/docs/doxygen.cfg

    r1 r48  
    134134# the path. It is allowed to use relative paths in the argument list. 
    135135 
    136 STRIP_FROM_PATH        = "c:\project\pjproject-0.3" 
     136STRIP_FROM_PATH        = "c:\project\pjproject" 
    137137 
    138138# The INTERNAL_DOCS tag determines if documentation  
     
    495495# doxygen will generate files with .html extension. 
    496496 
    497 HTML_FILE_EXTENSION    = .html 
     497HTML_FILE_EXTENSION    = .htm 
    498498 
    499499# The HTML_HEADER tag can be used to specify a personal HTML header for  
  • pjproject/trunk/pjlib/docs/footer.html

    r1 r48  
    11</TD></TR> 
    22</TABLE> 
     3 
     4</td> 
     5</tr> 
     6</table> 
     7 
    38</BODY> 
    49</HTML> 
  • pjproject/trunk/pjlib/docs/header.html

    r1 r48  
    44<link href="doxygen.css" rel="stylesheet" type="text/css"> 
    55</head><body> 
    6 <A HREF="/">&lt;-- HOME</A><HR> 
    76 
     7<TABLE id="MainTable" cellSpacing="0" cellPadding="0" width="100%" border="0"> 
     8<!-- First Row, PJPROJECT logo. --> 
     9<TR> 
     10    <TD> 
     11        <TABLE id="LogoTable" cellSpacing="0" cellPadding="0" width="100%" border="0"> 
     12            <TR> 
     13                <TD><a href="/" target="_top"><IMG src="/images/pjlogo.jpg" border="0"></a></TD> 
     14                <TD>&nbsp;</TD> 
     15                <TD>&nbsp;</TD> 
     16            </TR> 
     17        </TABLE> 
     18    </TD> 
     19</TR> 
     20<!-- Second Row, a HR. --> 
     21<TR> 
     22    <td colspan="3"><hr noshade size="1"> 
     23    </td> 
     24</TR> 
     25<!-- Third row, main contents. --> 
     26<TR> 
     27    <TD> 
     28 
     29<!-- Main doxygen content --> 
    830<TABLE border="0"> 
    9   <TR><TD width="600" align="left"> 
     31  <TR><TD width="800" align="left"> 
    1032 
  • pjproject/trunk/pjlib/include/pj/doxygen.h

    r11 r48  
    3030 * 
    3131 * PJLIB and all documentation can be downloaded from  
    32  * http://www.bulukucing.org. 
     32 * http://www.pjproject.net. 
    3333 * 
    3434 * 
     
    238238 * 
    239239 * 
    240  * @subsection lexical_scanner_sec Lexical Scanner 
    241  * 
    242  * A fast, small, top-down lexical scanner to create fully optimized 
    243  * hand-written parser. See @ref PJ_SCAN for more info. 
    244  * 
    245240 * @subsection data_struct_sec Various Data Structures 
    246241 * 
     
    258253 * A convenient TRY/CATCH like construct to propagate errors, which by 
    259254 * default are used by the @ref PJ_POOL_GROUP "memory pool" and  
    260  * the @ref PJ_SCAN "scanner". The exception 
     255 * the lexical scanner in pjlib-util. The exception 
    261256 * construct can be used to write programs like below: 
    262257 * 
     
    394389 * Enjoy using PJLIB! 
    395390 * 
    396  * Benny Prijono < bennylp at bulukucing dot org > 
     391 * Benny Prijono < bennylp at pjproject dot net > 
    397392 */ 
    398393 
Note: See TracChangeset for help on using the changeset viewer.