Changeset 96
- Timestamp:
- 02/05/07 06:42:20 (2 years ago)
- Files:
-
- misc/configparse.d (modified) (2 diffs)
- misc/configparse.html (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
misc/configparse.d
r95 r96 20 20 SOFTWARE. 21 21 */ 22 /** 23 * Config file parsing, in the style of Python's ConfigParser. 24 */ 22 /++ 23 Config file parsing, in the style of Python's ConfigParser. 24 25 XXX: Add description of config file format. 26 +/ 25 27 module configparse; 26 28 … … 390 392 /++ 391 393 Writes the config _file to file. Note that ConfigParser does not preserve 392 the ordering of options or sections, although it will always write the394 the ordering of options or sections, although it will always _write the 393 395 global section first. 394 396 +/ misc/configparse.html
r95 r96 6 6 <!-- Generated by Ddoc from configparse.d --> 7 7 Config file parsing, in the style of Python's ConfigParser. 8 8 <br><br> 9 <b>XXX:</b><br> 10 Add description of config file format. 9 11 <br><br> 10 12 … … 277 279 </big></dt> 278 280 <dd>Writes the config file to <i>file</i>. Note that ConfigParser does not preserve 279 the ordering of options or sections, although it will always <u>write</u>the281 the ordering of options or sections, although it will always write the 280 282 global section first. 281 283
