| Index: third_party/buildbot_8_4p1/buildbot/status/web/build.py
|
| diff --git a/third_party/buildbot_8_4p1/buildbot/status/web/build.py b/third_party/buildbot_8_4p1/buildbot/status/web/build.py
|
| index 15b8123df4633a1b3b6ff64bef86c5a3ee077b6a..dd1842baa543cabaae958381718787bd50b9aa3d 100644
|
| --- a/third_party/buildbot_8_4p1/buildbot/status/web/build.py
|
| +++ b/third_party/buildbot_8_4p1/buildbot/status/web/build.py
|
| @@ -121,6 +121,13 @@ class StatusResourceBuild(HtmlResource):
|
| step['urls'] = map(lambda x:dict(url=x[1],logname=x[0]), s.getURLs().items())
|
| step['nest_level'] = s.getNestLevel()
|
|
|
| + step['aliases'] = {}
|
| + for base, aliases in s.getAliases().iteritems():
|
| + step['aliases'][base] = [{
|
| + 'text': a[0],
|
| + 'url': a[1],
|
| + } for a in aliases]
|
| +
|
| step['logs']= []
|
|
|
| for l in s.getLogs():
|
|
|