Update of /cvsroot/compbench/compbenchmarks-web/tools
In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv15921
Modified Files:
maint-import-doc.pl
Log Message:
& -> & in .raw files (from compbenchmarks console programs' outputs).
Index: maint-import-doc.pl
===================================================================
RCS file: /cvsroot/compbench/compbenchmarks-web/tools/maint-import-doc.pl,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** maint-import-doc.pl 11 Sep 2007 17:19:43 -0000 1.1
--- maint-import-doc.pl 25 Sep 2007 15:45:01 -0000 1.2
***************
*** 129,132 ****
--- 129,133 ----
foreach(@output) {
+ $_=~ s/\&/&/g;
$_=~ s/\</</g;
$_=~ s/\>/>/g;
***************
*** 134,137 ****
--- 135,139 ----
$_=~ s/ / /g;
}
+ $sh2 =~ s/\&/&/g;
my $F = "../tmp/doc/compbenchmarks-bin-$of";
print "Generating $F\n";
|