From: bangerth Date: Wed, 25 Oct 2006 17:30:43 +0000 (+0000) Subject: Implement a filter to make sure our dealii:: qualified name look as if they meant... X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8b7586bc6f650b5e04ea5ea3b07f1659a004cfc8;p=dealii-svn.git Implement a filter to make sure our dealii:: qualified name look as if they meant the global scope for doxygen git-svn-id: https://svn.dealii.org/trunk@14090 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/doc/doxygen/filter b/deal.II/doc/doxygen/filter index df9098f5c6..74af404885 100755 --- a/deal.II/doc/doxygen/filter +++ b/deal.II/doc/doxygen/filter @@ -22,4 +22,14 @@ s/\\begin\{enumerate\}/
    /g; s/\\end\{enumerate\}/<\/OL>/g; s/\@begin\{enumerate\}/
      /g; s/\@end\{enumerate\}/<\/OL>/g; -#s/\\end\{verbatim\}/\@endverbatim/g; + + +# we don't let doxygen put everything into a namespace +# dealii. consequently, doxygen can't link references that contain an +# explicit dealii:: qualification. remove it and replace it by the +# global scope +# +# Now, as of doxygen 1.5, this still produces the wrong result, but +# that's not our fault. This is reported here: +# http://bugzilla.gnome.org/show_bug.cgi?id=365053 +s/dealii::/::/g;