finished report log
authorNatasha Sherstneva <n.shertneva@gmail.com>
Fri, 8 Nov 2013 14:16:19 +0000 (14:16 +0000)
committerNatasha Sherstneva <n.shertneva@gmail.com>
Fri, 8 Nov 2013 14:16:19 +0000 (14:16 +0000)
datadb/compbio/cassandra/StructureJobLog.java
website/ReportLogInfo.jsp

index 4f2414b..b2d0400 100644 (file)
@@ -35,7 +35,7 @@ public class StructureJobLog {
                return dateEnd;
        }
        
-       public String getIP () {
+       public String getIp () {
                return ip;
        }
        
index d4079ad..97ec1f3 100644 (file)
@@ -5,7 +5,20 @@
 <%@ taglib uri="http://displaytag.sf.net" prefix="dt" %>
 <h3>Jobs log information for: ${IdJob}</h3>
 <h3>Time execution: ${timeExecution} ms</h3>
-<p> Date Start : ${result.logInfo.dateStart}</p>
-<p> Date End   : ${result.logInfo.dateEnd}</p>
-<p> Sequence   : ${result.logInfo.sequence}</p>
-
+<p> Date Start : ${result.logInfo.dateStart}<br/>
+ Date End   : ${result.logInfo.dateEnd}<br/>
+ IP            : ${result.logInfo.ip}</p>
+<table border="1" style="border-collapse: collapse; white-space: nowrap">
+<tbody>
+<tr>
+<td> Sequence</td>
+<td style="text-align: left; border-buttom: dotted; font-family: monospace"> ${result.logInfo.sequence}</td>
+</tr>
+<c:forEach items="${result.logInfo.prediction}" var="pred">
+<tr>
+       <td> ${pred.key}</td>
+       <td style="text-align: left; border-buttom: dotted; font-family: monospace"> ${pred.value}</td>
+</tr>
+</c:forEach>
+</tbody>
+</table>