changes.py

来自「The BuildBot is a system to automate the」· Python 代码 · 共 42 行

PY
42
字号
from zope.interface import implementsfrom twisted.python import componentsfrom twisted.web.error import NoResourcefrom buildbot.changes.changes import Changefrom buildbot.status.web.base import HtmlResource, StaticHTML, IBox, Box# /changes/NNclass 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)

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?