Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #62 from calin-iorgulescu/master
JENKINS-31751: Fix HTML rendering by correctly escaping it in jelly files.
  • Loading branch information
centic9 committed Dec 7, 2015
2 parents 5c79c78 + 8651004 commit c5edf40
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Expand Up @@ -7,7 +7,7 @@
<td class="${h.ifThenElse(c.failed,' red','')}" style="white-space: normal;">
<a href="${h.ifThenElse(nolink!=null,null,c.name+'/')}"><st:out value="${c.name}"/></a>
</td>
${c.printFourCoverageColumns()}
<j:out value="${c.printFourCoverageColumns()}"/>
</tr>
</j:forEach>
</table>
Expand Down
Expand Up @@ -7,7 +7,7 @@
<td class="nowrap ${h.ifThenElse(c.failed,' red','')}" >
<a href="${h.ifThenElse(nolink!=null,null,c.name+'/')}"><st:out value="${c.name}"/></a>
</td>
${c.printFourCoverageColumns()}
<j:out value="${c.printFourCoverageColumns()}"/>
</tr>
</j:forEach>
</table>
Expand Down
Expand Up @@ -4,7 +4,7 @@
<e:captionLine />
<tr>
<td>${title}</td>
${it.printFourCoverageColumns()}
<j:out value="${it.printFourCoverageColumns()}"/>
</tr>
</table>
</j:jelly>
Expand Up @@ -4,7 +4,7 @@
<e:captionLine />
<tr>
<td>${title}</td>
${it.printFourCoverageColumns()}
<j:out value="${it.printFourCoverageColumns()}"/>
</tr>
</table>
</j:jelly>

0 comments on commit c5edf40

Please sign in to comment.