]> granicus.if.org Git - clang/commitdiff
Have ScanView.py generate a "<td></td>" pair in the output HTML instead of having...
authorTed Kremenek <kremenek@apple.com>
Sun, 21 Sep 2008 03:55:51 +0000 (03:55 +0000)
committerTed Kremenek <kremenek@apple.com>
Sun, 21 Sep 2008 03:55:51 +0000 (03:55 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@56393 91177308-0d34-0410-b5e6-96231b3b80d8

tools/scan-view/ScanView.py
utils/scan-build

index 5e7bbf4fe8c4d2dd3b7619646544652f6824d9bc..b001973f715704b824bc25396f791c2df43628a8 100644 (file)
@@ -16,7 +16,7 @@ import Reporter
 # Keys replaced by server.
 
 kReportBugRE = re.compile('<!-- REPORTBUG id="report-(.*)\\.html" -->')         
-kReportBugRepl = '<a class="ReportBugLink" href="report/\\1">Report Bug</a>'
+kReportBugRepl = '<td class="ReportBug"><a href="report/\\1">Report Bug</a></td>'
 kBugKeyValueRE = re.compile('<!-- BUG([^ ]*) (.*) -->')
 
 ###
index c76441cde1e283aa191efdc32f587774191ab179..41ef6973ab8cedd1c3afa5fe0b4603d0c911c167 100755 (executable)
@@ -569,7 +569,7 @@ ENDTEXT
       print OUT " <td class=\"View\"><a href=\"$ReportFile#EndPath\">View</a></td>\n";
         
       # Emit REPORTBUG markers.
-      print OUT " <td class=\"ReportBug\"><!-- REPORTBUG id=\"$ReportFile\" --></td>\n";
+      print OUT "<!-- REPORTBUG id=\"$ReportFile\" -->\n";
         
       # End the row.
       print OUT "</tr>\n";