Is there any free HTML creating documentation tool that fully understands Delphi 2009 features like generics and anonymous methods?
I tried DelphiCodeToDoc but it crashes while parsing the source code.
Is there any free HTML creating documentation tool that fully understands Delphi 2009 features like generics and anonymous methods?
I tried DelphiCodeToDoc but it crashes while parsing the source code.
If you have the Enterprise or Architect SKUs, there's an option to generate documentation. I haven't used it in 2009, so I can't say how well it handles generics and anonymous methods.
See this question for suggestions (but no solution): is-there-a-delphi-code-documentor-that-supports-current-delphi-syntax
Delphi 2009 Professional allows the selection of "Generate XML Documentation", this outputs a .xml file that represents the code and documentation in that file. You would have to write XSL transforms to produce actual usable documentation from this. We have built a system that builds wiki pages and uploads this to out internal documentation system, but you could produce windows help files, etc as well.
Doc-O-Matic is available in a free command line version, and supports Delphi 2009.
Doc-O-Matic Express is a command line tool, it generates Web Help/browser based Help, HTML Help and Help 2 output directly from the source code and in-source comments.
It is fast, and the output looks quite nice. I am not using it for my commercial projects yet but it is a candidate.
As onnodb said, I'm very interrested to have any feedback on the issue you had with DelphiCodeToDoc ... even if it was 1 year ago :)