From 34e161b87acb46d6295a244425ec333141c9f062 Mon Sep 17 00:00:00 2001 From: Timo Heister Date: Mon, 23 Feb 2015 15:58:12 -0500 Subject: [PATCH] update wrapcomments script handle many additional doxygen commands correctly --- contrib/utilities/wrapcomments.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/contrib/utilities/wrapcomments.py b/contrib/utilities/wrapcomments.py index ac2c2414a7..8001666120 100755 --- a/contrib/utilities/wrapcomments.py +++ b/contrib/utilities/wrapcomments.py @@ -92,14 +92,20 @@ def format_block(lines, infostr=""): endidx = len(lines)-1 curlines = [] - ops_startline = ["
  • ", "@param", "@returns", "@warning", "@ingroup", "@author", "@date", "@related", "@deprecated", "@image", "@return"] + ops_startline = ["
  • ", "@param", "@returns", "@warning", "@ingroup", "@author", "@date", "@related", "@relates", "@relatesalso", "@deprecated", "@image", "@return", "@brief", "@attention", "@copydoc", "@addtogroup", "@todo", "@tparam", "@skip", "@skipline", "@until", "@line", "@dontinclude", "@include", "@see", "@note"] # subset of ops_startline that does not want stuff from the next line appended # to this. ops_also_end_paragraph = ["@image"] + # stuff handled in the while loop down: @code, @verbatim, @f @ref + ops_separate_line = ["
      ", "
    ", "", "@{", "@}", "
    "] + + #todo: + # @arg @c @cond @em @endcond @f{ @internal @name @post @pre @sa + while idx