X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/850f95301f96109093c438def7238f07c6ae7d7e..1c990af7381be73a56c9bab672d425fde1861590:/tools/doxygen/doxygen_postprocesser.pl diff --git a/tools/doxygen/doxygen_postprocesser.pl b/tools/doxygen/doxygen_postprocesser.pl deleted file mode 100755 index d35168f9ab..0000000000 --- a/tools/doxygen/doxygen_postprocesser.pl +++ /dev/null @@ -1,441 +0,0 @@ -#! /usr/bin/perl - -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/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_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); - -my %debug; -$debug{'parse'} = 0; # show how we parse the module tree -$debug{'input'} = 0; # display the resulting tree -$debug{'handle'}= 0; # Be verbose on the post-processing -$debug{'rename'}= 0; # do not overwrite the files (allows several debuging runs without rerunning doxygen) - -my @allfiles; -### -### Get the module definitions -### - -open IN, "html/modules.html" || die "Cannot parse html/modules.html. Did you really run doxygen?\n"; - -# pass headers -while () { - last if /group__SimGrid__API.html/; -} - -# Parse the tree -my $top; -my $current; -my $entry; - -# $current->{'label'}="ROOT"; -# push @{$top->{'down'}},$current; -# print "Push $current '".($current->{'label'})."' as child of $top '".($top->{'label'})."'\n" if $debug{'parse'}; -# $current=$top; -$top->{'label'}="ROOT"; -print "Create ROOT $top\n" if $debug{'parse'}; -$current=$top; - - -# Read the whole data to postprocess it a bit -my $in; -while () { - $in .= $_; -} -$in =~ s/