Index: third_party/buildbot_7_12/buildbot/status/web/changes.py |
diff --git a/third_party/buildbot_7_12/buildbot/status/web/changes.py b/third_party/buildbot_7_12/buildbot/status/web/changes.py |
deleted file mode 100644 |
index ff562c69372978265c85b3bb2d8c9bac16554198..0000000000000000000000000000000000000000 |
--- a/third_party/buildbot_7_12/buildbot/status/web/changes.py |
+++ /dev/null |
@@ -1,41 +0,0 @@ |
- |
-from zope.interface import implements |
-from twisted.python import components |
-from twisted.web.error import NoResource |
- |
-from buildbot.changes.changes import Change |
-from buildbot.status.web.base import HtmlResource, StaticHTML, IBox, Box |
- |
-# /changes/NN |
-class ChangesResource(HtmlResource): |
- |
- def body(self, req): |
- data = "" |
- data += "Change sources:\n" |
- sources = self.getStatus(req).getChangeSources() |
- if sources: |
- data += "<ol>\n" |
- for s in sources: |
- data += "<li>%s</li>\n" % s.describe() |
- data += "</ol>\n" |
- else: |
- data += "none (push only)\n" |
- return data |
- |
- def getChild(self, path, req): |
- num = int(path) |
- c = self.getStatus(req).getChange(num) |
- if not c: |
- return NoResource("No change number '%d'" % num) |
- return StaticHTML(c.asHTML(), "Change #%d" % num) |
- |
- |
-class ChangeBox(components.Adapter): |
- implements(IBox) |
- |
- def getBox(self, req): |
- url = req.childLink("../changes/%d" % self.original.number) |
- text = self.original.get_HTML_box(url) |
- return Box([text], class_="Change") |
-components.registerAdapter(ChangeBox, Change, IBox) |
- |