Blame docs/gtkdocs_fix

Packit Service fb6fa5
#!/usr/bin/perl
Packit Service fb6fa5
Packit Service fb6fa5
# Stupid script to fix look of html files created with sgml2html...
Packit Service fb6fa5
Packit Service fb6fa5
foreach (@ARGV) {
Packit Service fb6fa5
    print "Fixing... $_\n";
Packit Service fb6fa5
    system("mv $_ $_.orig");
Packit Service fb6fa5
    system("sed -e 's/<BODY>/<BODY BGCOLOR=\"#FFFFFF\">/g' -e 's/
/
/g' $_.orig > $_");
Packit Service fb6fa5
    unlink("$_.orig");
Packit Service fb6fa5
}
Packit Service fb6fa5