Software Documentation

From Freephile Wiki
Jump to navigation Jump to search

There are different types of documentation for software:

  1. "Developer Docs" is the documentation of the code, targeted at developers, to explain what the code does and how it does it so that future developers can continue to enhance and maintain the code.
    1. As an absolute bare minimum, your code must have comments to make it easier to review the code and understand more quickly what is going on in the code.
    2. More fully, the developer docs include info on
      1. getting the tools and environment setup to be able to code, build, test, and debug the software
      2. getting the software (development version)
      3. installing the software
      4. understanding how the software is built, tested, and debugged
      5. contributing to the project with bug reports, patches or pull requests
  2. "User Docs" is the software manual, targeted at the users of the software (which may include developers or other technical audiences), written in a way as to explain how to use the software:
    1. getting the software
    2. installing the software
    3. using the software in the most common use-cases with examples, illustrations, or videos
      1. On this last point, a special name for the "User Manual", especially when integrated into the user interface of the software, is "Help". Because systems may be aggregates of several pieces of software, there is often a need for "Help" that addresses how the underlying software is aggregated into that particular system. A perfect example is a wiki (like this one) that includes many 'extensions' to provide specific functionality in addition to what the core software does; and local .
  3. "API Docs" is a special nuance of Documentation. If your software includes an API, then that API needs to be fully documented almost as a separate piece of software -- for both developers of the API and users of the API.

Best Practices[edit | edit source]

Having good Developer documentation is a "Best Practice" that has several important positive effects. For adoption (meaning success) of your software, good docs are essential. Actual experience in using the phpDocumentor tool, PyDoc, or other documentation tools is a quality that separates developers from non-developers or senior developers from jr. developers. Writing (good) (formatted) comments into your source code so that docs can be automatically generated on a nightly basis is not optional if you are really interested in your software being successful.

Examples[edit | edit source]

Tools / Generators / Examples[edit | edit source]

phpDocumentor is the best documentation tool for PHP sources with inspiration from JavaDoc.

The PyDoc tool is used to generate documentation on the language itself, and is also leveraged as a framework for developers of help systems and obviously used to document any classes, and methods of source code.

The CiviCRM project, which originally used the Atlassian Confluence Wiki product for documentation, moved over to the (better) Read The Docs system[1] (based on markdown) in a github repository and uses the MkDocs (BSD) static site generator tool to publish to their own domain http://docs.civicrm.org/user/en/4.6/

Meanwhile, the Drupal project has a Documentation Working Group who is using AsciiDoc (GPL) to do the User Guide documentation for Drupal 8

Documenting PHP Code[edit | edit source]

The main resource is the Project website, including tutorials and full Documentation. The system can be installed via the PEAR installer, but should not be setup in an Internet-facing environment. See the PhpDocumentor article for details on our installation and usage.

Documenting JavaScript[edit | edit source]

JSDuck is an open source ExtJS 4 project developed at Sencha to help Javascript developers generate beautiful documentation viewable in a web browser. Based loosely on JavaDoc, JSDuck parses documentation embedded in the source files of your project enabling you to keep your docs close to your code. In this session we will cover the many features of JSDuck and by the end you will know how to create API documentation, guides, videos and examples for your own project or application.

Documenting other languages[edit | edit source]

Aside from the Python-specific PyDoc, there are ROBODoc (Windows and Fink) and Doxygen tools which should prove to meet all needs. For doxygen, you can

sudo apt-get install doxygen-gui doxygen doxygen-doc

Local Documentation Resources for your Operating System[edit | edit source]

These tips for Linux users on how to reveal man pages, howtos, and other help.

  • Create your own internal-use Documentation by creating a symbolic link from /usr/share/docs to /var/www/docs, and fire up your web browser to view your systems documentation.
  • info:/dir (type this into the location bar of Konqueror) browse the Info system. You can of course type "info" in your shell, but I find that browsing "info" through Konqueror is a lot nicer.
  • man:/command (type this into the location bar of Konqueror) browse the Man system. You can of course type "man command" in your shell, but I find that browsing "manuals" through Konqueror is a lot nicer.

Documentation Documentation[edit | edit source]

OK, so you've adopted all kinds of tools, and procedures for documentation, and you've got multiple people actually writing or contributing to your project's documentation... Great! That means you need some documentation about how you document things :-) Examples:

References[edit source]