Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Fix documentation navbar and page for tour dynar.
authornavarro <navarro@caraja.(none)>
Wed, 11 Apr 2012 10:13:00 +0000 (12:13 +0200)
committernavarro <navarro@caraja.(none)>
Wed, 11 Apr 2012 10:13:00 +0000 (12:13 +0200)
doc/gtut-tour.doc
tools/doxygen/doxygen_postprocesser.pl

index 57b1320..0288a1c 100644 (file)
@@ -21,7 +21,7 @@ all features available in GRAS.
       DOXYGEN_NAVBAR_CHILD "Recapping part 1"=GRAS_tut_tour_message_recaping.html
       DOXYGEN_NAVBAR_CHILD "12: Static data definition"=GRAS_tut_tour_staticstruct.html
       DOXYGEN_NAVBAR_CHILD "13: Pointers definition"=GRAS_tut_tour_pointers.html
       DOXYGEN_NAVBAR_CHILD "Recapping part 1"=GRAS_tut_tour_message_recaping.html
       DOXYGEN_NAVBAR_CHILD "12: Static data definition"=GRAS_tut_tour_staticstruct.html
       DOXYGEN_NAVBAR_CHILD "13: Pointers definition"=GRAS_tut_tour_pointers.html
-      DOXYGEN_NAVBAR_CHILD "14: Dynars definition"=GRAS_tut_tour_dynars.html
+      DOXYGEN_NAVBAR_CHILD "14: Dynars definition"=GRAS_tut_tour_dynar.html
       DOXYGEN_NAVBAR_CHILD "15: Manual data definition"=GRAS_tut_tour_manualdatadef.html
       DOXYGEN_NAVBAR_CHILD "16: Advanced data definition"=GRAS_tut_tour_exchangecb.html
     --> \endhtmlonly
       DOXYGEN_NAVBAR_CHILD "15: Manual data definition"=GRAS_tut_tour_manualdatadef.html
       DOXYGEN_NAVBAR_CHILD "16: Advanced data definition"=GRAS_tut_tour_exchangecb.html
     --> \endhtmlonly
index 7a41fb1..7d98a5e 100755 (executable)
@@ -11,7 +11,9 @@ my @extra_files = qw(html/index.html html/pages.html html/modules.html html/anno
 # 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 
 # 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);
 
 # GRAS examples
 map {push @extra_files, "html/GRAS_ex_$_.html"} qw (ping mmrpc token timer);
@@ -401,7 +403,8 @@ foreach my $file (@allfiles) {
              || $file =~ /^html\/modules.*/
              || $file =~ /^html\/annotated.*/
              || $file =~ /^html\/group__.*/
              || $file =~ /^html\/modules.*/
              || $file =~ /^html\/annotated.*/
              || $file =~ /^html\/group__.*/
-             || $file =~ /^html\/functions.*/)
+             || $file =~ /^html\/functions.*/
+             || $file =~ /^html\/GRAS_tut_tour_.*/)
              {
                                $tmp_buff .= '      <div class="tabs_group_use">'."\n";
                                $tmp_buff .= '          <ul class="tablist">'."\n";
              {
                                $tmp_buff .= '      <div class="tabs_group_use">'."\n";
                                $tmp_buff .= '          <ul class="tablist">'."\n";
@@ -436,7 +439,8 @@ foreach my $file (@allfiles) {
                      $tmp_buff =~ s/<li class="current">/<li>/g;
                      $tmp_buff =~ s/<li><a href="$filename.html">/<li class="current"><a href="$filename.html">/g;     
              }
                      $tmp_buff =~ s/<li class="current">/<li>/g;
                      $tmp_buff =~ s/<li><a href="$filename.html">/<li class="current"><a href="$filename.html">/g;     
              }
-             if($file =~ /^html\/group__.*/)
+             if($file =~ /^html\/group__.*/
+             || $file =~ /^html\/GRAS_tut_tour_.*/)
              {
                $tmp_buff =~ s/<li><a href="modules.html">/<li class="current"><a href="modules.html">/g;
              }
              {
                $tmp_buff =~ s/<li><a href="modules.html">/<li class="current"><a href="modules.html">/g;
              }
@@ -445,7 +449,6 @@ foreach my $file (@allfiles) {
                $tmp_buff =~ s/<li><a href="annotated.html">/<li class="current"><a href="annotated.html">/g;
              }
              
                $tmp_buff =~ s/<li><a href="annotated.html">/<li class="current"><a href="annotated.html">/g;
              }
              
-
              print TO $tmp_buff;             
              next;
     }
              print TO $tmp_buff;             
              next;
     }