Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[JENKINS-45880] Fixing sortable nontext columns (#22)
Change-Id: I843962c05f669d3ae50ac9fcf66c16a2f3503210
  • Loading branch information
v1v committed Aug 1, 2017
1 parent f9a6fbc commit 7fa2a63
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 18 deletions.
Expand Up @@ -46,24 +46,24 @@
<j:forEach var="lint" items="${job.lintList}">
<j:if test="${!lint.isActive()}">
<j:if test="${!lint.isEnabled()}">
<td tooltip="disabled" style="background-color: #f0f0f0;"/>
<td data="disabled" tooltip="disabled" style="background-color: #f0f0f0;"/>
</j:if>
<j:if test="${lint.isEnabled()}">
<j:if test="${lint.isIgnored()}">
<td tooltip="ignored" style="background-color: #f9ef9e;"/>
<td data="ignored" tooltip="ignored" style="background-color: #f9ef9e;"/>
</j:if>
</j:if>
</j:if>
<j:if test="${lint.isActive()}">
<j:if test="${lint.found}">
<td style="background-color: #FF8566;"/>
<td data="found" tooltip="found" style="background-color: #FF8566;"/>
</j:if>
<j:if test="${!lint.found}">
<td style="background-color: #B8EEB8;"/>
<td data="not_found" tooltip="not_found" style="background-color: #B8EEB8;"/>
</j:if>
</j:if>
</j:forEach>
<td><img src="${rootURL}${job.getLintHealthReport().getIconUrl('16x16')}" alt="" title="${job.getLintHealthReport().getDescription()}"/></td>
<td data="${job.getLintHealthReport().getScore()}"><img src="${rootURL}${job.getLintHealthReport().getIconUrl('16x16')}" alt="" title="${job.getLintHealthReport().getDescription()}"/></td>
</tr>
</j:forEach>
</tbody>
Expand Down Expand Up @@ -143,24 +143,24 @@
<j:forEach var="lint" items="${slave.lintList}">
<j:if test="${!lint.isActive()}">
<j:if test="${!lint.isEnabled()}">
<td tooltip="disabled" style="background-color: #f0f0f0;"/>
<td data="disabled" tooltip="disabled" style="background-color: #f0f0f0;"/>
</j:if>
<j:if test="${lint.isEnabled()}">
<j:if test="${lint.isIgnored()}">
<td tooltip="ignored" style="background-color: #f9ef9e;"/>
<td data="ignored" tooltip="ignored" style="background-color: #f9ef9e;"/>
</j:if>
</j:if>
</j:if>
<j:if test="${lint.isActive()}">
<j:if test="${lint.found}">
<td style="background-color: #FF8566;"/>
<td data="found" tooltip="found" style="background-color: #FF8566;"/>
</j:if>
<j:if test="${!lint.found}">
<td style="background-color: #B8EEB8;"/>
<td data="not_found" tooltip="not_found" style="background-color: #B8EEB8;"/>
</j:if>
</j:if>
</j:forEach>
<td><img src="${rootURL}${slave.getLintHealthReport().getIconUrl('16x16')}" alt="" title="${slave.getLintHealthReport().getDescription()}"/></td>
<td data="${slave.getLintHealthReport().getScore()}"><img src="${rootURL}${slave.getLintHealthReport().getIconUrl('16x16')}" alt="" title="${slave.getLintHealthReport().getDescription()}"/></td>
</tr>
</j:forEach>
</tbody>
Expand Down
Expand Up @@ -30,20 +30,20 @@
<tr>
<j:if test="${!lint.isActive()}">
<j:if test="${!lint.isEnabled()}">
<td tooltip="disabled" style="background-color: #f0f0f0;"/>
<td data="disabled" tooltip="disabled" style="background-color: #f0f0f0;"/>
</j:if>
<j:if test="${lint.isEnabled()}">
<j:if test="${lint.isIgnored()}">
<td tooltip="ignored" style="background-color: #f9ef9e;"/>
<td data="ignored" tooltip="ignored" style="background-color: #f9ef9e;"/>
</j:if>
</j:if>
</j:if>
<j:if test="${lint.isActive()}">
<j:if test="${lint.found}">
<td style="background-color: #FF8566;"/>
<td data="found" tooltip="found" style="background-color: #FF8566;"/>
</j:if>
<j:if test="${!lint.found}">
<td style="background-color: #B8EEB8;"/>
<td data="not_found" tooltip="not_found" style="background-color: #B8EEB8;"/>
</j:if>
</j:if>
<td>${lint.name}</td>
Expand Down
Expand Up @@ -31,20 +31,20 @@
<tr>
<j:if test="${!lint.isActive()}">
<j:if test="${!lint.isEnabled()}">
<td tooltip="disabled" style="background-color: #f0f0f0;"/>
<td data="disabled" tooltip="disabled" style="background-color: #f0f0f0;"/>
</j:if>
<j:if test="${lint.isEnabled()}">
<j:if test="${lint.isIgnored()}">
<td tooltip="ignored" style="background-color: #f9ef9e;"/>
<td data="ignored" tooltip="ignored" style="background-color: #f9ef9e;"/>
</j:if>
</j:if>
</j:if>
<j:if test="${lint.isActive()}">
<j:if test="${lint.found}">
<td style="background-color: #FF8566;"/>
<td data="found" tooltip="found" style="background-color: #FF8566;"/>
</j:if>
<j:if test="${!lint.found}">
<td style="background-color: #B8EEB8;"/>
<td data="not_found" tooltip="not_found" style="background-color: #B8EEB8;"/>
</j:if>
</j:if>
<td>${lint.name}</td>
Expand Down

0 comments on commit 7fa2a63

Please sign in to comment.