From 9fc75c35c7eada2824bd22b3b91121df3657f528 Mon Sep 17 00:00:00 2001 From: alegrand Date: Tue, 24 Aug 2010 13:27:39 +0000 Subject: [PATCH] Fix bug in the documentation. 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 | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tools/doxygen/bibtex2html_postprocessor.pl b/tools/doxygen/bibtex2html_postprocessor.pl index 07f96f6bc6..fded838496 100755 --- a/tools/doxygen/bibtex2html_postprocessor.pl +++ b/tools/doxygen/bibtex2html_postprocessor.pl @@ -6,6 +6,7 @@ while($line = ) { chomp $line; if($line =~ /table width/) { $line = ; + chomp $line; if($line =~ /height="50"/) { ## Skip preembule $write=1; @@ -25,11 +26,13 @@ while($line = ) { do { $line = ; chomp $line; - } while (($line =~ /$title\n"; next; } } + $line =~ s/
    /
      /g; + $line =~ s/<\/ol>/<\/ul>/g; if($line =~ /Disclaimer:/ || $line =~ /body>/) { $write=0; -- 2.20.1