X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/eb7087b9f4a278df50c0b3c75c3080db3f843ebe..b4e1ff1d7acc7cbbd793877dbd2603801d705c6c:/tools/doxygen/bibtex2html_wrapper.pl diff --git a/tools/doxygen/bibtex2html_wrapper.pl b/tools/doxygen/bibtex2html_wrapper.pl index bf24f697a7..5e412846a1 100755 --- a/tools/doxygen/bibtex2html_wrapper.pl +++ b/tools/doxygen/bibtex2html_wrapper.pl @@ -5,6 +5,9 @@ use strict; my $file = shift @ARGV || die "USAGE: bibtex2html_wrapper \n"; my $output; +my $write; +my $line; +my $title; open IN,"bibtex2html -single-output -nv -force -sort year -copy-icons ${file}.bib -output -|iconv -f latin1 -t utf8 -|"; @@ -26,6 +29,7 @@ while($line = ) { next; } if($line =~ /height="35"/) { + my $output; ## Change this uggly table into a h2 do { $line = ; @@ -56,3 +60,7 @@ while($line = ) { } } +open(OUT,">${file}_bib.html"); +print OUT $output; +close(OUT); +close(IN); \ No newline at end of file