From: mquinson Date: Mon, 31 Jul 2006 10:38:17 +0000 (+0000) Subject: Also post-process the tutorial X-Git-Tag: v3.3~2703 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/3f3d259ba77b65ac92dbe3775fb3102acb1b9066 Also post-process the tutorial git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@2656 48e7efb5-ca39-0410-a469-dd3cf9ba447f --- diff --git a/tools/doxygen/doxygen_postprocesser.pl b/tools/doxygen/doxygen_postprocesser.pl index 37f925c5b6..f3d53f1469 100755 --- a/tools/doxygen/doxygen_postprocesser.pl +++ b/tools/doxygen/doxygen_postprocesser.pl @@ -3,7 +3,11 @@ 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/publis.html html/pages.html html/modules.html html/contrib.html index.php); +my @extra_files = qw(html/index.html html/faq.html html/publis.html html/pages.html html/modules.html html/contrib.html index.php html/GRAS_tut.html); + +map {push @extra_files, "html/GRAS_tut_$_.html"} qw (intro + tour tour_install tour_setup tour_simpleexchange tour_args tour_callbacks tour_globals + tour_logs tour_timers tour_exceptions tour_rpc); my %debug; $debug{'parse'} = 0; # show how we parse the module tree @@ -233,7 +237,7 @@ foreach my $file (@allfiles) { next; } s|Modules|Modules API|g; - s|
  • Directories
  • ||g; +# s|
  • Directories
  • ||g; print TO $_; }