entry.jelly 3.7 KB
Newer Older
K
kohsuke 已提交
1 2 3
<!--
The MIT License

M
mindless 已提交
4
Copyright (c) 2004-2010, Sun Microsystems, Inc., Kohsuke Kawaguchi
K
kohsuke 已提交
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24

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.
-->

25 26 27
<!--
  Render a single build history entry indicated by ${build}
-->
28
<?jelly escape-by-default='true'?>
29 30
<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" xmlns:i="jelly:fmt">
  <j:set var="link" value="${it.baseUrl}/${build.number}/" />
31
  <j:set var="transitive" value="${(it.firstTransientBuildKey!=null and (it.adapter.compare(build,it.firstTransientBuildKey) ge 0)) ? 'transitive' : null}" />
T
tfennelly 已提交
32 33 34 35 36 37
  <tr class="build-row ${transitive} single-line">
    <td class="build-row-cell">
      <div class="pane build-name">
        <div class="build-icon">
          <a class="build-status-link" href="${link}console"><l:icon alt="${build.iconColor.description} &gt; ${%Console Output}" class="${build.buildStatusIconClassName} icon-sm" tooltip="${build.iconColor.description} &gt; ${%Console Output}"/></a>
        </div>
38
        <a class="tip model-link inside build-link display-name" update-parent-class=".build-row" href="${link}">${build.displayName}</a>
T
tfennelly 已提交
39 40
      </div>
      <div class="pane build-details" time="${build.timestamp.time.time}">
41
        <a class="tip model-link inside build-link" href="${link}" update-parent-class=".build-row">
T
tfennelly 已提交
42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
          <i:formatDate value="${build.timestamp.time}" type="both" dateStyle="medium" timeStyle="short" />
        </a>
        <j:if test="${build.building}">
          <j:set target="${it}" property="nextBuildNumberToFetch" value="${build.number}"/>
          <t:buildProgressBar build="${build}"/>
        </j:if>
      </div>
      <div class="pane build-controls">
        <div class="middle-align build-badge">
          <j:set var="badges" value="${build.badgeActions}"/>
          <j:if test="${!empty(badges)}">
            <st:nbsp/>
            <j:forEach var="badge" items="${badges}">
              <st:include it="${badge}" page="badge.jelly" />
            </j:forEach>
          </j:if>
        </div>
        <j:if test="${build.building}">
          <div class="build-stop">
            <!-- Check ABORT permission for Project, Admin permission otherwise -->
            <j:if test="${empty(it.owner.ABORT) ? h.hasPermission(app.ADMINISTER) : it.owner.hasPermission(it.owner.ABORT)}">
              <l:stopButton href="${link}stop" alt="[cancel]"/>
            </j:if>
          </div>
        </j:if>
      </div>
T
tfennelly 已提交
68
      <j:if test="${!empty build.description}">
T
tfennelly 已提交
69
        <div class="pane desc indent-multiline">
T
tfennelly 已提交
70 71 72
          <j:out value="${app.markupFormatter.translate(build.truncatedDescription)}"/>
        </div>
      </j:if>
T
tfennelly 已提交
73
      <div class="left-bar" />
74 75
    </td>
  </tr>
76
</j:jelly>