[Doxygen-users] Doxygen-1.2.7-20010524 in CVS
Brought to you by:
dimitri
|
From: Dimitri v. H. <di...@st...> - 2001-05-24 16:36:13
|
Hi,
Here is the changelog for this CVS update:
----------------------------------------------------------------------------
+ ADD: Added MAN_LINKS option (thanks to Patrick Ohly for the patch).
+ ADD: Added grouping patches by Patrick Ohly:
There are now three commands to define a group:
\defgroup name title
\addtogroup name [title]
\weakgroup name [title]
\defgroup must be used exactly once for a group, so you should
provide a title. Without the title you will get a warning and
doxygen will use the name as title (this is the old behaviour).
/** \addtogroup name */ can be used to add documentation or
members to a group (as in 1.2.7), but the group is created if
it doesn't exist yet. You can provide the title later
with another block:
/**
* \addgroup name title
* documentation
*/
Setting different titles will trigger a warning without overwriting
the title once more.
\weakgroup is exactly the same as \addtogroup, but if a member
is put into such a group with \weakgroup name @{ @} and into
another group with \[def|addto]group @{ @}, then it will be
placed into the other group without issuing a warning.
Actually there is a four-level hierarchy for grouping with
(from strongest to weakest) \ingroup, \defgroup, \addtogroup,
\weakgroup. You will get warnings when putting members into
groups with commands of the same level, but only when you really
document this member. This will not trigger a warning and put
variable a into Group1:
/** \addtogroup Group1 */
/*@{*/
/** this is the real group */
extern int a;
/*@}*/
/** \addtogroup Group2 */
/*@{*/
extern int a;
/*@}*/
+ ADD: Merged translation related patches sent by Petr Prikryl.
+ BUG: Applied a number of patches sent by Jens Seidel:
typos: various typos.
spec: remove CVS directories after make install
de: german updates in translator_de.h
misc: added "\n"'s in charset table (trRTFansicp()) in src/translator_en
added SEARCH_INCLUDES to INCLUDE_GRAPH, INCLUDED_BY_GRAPH descript
in doc/config.doc
mgroup:removed (invalid) \mgroup commands in src/translator_*.h
+ BUG: Fixed compiler limit problem on Windows (thanks to Trevor Robinson).
+ BUG: Add -dBATCH in system calls to ghostscipt (needed for formulas)
to avoid a command prompt for newer versions of ghostscript
(thanks to Marvin Wolfthal).
+ BUG: For pages, the header appeared twice in the output.
+ BUG: In some situations doxygen wanted to write a files containing a \n.
+ CHG: Doxygen now uses a more natural naming scheme for man pages.
+ CHG: Man page and rtf output are now disabled by default.
----------------------------------------------------------------------------
Enjoy,
Dimitri
|