[Buildbot-commits] buildbot/buildbot/scripts runner.py,1.9,1.10

Brian Warner warner at users.sourceforge.net
Fri Apr 22 07:36:02 UTC 2005


Update of /cvsroot/buildbot/buildbot/buildbot/scripts
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7910/buildbot/scripts

Modified Files:
	runner.py 
Log Message:
Revision: arch at buildbot.sf.net--2004/buildbot--dev--0--patch-65
Creator:  Brian Warner <warner at monolith.lothar.com>

let 'buildbot statusgui' really just run the text client

* buildbot/scripts/runner.py (statusgui): use the text client for
now, while I rewrite the Gtk one
* buildbot/clients/base.py: strip out old code, leaving just the
basic print-message-on-event functionality. I also remove the
ReconnectingPBClientFactory, but it does at least quit when it
loses the connection instead of going silent


Index: runner.py
===================================================================
RCS file: /cvsroot/buildbot/buildbot/buildbot/scripts/runner.py,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -d -r1.9 -r1.10
--- runner.py	22 Apr 2005 02:57:21 -0000	1.9
+++ runner.py	22 Apr 2005 07:35:58 -0000	1.10
@@ -209,10 +209,11 @@
             raise usage.UsageError("I wasn't expecting so many arguments")
 
 def statusgui(config):
-    from buildbot.clients import gtkPanes
-    c = gtkPanes.CompactGtkClient()
-    c.startConnecting(config['master'])
-    reactor.run()
+    #from buildbot.clients import gtkPanes
+    #c = gtkPanes.CompactGtkClient()
+    from buildbot.clients import base
+    c = base.TextClient(config['master'])
+    c.run()
 
 class Options(usage.Options):
     synopsis = "Usage:    buildbot <command> [command options]"





More information about the Commits mailing list