]> git.argeo.org Git - gpl/argeo-slc.git/blob - org.argeo.slc.webapp/src/main/webapp/WEB-INF/jsp/slcExecutionView.jsp
Display enhancement
[gpl/argeo-slc.git] / org.argeo.slc.webapp / src / main / webapp / WEB-INF / jsp / slcExecutionView.jsp
1 <?xml version="1.0" encoding="ISO-8859-1" ?>
2 <%@ page language="java" contentType="text/html; charset=ISO-8859-1"
3 pageEncoding="ISO-8859-1"%>
4 <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
5
6 <%@include file="header.txt"%>
7 <jsp:include page="common.jsp" />
8
9 <div id="main">
10 <h1>SLC Execution #${slcExecution.uuid}</h1>
11
12 <h2>Details</h2>
13 <table>
14 <tr>
15 <td>Host</td>
16 <td>${slcExecution.host}</td>
17 </tr>
18 <tr>
19 <td>User</td>
20 <td>${slcExecution.user}</td>
21 </tr>
22 <tr>
23 <td>Status</td>
24 <td>${slcExecution.status}</td>
25 </tr>
26 <tr>
27 <td>Type</td>
28 <td>${slcExecution.type}</td>
29 </tr>
30 <c:choose>
31 <c:when test="${slcExecution.type == 'org.argeo.slc.ant'}">
32 <tr>
33 <td>Script</td>
34 <td>${slcExecution.attributes['ant.file']}</td>
35 </tr>
36 </c:when>
37 </c:choose>
38 </table>
39
40 <h2>Execution Steps</h2>
41 <c:forEach items="${slcExecutionSteps}" var="slcExecutionStep">
42 <a name="step_${slcExecutionStep.uuid}"></a>
43 <h3 class="executionStep">${slcExecutionStep.begin} -
44 ${slcExecutionStep.uuid} (${slcExecutionStep.type})</h3>
45 <table>
46 <c:forEach items="${slcExecutionStep.logLines}"
47 var="slcExecutionStepLogLine">
48 <tr>
49 <td colspan="3">${slcExecutionStepLogLine}</td>
50 </tr>
51 </c:forEach>
52 </table>
53 </c:forEach></div>
54
55 <%@include file="footer.txt"%>