Skip to content

Instantly share code, notes, and snippets.

@Jc2k
Created November 7, 2011 16:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Jc2k/1345508 to your computer and use it in GitHub Desktop.
Save Jc2k/1345508 to your computer and use it in GitHub Desktop.
Override the WebStatus to only
from buildbot.status.web.waterfall import WaterfallStatusResource
from buildbot.status.web.baseweb import WebStatus
class MyWebStatus(WebStatus):
def setupUsualPages(self, numbuilds, num_events, num_events_max):
self.setupUsualPages(numbuilds, num_events, num_events_max)
self.putChild("waterfall", WaterfallStatusResource(
categories = ["active"],
num_events=num_events,
num_events_max=num_events_max))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment