Changeset 48 for pjproject/trunk
- Timestamp:
- Nov 13, 2005 4:11:05 PM (19 years ago)
- Location:
- pjproject/trunk
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/RELNOTES.txt
r43 r48 1 Version 0.3 1 RELEASE NOTES 2 3 Version 0.3-pre4 4 Nov 13th, 2005 5 ==================================== 6 2 7 PJLIB 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 12 18 PJSIP 13 14 15 19 - Correct error reporting in the whole library. No more -1 errors! 20 - Rewrote event, now much more readable. 21 - Per object tracing. 16 22 17 23 18 24 Version 0.2.9 - 2005/06/19 25 ==================================== 19 26 Core: 20 27 - Moved authentication stuff to core. -
pjproject/trunk/pjlib/docs/doxygen.cfg
r1 r48 134 134 # the path. It is allowed to use relative paths in the argument list. 135 135 136 STRIP_FROM_PATH = "c:\project\pjproject -0.3"136 STRIP_FROM_PATH = "c:\project\pjproject" 137 137 138 138 # The INTERNAL_DOCS tag determines if documentation … … 495 495 # doxygen will generate files with .html extension. 496 496 497 HTML_FILE_EXTENSION = .htm l497 HTML_FILE_EXTENSION = .htm 498 498 499 499 # The HTML_HEADER tag can be used to specify a personal HTML header for -
pjproject/trunk/pjlib/docs/footer.html
r1 r48 1 1 </TD></TR> 2 2 </TABLE> 3 4 </td> 5 </tr> 6 </table> 7 3 8 </BODY> 4 9 </HTML> -
pjproject/trunk/pjlib/docs/header.html
r1 r48 4 4 <link href="doxygen.css" rel="stylesheet" type="text/css"> 5 5 </head><body> 6 <A HREF="/"><-- HOME</A><HR>7 6 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> </TD> 15 <TD> </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 --> 8 30 <TABLE border="0"> 9 <TR><TD width=" 600" align="left">31 <TR><TD width="800" align="left"> 10 32 -
pjproject/trunk/pjlib/include/pj/doxygen.h
r11 r48 30 30 * 31 31 * PJLIB and all documentation can be downloaded from 32 * http://www. bulukucing.org.32 * http://www.pjproject.net. 33 33 * 34 34 * … … 238 238 * 239 239 * 240 * @subsection lexical_scanner_sec Lexical Scanner241 *242 * A fast, small, top-down lexical scanner to create fully optimized243 * hand-written parser. See @ref PJ_SCAN for more info.244 *245 240 * @subsection data_struct_sec Various Data Structures 246 241 * … … 258 253 * A convenient TRY/CATCH like construct to propagate errors, which by 259 254 * default are used by the @ref PJ_POOL_GROUP "memory pool" and 260 * the @ref PJ_SCAN "scanner". The exception255 * the lexical scanner in pjlib-util. The exception 261 256 * construct can be used to write programs like below: 262 257 * … … 394 389 * Enjoy using PJLIB! 395 390 * 396 * Benny Prijono < bennylp at bulukucing dot org>391 * Benny Prijono < bennylp at pjproject dot net > 397 392 */ 398 393
Note: See TracChangeset
for help on using the changeset viewer.