mirror of https://github.com/jenkinsci/jenkins.git
junit 1.2-beta-3
This commit is contained in:
parent
2f8e2684af
commit
12f5dec0ed
|
|
@ -25,77 +25,7 @@ THE SOFTWARE.
|
|||
<?jelly escape-by-default='true'?>
|
||||
<j:jelly xmlns:j="jelly:core" xmlns:st="jelly:stapler" xmlns:d="jelly:define" xmlns:l="/lib/layout" xmlns:t="/lib/hudson" xmlns:f="/lib/form">
|
||||
<st:documentation>
|
||||
Display link to the failed test.
|
||||
@since 1.538
|
||||
<st:attribute name="url" type="String">
|
||||
Path to the failed test.
|
||||
</st:attribute>
|
||||
<st:attribute name="result" type="TestObject">
|
||||
Failed test object
|
||||
</st:attribute>
|
||||
DEPRECATED
|
||||
</st:documentation>
|
||||
<st:once>
|
||||
<script type="text/javascript">
|
||||
<!-- TODO make sure load doesn't happen every time -->
|
||||
function showFailureSummary(id,query) {
|
||||
var element = document.getElementById(id)
|
||||
element.style.display = "";
|
||||
document.getElementById(id + "-showlink").style.display = "none";
|
||||
document.getElementById(id + "-hidelink").style.display = "";
|
||||
|
||||
if (typeof query !== 'undefined') {
|
||||
var rqo = new XMLHttpRequest();
|
||||
rqo.open('GET', query, true);
|
||||
rqo.onreadystatechange = function() { element.innerHTML = rqo.responseText; }
|
||||
rqo.send(null);
|
||||
}
|
||||
}
|
||||
|
||||
function hideFailureSummary(id) {
|
||||
document.getElementById(id).style.display = "none";
|
||||
document.getElementById(id + "-showlink").style.display = "";
|
||||
document.getElementById(id + "-hidelink").style.display = "none";
|
||||
}
|
||||
</script>
|
||||
<style type="text/css">
|
||||
.failure-summary {
|
||||
margin-left: 2em;
|
||||
}
|
||||
|
||||
.failure-summary h4 {
|
||||
margin: 0.5em 0 0.5em 0;
|
||||
}
|
||||
|
||||
.failure-summary h4 a {
|
||||
text-decoration: none;
|
||||
color: inherit;
|
||||
}
|
||||
|
||||
.failure-summary h4 a img {
|
||||
width: 8px;
|
||||
height: 8px;
|
||||
}
|
||||
|
||||
.failure-summary pre {
|
||||
margin-left: 2em;
|
||||
}
|
||||
</style>
|
||||
</st:once>
|
||||
<j:set var="id" value="${h.jsStringEscape(url)}"/>
|
||||
<j:set var="open" value="javascript:showFailureSummary('test-${id}','${url}/summary')"/>
|
||||
<j:set var="close" value="javascript:hideFailureSummary('test-${id}')"/>
|
||||
<a id="test-${id}-showlink" href="${open}" title="${%Show details}">
|
||||
<l:icon class="icon-document-add icon-sm"/>
|
||||
</a>
|
||||
<a id="test-${id}-hidelink" href="${close}" title="${%Hide details}" style="display:none">
|
||||
<l:icon class="icon-document-delete icon-sm"/>
|
||||
</a>
|
||||
<st:nbsp/>
|
||||
<a href="${url}" class="model-link inside"><st:out value="${result.displayName}"/></a>
|
||||
<j:forEach var="badge" items="${result.testActions}">
|
||||
<st:include it="${badge}" page="badge.jelly" optional="true"/>
|
||||
</j:forEach>
|
||||
<div id="test-${id}" class="failure-summary" style="display: none;">
|
||||
${%Loading...}
|
||||
</div>
|
||||
<st:include page="/lib/hudson/test/failed-test.jelly"/>
|
||||
</j:jelly>
|
||||
|
|
|
|||
|
|
@ -1,25 +0,0 @@
|
|||
# The MIT License
|
||||
#
|
||||
# Copyright (c) 2004-, Kohsuke Kawaguchi, Sun Microsystems, Inc., and a number of other of contributers
|
||||
#
|
||||
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
# of this software and associated documentation files (the "Software"), to deal
|
||||
# in the Software without restriction, including without limitation the rights
|
||||
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
# copies of the Software, and to permit persons to whom the Software is
|
||||
# furnished to do so, subject to the following conditions:
|
||||
#
|
||||
# The above copyright notice and this permission notice shall be included in
|
||||
# all copies or substantial portions of the Software.
|
||||
#
|
||||
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
# THE SOFTWARE.
|
||||
|
||||
Hide\ details=Ocultar detalhes
|
||||
Loading...=Carregando...
|
||||
Show\ details=Exibir detalhes
|
||||
|
|
@ -101,7 +101,7 @@ THE SOFTWARE.
|
|||
<dependency>
|
||||
<groupId>org.jenkins-ci.plugins</groupId>
|
||||
<artifactId>junit</artifactId>
|
||||
<version>1.0</version>
|
||||
<version>1.2-beta-3</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.mortbay.jetty</groupId>
|
||||
|
|
|
|||
|
|
@ -370,7 +370,7 @@ THE SOFTWARE.
|
|||
<artifactItem>
|
||||
<groupId>org.jenkins-ci.plugins</groupId>
|
||||
<artifactId>junit</artifactId>
|
||||
<version>1.0</version>
|
||||
<version>1.2-beta-3</version>
|
||||
<type>hpi</type>
|
||||
</artifactItem>
|
||||
</artifactItems>
|
||||
|
|
|
|||
Loading…
Reference in New Issue