aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTed Kremenek <kremenek@apple.com>2008-07-30 17:58:08 +0000
committerTed Kremenek <kremenek@apple.com>2008-07-30 17:58:08 +0000
commit3cea9ee6b77ac797ebb910bdf45d1d7f8f68e37b (patch)
treed3d76d5f77379ce7b662241fa9428d6d64432160
parentb7714b291bdb5421eb9df527966fae5061332058 (diff)
"Escape" bug names with quotes for selecting/deselecting from the bug table.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@54220 91177308-0d34-0410-b5e6-96231b3b80d8
-rwxr-xr-xutils/scan-build8
1 files changed, 3 insertions, 5 deletions
diff --git a/utils/scan-build b/utils/scan-build
index fd196ba67c..afd2e833e9 100755
--- a/utils/scan-build
+++ b/utils/scan-build
@@ -479,7 +479,7 @@ ENDTEXT
for my $key ( sort { $a cmp $b } keys %Totals ) {
my $x = lc($key);
- $x =~ s/\s[,]/_/g;
+ $x =~ s/[ ,'"]+/_/g;
print OUT "<tr><td>$key</td><td>$Totals{$key}</td><td><input type=\"checkbox\" onClick=\"ToggleDisplay(this,'bt_$x');\" checked/></td></tr>\n";
}
@@ -511,7 +511,7 @@ ENDTEXT
for my $row ( sort { $a->[1] cmp $b->[1] } @Index ) {
my $x = lc($row->[1]);
- $x =~ s/\s[,]/_/g;
+ $x =~ s/[ ,'"]+/_/g;
print OUT "<tr class=\"bt_$x\">\n";
@@ -533,15 +533,13 @@ ENDTEXT
print OUT "<td>$fname</td>\n";
# Print the rest of the columns.
-
for my $j ( 3 .. $#{$row} ) {
print OUT "<td>$row->[$j]</td>\n"
}
# Emit the "View" link.
-
print OUT " <td class=\"View\"><a href=\"$ReportFile#EndPath\">View</a></td>\n";
-
+
# End the row.
print OUT "</tr>\n";
}