Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Fix bug in the documentation.
authoralegrand <alegrand@48e7efb5-ca39-0410-a469-dd3cf9ba447f>
Tue, 24 Aug 2010 13:27:39 +0000 (13:27 +0000)
committeralegrand <alegrand@48e7efb5-ca39-0410-a469-dd3cf9ba447f>
Tue, 24 Aug 2010 13:27:39 +0000 (13:27 +0000)
It skipped the first author for each year and removed some HTML tags...

git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@8164 48e7efb5-ca39-0410-a469-dd3cf9ba447f

tools/doxygen/bibtex2html_postprocessor.pl

index 07f96f6..fded838 100755 (executable)
@@ -6,6 +6,7 @@ while($line = <STDIN>) {
     chomp $line;
     if($line =~ /table width/) {
        $line = <STDIN>;
+       chomp $line;
        if($line =~ /height="50"/) {
            ## Skip preembule
            $write=1;
@@ -25,11 +26,13 @@ while($line = <STDIN>) {
            do {
                $line = <STDIN>;
                chomp $line;
-           } while (($line =~ /</));
+           } while (!($line =~ /table/));
            print "<h1>$title</h1>\n";
            next;
        }
     }
+    $line =~ s/<ol>/<ul>/g;
+    $line =~ s/<\/ol>/<\/ul>/g;
 
     if($line =~ /Disclaimer:/ || $line =~ /body>/) {
        $write=0;