README.txt 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. For more informations, see readme.html in the 'doc' subdirectory. There you
  2. can also find the default CSS for the HTML output.
  3. This program is free software; you can redistribute it and/or modify
  4. it under the terms of the GNU General Public License as published by
  5. the Free Software Foundation; either version 2 of the License, or
  6. (at your option) any later version.
  7. This program is distributed in the hope that it will be useful,
  8. but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  10. GNU General Public License for more details.
  11. You should have received a copy of the GNU General Public License
  12. along with this program; if not, write to the Free Software
  13. Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  14. (the file COPYING contains the whole GNU General Public License)
  15. Source file overview
  16. --------------------
  17. dglobals.pp
  18. * Global declarations
  19. * Catalogue management (internal link and description lookup tables)
  20. dwriter.pp
  21. * Basic writer (output generator) class
  22. dw_html.pp
  23. * HTML/XHTML output generator
  24. dwlinear.pp
  25. * Abstract linear documentation generator.
  26. dw_latex.pp
  27. * LaTeX output generator, based on linear documentation generator.
  28. dw_txt.pp
  29. * Plain text output generator, based on linear documentation generator.
  30. dw_xml.pp
  31. * 'XML struct' output generator
  32. dw_man.pp
  33. * 'Unix man page' output generator
  34. fpdoc.pp
  35. * Main program
  36. fpdocstripper.lpr
  37. fpdocstripper.lpi
  38. * Utility program that strips fpdoc xml files of all elements
  39. that have no documentation in them. Useful before submitting
  40. a documentation patch as it keeps file sizes down and makes
  41. it clearer what exactly is documented.
  42. makeskel.pp
  43. * Skeleton XML description file generator
  44. dw_template.pp
  45. * template for implementing a new writer back-end.
  46. dw_lintmpl.pp
  47. * template for implementing a new linear writer back-end.
  48. Contributors
  49. ------------
  50. Initial French output strings by Pierre Muller
  51. Initial Dutch output strings by Marco van de Voort
  52. fpdocstripper by Reinier OliSlagers