aboutsummaryrefslogtreecommitdiff
path: root/src/main/webapp
diff options
context:
space:
mode:
authorTrygve Laugstøl <trygvis@inamo.no>2013-01-03 17:10:30 +0100
committerTrygve Laugstøl <trygvis@inamo.no>2013-01-03 17:10:30 +0100
commit5c8c3467906d996c04210cc8350edbd027ccc32a (patch)
treeb0d34eb87cd589b27b422059eff599b3b80ba24e /src/main/webapp
parent35ba1a6f765f72a1d91a5456c7556e6274f8c3a9 (diff)
downloadesper-testing-5c8c3467906d996c04210cc8350edbd027ccc32a.tar.gz
esper-testing-5c8c3467906d996c04210cc8350edbd027ccc32a.tar.bz2
esper-testing-5c8c3467906d996c04210cc8350edbd027ccc32a.tar.xz
esper-testing-5c8c3467906d996c04210cc8350edbd027ccc32a.zip
o Skipping builds where the job is a <mavenModule>.
o Using the build's timestamp instead of createdDate in the UI.
Diffstat (limited to 'src/main/webapp')
-rwxr-xr-x[-rw-r--r--]src/main/webapp/apps/buildApp/build.html2
-rwxr-xr-x[-rw-r--r--]src/main/webapp/apps/jenkinsApp/job.html2
-rwxr-xr-x[-rw-r--r--]src/main/webapp/apps/personApp/person.html5
3 files changed, 4 insertions, 5 deletions
diff --git a/src/main/webapp/apps/buildApp/build.html b/src/main/webapp/apps/buildApp/build.html
index b2d4bd9..2feee28 100644..100755
--- a/src/main/webapp/apps/buildApp/build.html
+++ b/src/main/webapp/apps/buildApp/build.html
@@ -9,7 +9,7 @@
<table>
<tr>
<th>Date</th>
- <td>{{build.date | date:'medium'}}</td>
+ <td>{{build.timestamp | date:'medium'}}</td>
</tr>
<tr>
<th>Status</th>
diff --git a/src/main/webapp/apps/jenkinsApp/job.html b/src/main/webapp/apps/jenkinsApp/job.html
index 5113d2e..6ee7af0 100644..100755
--- a/src/main/webapp/apps/jenkinsApp/job.html
+++ b/src/main/webapp/apps/jenkinsApp/job.html
@@ -36,7 +36,7 @@
</thead>
<tbody>
<tr ng-repeat="build in builds.rows" class="{{{true: 'success', false: 'error'}[build.success]}}">
- <td>{{build.createdDate | date:'medium'}}</td>
+ <td>{{build.timestamp | date:'medium'}}</td>
<td>{{build.result}}</td>
<td><a class="btn" ng-click="showBuild(build.uuid)"><i class="icon-chevron-right"></i></a></td>
</tr>
diff --git a/src/main/webapp/apps/personApp/person.html b/src/main/webapp/apps/personApp/person.html
index 83aea0a..056545f 100644..100755
--- a/src/main/webapp/apps/personApp/person.html
+++ b/src/main/webapp/apps/personApp/person.html
@@ -33,7 +33,7 @@
</thead>
<tbody>
<tr ng-repeat="build in recentBuilds" class="{{{true: 'success', false: 'error'}[build.success]}}">
- <td>{{build.date | date:'medium'}}</td>
+ <td>{{build.timestamp | date:'medium'}}</td>
<td>{{build.success}}</td>
<td><a href="/build/{{build.uuid}}">Details</a></td>
</tr>
@@ -52,7 +52,7 @@
</thead>
<tbody>
<tr ng-repeat="build in builds.rows" class="{{{true: 'success', false: 'error'}[build.success]}}">
- <td>{{build.date | date:'medium'}}</td>
+ <td>{{build.timestamp | date:'medium'}}</td>
<td>{{build.success}}</td>
</tr>
</tbody>
@@ -72,5 +72,4 @@
</tfoot>
</table>
</div>
-
</div>