X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/3e55380beede63739cdf482bca410d875129ae63..52b41ba5f4cbc90aa34bb84e6774e880b00b2776:/tools/doxygen/doxygen_postprocesser.pl diff --git a/tools/doxygen/doxygen_postprocesser.pl b/tools/doxygen/doxygen_postprocesser.pl index dac56a5dfa..d35168f9ab 100755 --- a/tools/doxygen/doxygen_postprocesser.pl +++ b/tools/doxygen/doxygen_postprocesser.pl @@ -3,15 +3,17 @@ 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 html/contrib.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 index.php - html/GRAS_tut.html); +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/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); @@ -148,7 +150,7 @@ while ($line = ) { print OUT $line; } -print OUT "
\n
'."\n"; + + my $filename = $file; + $filename =~ s/html\///g; + $filename =~ s/\.html//g; + $filename =~ s/publis_.*/publis/g; + $tmp_buff =~ s/
  • /
  • /g; + $tmp_buff =~ s/
  • /
  • /g; + $tmp_buff =~ s/
  • /
  • /g; + + } + + # Rework the navbar + # Fix the current "button" of buggy Doxygen tabs + if($file =~ /^html\/pages.*/ + || $file =~ /^html\/FAQ.*/) + { + my $filename = $file; + $filename =~ s/html\///g; + $filename =~ s/\.html//g; + $tmp_buff =~ s/
  • /
  • /g; + $tmp_buff =~ s/
  • /
  • /g; + } + if($file =~ /^html\/group__.*/ + || $file =~ /^html\/GRAS_tut_tour_.*/) + { + $tmp_buff =~ s/
  • /
  • /g; + } + if($file =~ /^html\/functions.*/) + { + $tmp_buff =~ s/
  • /
  • /g; + } + + print TO $tmp_buff; + next; + } + s|Modules|Modules API|g; + s|Related Pages
  • \n||g; + s|
  • Modules API
  • \n||g; + s|
  • Modules API
  • \n||g; + if($file =~ /^html\/group__.*/) + { + s|
  • |
  • |g; + s|
  • Modules API
  • \n|
  • Modules API
  • \n|g; } - if (m,
  • Data\ Structures
  • ,) { - print TO ' Publications'."\n"; - print TO ' People'."\n"; - print TO ' History'."\n"; - print TO ' Contrib'."\n"; - next; + else + { + s|
  • Modules API
  • \n||g; } - s|Modules|Modules API|g; - s|Related Pages|Site Plan|g; - + s|
  • Data Structures
  • \n||g; + s|
  • Data Structures
  • \n||g; + s|Related Pages<|Documentation index<|g; + print TO $_; } close FROM;