I'm trying to find some solution which would provide some type of linking between software documentation and source code. I mean that it's quite difficult to maintain some old software solution which is poorly documented and it would be great to link the particular part of code with it's implementation (concrete condition, cycle etc.). Does anyone use somethink like this? Thank you
|
|
|
I think it is more to do with discipline rather than process or tool. In big IT companies there are processes and tools to help people achieve it but still you will find plenty of instances where the documents are not in sync with the source for e.g., design document gets created after requirement and not updated once the testing phase is completed. The bug fixes / enhancements that happen in code in production are not synced back in documents like design document , test scenarios, user guide etc. etc. So once the application goes into production it is mostly the code which remains active and other artifacts goes in passive mode , eventually making the artifacts out of sync.
Most of the support organizations use some issue tracking tools or trouble ticket system or support ticket or incident ticket system. The tool helps you to keep a track of the application changes that has happened due to any reported issue. I won’t be mentioning the expensive tools, which have the capability of round trip engineering between model, document and code, but will try to suggest a simple way to handle this with some discipline.
. Updating a wiki and linking to another document is far easier in HTML than to create a cross referencing document in MS word . For any issue / ticket / feature enhancement update the wiki and link to source code using any of the below mentioned ways
|
|||
|
|
I'm thinking you want a documentation that has links to source code (and maybe vice-versa), am I understanding that right? Following that thought, I'd say there's no generic thing which does that. For specific languages there might be tools to do that kind of thing. For example, Kohana (a PHP framework) created a documentation tool for themselves, which shows the source code. This uses PHPdoc to mark the source code with special tags to set up the metadata, so the Kodoc (the tool) knows what things are. In the MS Visual Studio you also tag the source code with a XML, so the InteliSense will show description of the code your using. You can also use Sandcastle to build a proper documentation based on these tags. More generic language-agnostic tools would be hard to found. You could try Doxygen which was made for C++ but work with other languages, although I can't tell if it does what you want. Note: none of that links to the source code. And I've never seen such a tool. Kodoc shows source code only and that's the most I can think of. |
|||
|
|
|
Hi, I understand your problem very deeply as far as I am struggling with such issues every day. I found that for applications with graphical interface the simpliest way for me is:
|
|||
|
|
