From: bangerth Date: Fri, 17 Aug 2007 19:43:10 +0000 (+0000) Subject: Fix one more possible occurrence of dollar signs. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=45bff9194713c18dde169d3bcc7ef1fb389aceb7;p=dealii-svn.git Fix one more possible occurrence of dollar signs. git-svn-id: https://svn.dealii.org/trunk@14971 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/doc/doxygen/tutorial/program2doxyplain b/deal.II/doc/doxygen/tutorial/program2doxyplain index eb817a625a..8b007336f2 100644 --- a/deal.II/doc/doxygen/tutorial/program2doxyplain +++ b/deal.II/doc/doxygen/tutorial/program2doxyplain @@ -22,12 +22,14 @@ while (<>) { # adding a space # # we also need to somehow strip the $ signs out of the svn Id: string - # to avoid trouble + # to avoid trouble. The same holds for the $Name:$ tags. if ( ! m!^\s*//! ) { s!/\*!/ \*!g; s!\*/!\* /!g; s!\$Id:(.*)\$!Subversion Id: \1!g; + s!\$Name:?(.*)\$!Name: \1!g; + print " * $_"; } else { # for comments, all we do is replace section headers, and