descriptionC Source Code Documentation Generator
homepage URLhttp://triptico.com/software/mp_doccer.html
repository URLhttp://git.triptico.com/mp_doccer
ownerangel@triptico.com
last changeWed, 13 Jul 2011 07:42:04 +0000 (13 09:42 +0200)
last refreshSat, 31 Oct 2009 21:44:10 +0000 (31 22:44 +0100)
content tags
add:
README
mp_doccer README
================

 mp_doccer - A C source code documentation generator
 Copyright (C) 2001/2008 Angel Ortega <angel@triptico.com>
 Home Page: http://triptico.com/software/mp_doccer.html

This software is GPL. NO WARRANTY. See file 'COPYING' for details.

Description
-----------

This is a tool that travels a bunch of C code files and extracts specially
marked information to build documentation texts. It's similar to Javadoc, the
Linux Kernel 2.4.x Documentation and gtkdoc, but simpler / faster / nicer.

mp_doccer expects to find comments inside the source code in the following
manner:

 /**
  * function_name - brief description
  * @arg1: optional argument 1
  * @arg2: optional argument 2 (many)
  *
  * Longer description than
  * can span many lines
  * [category]
  * [category]
  */
 type function_prototype(type)
 /** optional alternative synopsis line */
 /** another optional alternative synopsis line */
 {

for functions, or

 /**
  * variable_name - brief description
  *
  * Longer description than
  * can span many lines
  * [category]
  * [category]
  */
 type variable_name;

for variables. Note that the format for functions and variables is exactly the
same, as the arguments are optional. The synopsis is taken from the end of
the comment until a { or ; is found, so it works equally for variables and
functions.

The format is almost the same as the one used in the Linux Kernel 2.4.x
Documentation. In fact, I thought the markup described there was clean and
simple so I started using it; but after seeing that those tools needed a
complete SGML toolkit, I decided to make my own (don't need no stinkin'
SGML monster to build some crappy HTML files, thanks).

If you want to put a synopsis other than the function definition, you
can add after it (but before the {) in succesive lines between the /** and
*/ markers.

You can also add categories to each entry by appending lines surrounded
by square brackets. You can have none, one or more for each function or
variable. If you include categories, an index by category will be
created for you in the output documentation.

The arguments and return value can be decorated in the description and the
alternative synopsis by prefixing it with a @ or %, respectively.

The Minimum Profit source code is documented with this tool; take a look at
it if you want examples.

As of this version, there are four possible output formats:

 * html: a tree of HTML files.
 * man: a bunch of man pages in troff(1) format.
 * localhelp: an executable sh script (localhelp.sh by default), that
   gives help about the string sent as a command line argument.
 * html1: all in one big HTML page.
 * grutatxt: all in one big file in Grutatxt format.

The `html' format is the default. For `html' and `man', the -o parameter
must be an existing directory. For `localhelp', `html1' and `grutatxt',
the output file name.

It's easy to use; just document your functions as described above and type

    $ mp_doccer *.c -f html -o docdirectory --title="Your Program API"

or
    $ mp_doccer *.c -f man -o docdirectory --title="Your Program API"

or
    $ mp_doccer *.c -f localhelp -o myhelp.sh --title="Your Program API"

or
    $ mp_doccer *.c -f html1 -o yourapi --title="Your Program API"

or
    $ mp_doccer *.c -f grutatxt -o yourapi --title="Your Program API"

Cascading Style Sheet Classes
-----------------------------

The following CSS classes are used when HTML output is used:

 * funcname: A function name
 * funcarg: A function's arguments
 * funcret: A function's return value
 * funcsyn: A function synopsis

To Do
-----

 * The mp_doccer markup can also be used to document structs, so it should
   be a good idea to have mp_doccer support it (now it doesn't).

---
Angel Ortega <angel@triptico.com>
shortlog
2011-07-13 Angel OrtegaUpdated README.master
2011-07-13 Angel OrtegaNew file .my-git-push.
2009-05-05 Angel OrtegaUpdated README file.
2008-12-04 Angel OrtegaVersion 1.2.2 RELEASED.1.2.2
2008-11-28 Angel OrtegaNew option --abstract.
2008-11-28 Angel OrtegaUpdated TODO (Closes: #1006, #1008).
2008-11-28 Angel OrtegaUpdated RELEASE_NOTES.
2008-11-28 Angel OrtegaFixed ugly leading spaces and marks in function syntax.
2008-11-28 Angel OrtegaAdded the brief description to the alphabetic list.
2008-11-21 Angel OrtegaCategories are also clickable.
2008-11-21 Angel OrtegaAdd author and signature.
2008-11-21 Angel OrtegaFunction names are links.
2008-11-21 Angel OrtegaFirst approach to a grutatxt converter.
2008-11-21 Angel OrtegaUpdated TODO.
2008-11-05 Angel OrtegaUpdated README.
2008-04-06 Angel OrtegaVersion 1.2.1 RELEASED.1.2.1
...
tags
15 years ago 1.2.2
16 years ago 1.2.1
18 years ago 1.2.0
20 years ago 0.1.11
heads
12 years ago master