diff options
author | Ted Kremenek <kremenek@apple.com> | 2008-04-03 05:50:51 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2008-04-03 05:50:51 +0000 |
commit | bba1cf550015b088f94c2d3a60a769806f84cd15 (patch) | |
tree | c923512084a392867880a7881b7a13e43b13f2bb | |
parent | fce71b8ea53b6eb9c1630da24659289bc848f837 (diff) |
CSS/HTML generation tweaks for index.html: Remove special "classes" for <td>
elements in table so that sorttable can sort them.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@49145 91177308-0d34-0410-b5e6-96231b3b80d8
-rwxr-xr-x | utils/scan-build | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/utils/scan-build b/utils/scan-build index 6e12d2d0da..12a7dbca2e 100755 --- a/utils/scan-build +++ b/utils/scan-build @@ -216,27 +216,27 @@ print OUT <<ENDTEXT; table.sortable thead { background-color:#eee; color:#666666; font-weight: bold; cursor: default; - } + text-align:center; + border-top: 2px solid #000000; + border-bottom: 2px solid #000000; + font-weight: bold; font-family: Verdana + } table.sortable { border: 1px #000000 solid } table.sortable { border-collapse: collapse; border-spacing: 0px } td { border-bottom: 1px #000000 dotted } td { padding:5px; padding-left:8px; padding-right:8px } td { text-align:right; font-size:9pt } - td.header { text-align:center} - td.header { border-top: 2px solid #000000; } - td.header { border-bottom: 2px solid #000000; } - td.header { font-weight: bold; font-family: Verdana } td.View { padding-left: 10px } </style> <script src="sorttable.js"></script> </head>\n<body> <table class="sortable"> <tr> - <td class="header">Bug Type</td> - <td class="header">File</td> - <td class="header">Line</td> - <td class="header">Path Length</td> - <td class="header"></td> + <td>Bug Type</td> + <td>File</td> + <td>Line</td> + <td>Path Length</td> + <td "sorttable_nosort"></td> </tr> ENDTEXT |