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

Issue 9113086: Add " (CQ)" to the author name in the console if the commit-queue was used. (Closed)

Created:
8 years, 11 months ago by sadrul
Modified:
8 years, 11 months ago
Reviewers:
M-A Ruel
CC:
chromium-reviews
Visibility:
Public.

Description

Add " (CQ)" to the author name in the console if the commit-queue was used. BUG=106658

Patch Set 1 #

Total comments: 7

Patch Set 2 : . #

Unified diffs Side-by-side diffs Delta from patch set Stats (+14 lines, -0 lines) Patch
M README.chromium View 1 1 chunk +13 lines, -0 lines 0 comments Download
M buildbot/status/web/templates/console.html View 1 1 chunk +1 line, -0 lines 0 comments Download

Messages

Total messages: 3 (0 generated)
sadrul
Hi! Second attempt from http://codereview.chromium.org/8835004/ http://codereview.chromium.org/9113086/diff/1/buildbot/changes/svnpoller.py File buildbot/changes/svnpoller.py (right): http://codereview.chromium.org/9113086/diff/1/buildbot/changes/svnpoller.py#newcode206 buildbot/changes/svnpoller.py:206: "--with-all-revprops"]) You suggested in ...
8 years, 11 months ago (2012-01-26 17:57:49 UTC) #1
M-A Ruel
http://codereview.chromium.org/9113086/diff/1/buildbot/changes/svnpoller.py File buildbot/changes/svnpoller.py (right): http://codereview.chromium.org/9113086/diff/1/buildbot/changes/svnpoller.py#newcode206 buildbot/changes/svnpoller.py:206: "--with-all-revprops"]) On 2012/01/26 17:57:49, sadrul wrote: > You suggested ...
8 years, 11 months ago (2012-01-26 18:53:46 UTC) #2
sadrul
8 years, 11 months ago (2012-01-26 20:24:41 UTC) #3
Thanks a lot for the suggestions! As per your suggestions, I have moved the
svnpoller changes in scripts/master/, updated README.chromium. I also changed a
little so we won't need the cqfilter anymore. Since I had to change the base URL
so I could include all these changes in one CL, I have created a new one:
http://codereview.chromium.org/9169097/

http://codereview.chromium.org/9113086/diff/1/buildbot/status/web/base.py
File buildbot/status/web/base.py (right):

http://codereview.chromium.org/9113086/diff/1/buildbot/status/web/base.py#new...
buildbot/status/web/base.py:501: cq = cqfilter,
On 2012/01/26 18:53:47, Marc-Antoine Ruel wrote:
> An option is to monkey patch it in scripts/master/chromium_status_bb8.py, e.g.
> 
> def MonkeyPatch():
>   from buildbot.status.web import base
>   x = base.createJinjaEnv
>   def new(*args, **kwargs):
>     out = x(*args, **kwargs)
>     out.filters.update({'cq': cqfilter})
>     return out
>   base.createJinjaEnv = new
> 
> (with better names)

Interesting idea! I have made that change.

Powered by Google App Engine
This is Rietveld 408576698