jhbuild r2513 - in trunk: . jhbuild/buildbot/status/web
- From: fpeters svn gnome org
- To: svn-commits-list gnome org
- Subject: jhbuild r2513 - in trunk: . jhbuild/buildbot/status/web
- Date: Thu, 13 Nov 2008 23:21:16 +0000 (UTC)
Author: fpeters
Date: Thu Nov 13 23:21:16 2008
New Revision: 2513
URL: http://svn.gnome.org/viewvc/jhbuild?rev=2513&view=rev
Log:
* jhbuild/buildbot/status/web/__init__.py: also display slave results
summary at the top of the table.
Modified:
trunk/ChangeLog
trunk/jhbuild/buildbot/status/web/__init__.py
Modified: trunk/jhbuild/buildbot/status/web/__init__.py
==============================================================================
--- trunk/jhbuild/buildbot/status/web/__init__.py (original)
+++ trunk/jhbuild/buildbot/status/web/__init__.py Thu Nov 13 23:21:16 2008
@@ -87,10 +87,13 @@
else:
title = klass
result += '<th class="%s" title="%s">%s</th>' % (klass, title, name)
- result += '</tr></thead>\n'
+ result += '</tr>'
+ thead = result
+ # stop it here as a row with totals will be added here once every rows
+ # have been handled
# Contents
- result += '<tbody>'
+ result = '<tbody>'
slave_results = {}
for slave in parent.slaves:
@@ -147,14 +150,18 @@
result += '</tr>\n'
result += '</tbody>\n'
result += '<tfoot><tr class="totals"><td colspan="3"></td>'
+ thead += '<tr class="totals"><td colspan="3"></td>'
for slave in parent.slaves:
- result += '<td><span title="Successful builds">%s</span> '\
+ td = '<td><span title="Successful builds">%s</span> '\
'<span title="(ignoring test suites failures)">(%s)</span> / '\
'<span title="Total">%s</span></td>' % tuple(slave_results[slave])
+ thead += td
+ result += td
+ thead += '</tr>\n</thead>\n'
result += '</tr></tfoot>\n'
result += '</table>'
- return result
+ return thead+result
class JHBuildWebStatus(WebStatus):
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]