X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/2be0e4648c5b7055580df1c265b7c43ee6763a46..5fd9d7784113bac6bc3d7335498347b88554a573:/tools/doxygen/doxygen_postprocesser.pl diff --git a/tools/doxygen/doxygen_postprocesser.pl b/tools/doxygen/doxygen_postprocesser.pl index 378b4cd057..7d98a5e89e 100755 --- a/tools/doxygen/doxygen_postprocesser.pl +++ b/tools/doxygen/doxygen_postprocesser.pl @@ -5,13 +5,15 @@ use strict; # Add here the pages of the documentation generated by a @page doxygen macro my @extra_files = qw(html/index.html html/pages.html html/modules.html html/annotated.html html/functions.html html/functions_vars.html index.php - html/GRAS_tut.html html/tracing.html html/installSimgrid.html html/bindings.html + html/GRAS_tut.html html/tracing.html html/platform.html html/install.html html/bindings.html html/options.html html/use.html html/pls.html html/FAQ.html); # GRAS tutorial 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); + tour_logs tour_timers tour_exceptions tour_simpledata tour_rpc tour_explicitwait + tour_message_recaping tour_staticstruct tour_pointers tour_dynar + tour_manualdatadef tour_exchangecb); # GRAS examples map {push @extra_files, "html/GRAS_ex_$_.html"} qw (ping mmrpc token timer); @@ -392,25 +394,27 @@ foreach my $file (@allfiles) { # Rework the navbar and add menu for use.html # Fix the current "button" of buggy Doxygen tabs if($file =~ /^html\/use.*/ - || $file =~ /^html\/installSimgrid.*/ + || $file =~ /^html\/install.*/ || $file =~ /^html\/options.*/ || $file =~ /^html\/tracing.*/ + || $file =~ /^html\/platform.*/ || $file =~ /^html\/bindings.*/ || $file =~ /^html\/pls.*/ || $file =~ /^html\/modules.*/ || $file =~ /^html\/annotated.*/ || $file =~ /^html\/group__.*/ - || $file =~ /^html\/functions.*/) + || $file =~ /^html\/functions.*/ + || $file =~ /^html\/GRAS_tut_tour_.*/) { $tmp_buff .= '
'."\n"; $tmp_buff .= '
'."\n"; $tmp_buff .= ' '."\n"; @@ -435,7 +439,8 @@ foreach my $file (@allfiles) { $tmp_buff =~ s/
  • /
  • /g; $tmp_buff =~ s/
  • /
  • /g; } - if($file =~ /^html\/group__.*/) + if($file =~ /^html\/group__.*/ + || $file =~ /^html\/GRAS_tut_tour_.*/) { $tmp_buff =~ s/
  • /
  • /g; } @@ -444,7 +449,6 @@ foreach my $file (@allfiles) { $tmp_buff =~ s/
  • /
  • /g; } - print TO $tmp_buff; next; }