Commit 238c63a1 authored by dimitri's avatar dimitri
Browse files

Release-1.5.5-20080325

parent f630007a
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
DOXYGEN Version 1.5.5-20080316
DOXYGEN Version 1.5.5-20080325

Please read the installation section of the manual 
(http://www.doxygen.org/install.html) for instructions.

--------
Dimitri van Heesch (16 March 2008)
Dimitri van Heesch (25 March 2008)
+2 −2
Original line number Diff line number Diff line
DOXYGEN Version 1.5.5_20080316
DOXYGEN Version 1.5.5_20080325

Please read INSTALL for compilation instructions.

@@ -17,4 +17,4 @@ to subscribe to the lists or to visit the archives.

Enjoy,

Dimitri van Heesch (dimitri@stack.nl) (16 March 2008)
Dimitri van Heesch (dimitri@stack.nl) (25 March 2008)
+1 −1
Original line number Diff line number Diff line
@@ -20,7 +20,7 @@ doxygen_version_minor=5
doxygen_version_revision=5

#NOTE: Setting version_mmn to "NO" will omit mmn info from the package.
doxygen_version_mmn=20080316
doxygen_version_mmn=20080325

bin_dirs=`echo $PATH | sed -e "s/:/ /g"`

+19 −0
Original line number Diff line number Diff line
@@ -53,6 +53,8 @@ documentation:
\refitem cmdclass \\class
\refitem cmdcode \\code
\refitem cmdcond \\cond
\refitem cmdcopybrief \\copybrief
\refitem cmdcopydefails \\copydetails
\refitem cmdcopydoc \\copydoc
\refitem cmddate \\date
\refitem cmddef \\def
@@ -1778,6 +1780,23 @@ Make sure you have first read \ref intro "the introduction".
  The copydoc command can be used recursively, but cycles in the copydoc
  relation will be broken and flagged as an error.

  Note that both the brief description and the detailed documentation
  will be copied. See \ref cmdcopybrief "\\cmdcopybrief" and
  \ref cmdcopydetails "\\cmdcopydetails" for copying only the brief or
  detailed part of the comment block.

<hr>
\section cmdcopybrief \\copybrief <link-object>

Works in a similar way as \ref cmdcopydoc "\\copydoc" but will
only copy the brief description, not the detailed documentation.

<hr>
\section cmdcopydetails \\copydetails <link-object>

Works in a similar way as \ref cmdcopydoc "\\copydoc" but will
only copy the detailed documentation, not the brief description.

<hr>
\section cmddot \\dot

+20 −0
Original line number Diff line number Diff line
@@ -81,6 +81,8 @@ followed by the descriptions of the tags grouped by category.
\refitem cfg_distribute_group_doc DISTRIBUTE_GROUP_DOC
\refitem cfg_docset_bundle_id DOCSET_BUNDLE_ID
\refitem cfg_docset_feedname DOCSET_FEEDNAME
\refitem cfg_dot_fontname DOT_FONTNAME
\refitem cfg_dot_fontpath DOT_FONTPATH
\refitem cfg_dot_graph_max_nodes DOT_GRAPH_MAX_NODES
\refitem cfg_dot_image_format DOT_IMAGE_FORMAT
\refitem cfg_dot_multi_targets DOT_MULTI_TARGETS
@@ -1814,6 +1816,24 @@ TAGFILES = file1=loc1 "file2 = loc2" ... </pre>
 visualization toolkit from AT\&T and Lucent Bell Labs. The other options in 
 this section have no effect if this option is set to \c NO (the default)
 
<dt>\c DOT_FONTNAME <dd>
 \addindex DOT_FONTNAME
 By default doxygen will write a font called FreeSans.ttf to the output 
 directory and reference it in all dot files that doxygen generates. This 
 font does not include all possible unicode characters however, so when you need 
 these (or just want a differently looking font) you can specify the font name 
 using \c DOT_FONTNAME. You need need to make sure dot is able to find the font, 
 which can be done by putting it in a standard location or by setting the \c DOTFONTPATH
 environment variable or by setting \c DOT_FONTPATH to the directory containing
 the font.

<dt>\c DOT_FONTPATH <dd>
 \addindex DOT_FONTPATH
 By default doxygen will tell dot to use the output directory to look for the
 FreeSans.ttf font (which doxygen will put there itself). If you specify a 
 different font using \c DOT_FONTNAME you can set the path where dot 
 can find it using this tag. 

\anchor cfg_class_graph
<dt>\c CLASS_GRAPH <dd>
 \addindex CLASS_GRAPH
Loading