Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(656)

Side by Side Diff: third_party/buildbot_8_4p1/README.chromium

Issue 9169097: Add a custom SVNPoller implementation that adds " (CQ)" to author name for (Closed) Base URL: http://src.chromium.org/svn/trunk/tools/build/
Patch Set: . Created 8 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 URL: http://buildbot.net/trac 1 URL: http://buildbot.net/trac
2 Version: 0.8.4p1 2 Version: 0.8.4p1
3 License: GNU General Public License (GPL) Version 2 3 License: GNU General Public License (GPL) Version 2
4 4
5 This is a forked copy of buildbot v0.8.4p1. 5 This is a forked copy of buildbot v0.8.4p1.
6 6
7 7
8 Add extra parameters to HttpStatusPush as a very basic authentication mechanism. 8 Add extra parameters to HttpStatusPush as a very basic authentication mechanism.
9 9
10 diff --git a/third_party/buildbot_8_4p1/buildbot/status/status_push.py b/third_p arty/buildbot_8_4p1/buildbot/status/status_push.py 10 diff --git a/third_party/buildbot_8_4p1/buildbot/status/status_push.py b/third_p arty/buildbot_8_4p1/buildbot/status/status_push.py
(...skipping 1115 matching lines...) Expand 10 before | Expand all | Expand 10 after
1126 + self._getBuildRequest()) 1126 + self._getBuildRequest())
1127 yield wfd 1127 yield wfd
1128 - ss = wfd.getResult() 1128 - ss = wfd.getResult()
1129 + br = wfd.getResult() 1129 + br = wfd.getResult()
1130 + ss = br.source 1130 + ss = br.source
1131 result['source'] = ss.asDict() 1131 result['source'] = ss.asDict()
1132 + result['reason'] = br.reason 1132 + result['reason'] = br.reason
1133 1133
1134 result['builderName'] = self.getBuilderName() 1134 result['builderName'] = self.getBuilderName()
1135 1135
1136
1137 Add " (CQ)" to the author name in the console if the commit-queue was used.
1138
1139 --- buildbot/status/web/templates/console.html (revision 113419)
1140 +++ buildbot/status/web/templates/console.html (working copy)
1141 @@ -187,6 +187,7 @@
1142 </td>
1143 <td class='DevName {{ alt }}' width="1%">
1144 {{ r.who|user }}
1145 + {{ r.cq }}
1146 </td>
1147
1148 {% for c in categories %}
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698