From: mquinson Date: Sun, 5 Aug 2007 09:05:33 +0000 (+0000) Subject: Add the people page to the navbar X-Git-Tag: v3.3~1401 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/ea90c9e9fe4e63beee54ce57b3f503e3ebb05f0b?ds=sidebyside Add the people page to the navbar git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@3959 48e7efb5-ca39-0410-a469-dd3cf9ba447f --- diff --git a/tools/doxygen/doxygen_postprocesser.pl b/tools/doxygen/doxygen_postprocesser.pl index aecd1559c9..81f93fadd8 100755 --- a/tools/doxygen/doxygen_postprocesser.pl +++ b/tools/doxygen/doxygen_postprocesser.pl @@ -3,7 +3,7 @@ use strict; # Add here the pages of the documentation generated by a @page doxygen macro -my @extra_files = qw(html/index.html html/faq.html html/history.html +my @extra_files = qw(html/index.html html/faq.html html/history.html html/people.html html/publis.html html/publis_core.html html/publis_extern.html html/publis_intra.html html/pages.html html/modules.html html/contrib.html index.php html/GRAS_tut.html); @@ -288,11 +288,12 @@ foreach my $file (@allfiles) { } if (m,
  • Data\ Structures
  • ,) { print TO ' Publications'."\n"; + print TO ' People'."\n"; print TO ' History'."\n"; next; } s|Modules|Modules API|g; -# s|
  • Directories
  • ||g; + s|Related Pages|Site Plan|g; print TO $_; }