Skip to content

Commit

Permalink
Merge pull request #34 from mixalturek/master
Browse files Browse the repository at this point in the history
[JENKINS-21700] Sorting using Distribution column/graph doesn't work
  • Loading branch information
mixalturek committed Feb 6, 2014
2 parents e93822a + 9a35e83 commit aed45a8
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
Expand Up @@ -21,7 +21,7 @@
<td class="pane">${container.language}</td>
<td class="pane">${container.part}</td>
<td class="pane number" data="${container.lineCount}">${container.lineCountString}</td>
<td class="pane"><st:include page="/tabview/distribution-graph.jelly" /></td>
<td class="pane" data="${container.lineCount}"><st:include page="/tabview/distribution-graph.jelly" /></td>
</tr>
</j:forEach>
</tbody>
Expand All @@ -31,7 +31,7 @@
<td class="pane-header"> </td>
<td class="pane-header"> </td>
<td class="pane-header number" data="${cachedReport.lineCount}">${cachedReport.lineCountString}</td>
<td class="pane-header"> </td>
<td class="pane-header" data="0"> </td>
</tr>
</tfoot>
</table>
Expand Down
Expand Up @@ -19,7 +19,7 @@
<td class="pane"><a href="folderResult/${container.urlName}">${container.name}</a></td>
<td class="pane number" data="${container.fileCount}">${container.fileCountString}</td>
<td class="pane number" data="${container.lineCount}">${container.lineCountString}</td>
<td class="pane"><st:include page="/tabview/distribution-graph.jelly" /></td>
<td class="pane" data="${container.lineCount}"><st:include page="/tabview/distribution-graph.jelly" /></td>
</tr>
</j:forEach>
</tbody>
Expand All @@ -28,7 +28,7 @@
<td class="pane-header">${%Total} ${cachedReport.folderCountString}</td>
<td class="pane-header number" data="${cachedReport.fileCount}">${cachedReport.fileCountString}</td>
<td class="pane-header number" data="${cachedReport.lineCount}">${cachedReport.lineCountString}</td>
<td class="pane-header"> </td>
<td class="pane-header" data="0"> </td>
</tr>
</tfoot>
</table>
Expand Down
Expand Up @@ -19,7 +19,7 @@
<td class="pane"><a href="languageResult/${container.name}">${container.name}</a></td>
<td class="pane number" data="${container.fileCount}">${container.fileCountString}</td>
<td class="pane number" data="${container.lineCount}">${container.lineCountString}</td>
<td class="pane"><st:include page="/tabview/distribution-graph.jelly" /></td>
<td class="pane" data="${container.lineCount}"><st:include page="/tabview/distribution-graph.jelly" /></td>
</tr>
</j:forEach>
</tbody>
Expand All @@ -28,7 +28,7 @@
<td class="pane-header">${%Total} ${cachedReport.languageCountString}</td>
<td class="pane-header number" data="${cachedReport.fileCount}">${cachedReport.fileCountString}</td>
<td class="pane-header number" data="${cachedReport.lineCount}">${cachedReport.lineCountString}</td>
<td class="pane-header"> </td>
<td class="pane-header" data="0"> </td>
</tr>
</tfoot>
</table>
Expand Down
Expand Up @@ -19,7 +19,7 @@
<td class="pane"><a href="partResult/${container.name}">${container.name}</a></td>
<td class="pane number" data="${container.fileCount}">${container.fileCountString}</td>
<td class="pane number" data="${container.lineCount}">${container.lineCountString}</td>
<td class="pane"><st:include page="/tabview/distribution-graph.jelly" /></td>
<td class="pane" data="${container.lineCount}"><st:include page="/tabview/distribution-graph.jelly" /></td>
</tr>
</j:forEach>
</tbody>
Expand All @@ -28,7 +28,7 @@
<td class="pane-header">${%Total} ${cachedReport.partCountString}</td>
<td class="pane-header number" data="${cachedReport.fileCount}">${cachedReport.fileCountString}</td>
<td class="pane-header number" data="${cachedReport.lineCount}">${cachedReport.lineCountString}</td>
<td class="pane-header"> </td>
<td class="pane-header" data="0"> </td>
</tr>
</tfoot>
</table>
Expand Down

0 comments on commit aed45a8

Please sign in to comment.