Merge "Display last_reconfigured in zuul status page"

This commit is contained in:
Jenkins 2014-02-05 21:06:45 +00:00 committed by Gerrit Code Review
commit fa846f368a
1 changed files with 6 additions and 1 deletions

View File

@ -66,6 +66,10 @@
if ('zuul_version' in data) {
$('#zuul-version-span').text(data['zuul_version']);
}
if ('last_reconfigured' in data) {
var last_reconfigured = new Date(data['last_reconfigured']);
$('#last-reconfigured-span').text(last_reconfigured.toString());
}
$.each(data.pipelines, function (i, pipeline) {
html += zuul.format.pipeline(pipeline);
@ -228,8 +232,9 @@
$queueResultsNum = $queueEventsNum.next();
$pipelines = $('<div class="row"></div>');
$zuulVersion = $('<p>Zuul version: <span id="zuul-version-span"></span></p>');
$lastReconf = $('<p>Last reconfigured: <span id="last-reconfigured-span"></span></p>');
$container = $('#zuul-container').append($msgWrap, $indicator, $queueInfo, $pipelines, $zuulVersion);
$container = $('#zuul-container').append($msgWrap, $indicator, $queueInfo, $pipelines, $zuulVersion, $lastReconf);
zuul.schedule();