[SCM] build.samba.org - branch master updated

Jelmer Vernooij jelmer at samba.org
Sun Nov 21 09:50:47 MST 2010


The branch, master has been updated
       via  b22f48d Add build age to table.
      from  71e1bc8 Sort by age rather than by upload time.

http://gitweb.samba.org/?p=build-farm.git;a=shortlog;h=master


- Log -----------------------------------------------------------------
commit b22f48dfb9b0fe0681af28a95e5e5c40d3fa9e72
Author: Jelmer Vernooij <jelmer at samba.org>
Date:   Sun Nov 21 17:50:07 2010 +0100

    Add build age to table.

-----------------------------------------------------------------------

Summary of changes:
 buildfarm/web/__init__.py |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)


Changeset truncated at 500 lines:

diff --git a/buildfarm/web/__init__.py b/buildfarm/web/__init__.py
index 4646199..3ed515f 100755
--- a/buildfarm/web/__init__.py
+++ b/buildfarm/web/__init__.py
@@ -440,13 +440,13 @@ class ViewBuildPage(BuildFarmPage):
         yield "<h2>Older builds:</h2>\n"
 
         yield "<table class='real'>\n"
-        yield "<thead><tr><th>Revision</th><th>Status</th></tr></thead>\n"
+        yield "<thead><tr><th>Revision</th><th>Status</th><th>Age</th></tr></thead>\n"
         yield "<tbody>\n"
 
         for build in old_rev_builds:
-            yield "<tr><td>%s</td><td>%s</td></tr>\n" % (
+            yield "<tr><td>%s</td><td>%s</td><td>%s</td></tr>\n" % (
                 revision_link(myself, build.revision, tree),
-                build_status_html(myself, build))
+                build_status_html(myself, build), util.dhm_time(build.age))
 
         yield "</tbody></table>\n"
 


-- 
build.samba.org


More information about the samba-cvs mailing list