1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
|
$Id: README 2728 2007-02-20 10:51:07Z bernhard $
Currently, there is no explicit document on the implementation
details but a UML description of the Model Module:
ThubanModul.xmi
You can edit this file with Umbrello.
Furthermore, you can generate class and method description
automatically from the source code:
pydoc coming with Python can be quite useful as a class browser.
If you want to use it on Thuban, you need to give it the right
paths so you can browse all of it.
e.g. , the following starts pydoc as webbrowser on localhost:1234/
cd thuban
PYTHONPATH=./Lib:./test/ pydoc -p 1234
A brief look into other documentation tools
resulted in that the the best overview about them was coming with
epydoc at:
http://epydoc.sourceforge.net/relatedprojects.html
epydoc seems to be very solid, because the author did a lot
of reseach and decided for a very simple markup language.
It might be surpassed one day by docutils which use the more
complicated reStructured text as markup.
As nice side contender is happydoc, because it does not import
the python modules.
|