X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/35ec45b279eb57aaa44028ab6d19d747fe903071..5e7db3a96e0d8c3031042633357e3c2ba4758be8:/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