Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Re add the tab to the index.php
[simgrid.git] / tools / doxygen / index_php.pl
index 567b95a..4d8a9d0 100755 (executable)
@@ -14,9 +14,10 @@ my($body) = "";
 
 open FILE,$inputhtml;
 while(defined($line=<FILE>)) {
-    if($line =~/<div class="tabs">/) {
+    if($line =~/<div id=".*" class="tabs">/) {
        $onglets = $line;
        while(defined($line=<FILE>) && !($line =~/<\/div>/)) {
+               $line =~ s/ class="current"//g;
            $onglets.=$line;
        }
        $onglets.=$line;