Skip to content

Commit

Permalink
Initial commit of the new console view.
Browse files Browse the repository at this point in the history
The console view is a new StatusResource that displays
a developer-oriented view. It makes it easy to know
what was the result of a given change on all the builders.

This is still a work in progress, but this version
should be working. It supports only integer-based
SCM at this point (svn, perforce, etc..., not git).
  • Loading branch information
nsylvain committed Jul 17, 2009
1 parent 64773c1 commit d609080
Show file tree
Hide file tree
Showing 6 changed files with 1,280 additions and 4 deletions.
2 changes: 2 additions & 0 deletions buildbot/status/web/baseweb.py
Expand Up @@ -16,6 +16,7 @@
from buildbot.status.web.feeds import Rss20StatusResource, \
Atom10StatusResource
from buildbot.status.web.waterfall import WaterfallStatusResource
from buildbot.status.web.console import ConsoleStatusResource
from buildbot.status.web.grid import GridStatusResource, TransposedGridStatusResource
from buildbot.status.web.changes import ChangesResource
from buildbot.status.web.builder import BuildersResource
Expand Down Expand Up @@ -510,6 +511,7 @@ def setupUsualPages(self, numbuilds):
#self.putChild("", IndexOrWaterfallRedirection())
self.putChild("waterfall", WaterfallStatusResource())
self.putChild("grid", GridStatusResource())
self.putChild("console", ConsoleStatusResource())
self.putChild("tgrid", TransposedGridStatusResource())
self.putChild("builders", BuildersResource()) # has builds/steps/logs
self.putChild("changes", ChangesResource())
Expand Down

0 comments on commit d609080

Please sign in to comment.