]> granicus.if.org Git - clang/commitdiff
Update HTML diagnostics to honor the different between 'event' and 'control-flow...
authorTed Kremenek <kremenek@apple.com>
Mon, 2 Mar 2009 21:42:01 +0000 (21:42 +0000)
committerTed Kremenek <kremenek@apple.com>
Mon, 2 Mar 2009 21:42:01 +0000 (21:42 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@65877 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Frontend/HTMLDiagnostics.cpp
lib/Rewrite/HTMLRewrite.cpp

index cb05e55a43a2b67772eef33fb01342f367ac1250..9996fbbcd7ae392cf6ae2602ec5928d8468644b2 100644 (file)
@@ -418,7 +418,13 @@ void HTMLDiagnostics::HandlePiece(Rewriter& R, FileID BugFileID,
     else
       os << "Path" << num;
     
-    os << "\" class=\"msg\" style=\"margin-left:" << PosNo << "ex";
+    os << "\" class=\"msg";
+    switch (P.getKind()) {
+      default: break;
+      case PathDiagnosticPiece::Event: os << " msgEvent"; break;
+      case PathDiagnosticPiece::ControlFlow: os << " msgControl"; break;
+    }    
+    os << "\" style=\"margin-left:" << PosNo << "ex";
     if (em < max_line/2) os << "; max-width:" << em << "em";
     os << "\">";
     
index 692af80488714be2f917ef6e47b01db03d4972fb..b1f5cee36615b7c8f4ae8b9b9e1f054fc458d831 100644 (file)
@@ -307,15 +307,16 @@ void html::AddHeaderFooterInternalBuiltinCSS(Rewriter& R, FileID FID,
       " .num { color:#444444 }\n"
       " .line { padding-left: 1ex; border-left: 3px solid #ccc }\n"
       " .line { white-space: pre }\n"
-      " .msg { background-color:#fff8b4; color:#000000 }\n"
       " .msg { -webkit-box-shadow:1px 1px 7px #000 }\n"
       " .msg { -webkit-border-radius:5px }\n"
       " .msg { font-family:Helvetica, sans-serif; font-size: smaller }\n"
-      " .msg { font-weight: bold }\n"
       " .msg { float:left }\n"
       " .msg { padding:0.5em 1ex 0.5em 1ex }\n"
       " .msg { margin-top:10px; margin-bottom:10px }\n"
+      " .msg { font-weight:bold }\n"
       " .msg { max-width:60em; word-wrap: break-word; white-space: pre-wrap;}\n"
+      " .msgEvent { background-color:#fff8b4; color:#000000 }\n"
+      " .msgControl { background-color:#bbbbbb; color:#444444 }\n"
       " .mrange { background-color:#dfddf3 }\n"
       " .mrange { border-bottom:1px solid #6F9DBE }\n"
       " .PathIndex { font-weight: bold }\n"