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

Side by Side Diff: third_party/buildbot_8_4p1/buildbot/status/web/templates/change_macros.html

Issue 11425002: Optionally add project through buildbot onto the waterfall. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build/
Patch Set: Invert the git diffs Created 8 years 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
« no previous file with comments | « third_party/buildbot_8_4p1/buildbot/status/web/changes.py ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 {% macro change(c) %} 1 {% macro change(c) %}
2 2
3 <table class="info"> 3 <table class="info">
4 {% set row_class=cycler('alt','') %} 4 {% set row_class=cycler('alt','') %}
5 <tr class="{{ row_class.next() }}"> 5 <tr class="{{ row_class.next() }}">
6 <td class="left">Changed by</td> 6 <td class="left">Changed by</td>
7 <td><b>{{ c.who|email }}</b></td> 7 <td><b>{{ c.who|email }}</b></td>
8 </tr> 8 </tr>
9 <tr class="{{ row_class.next() }}"> 9 <tr class="{{ row_class.next() }}">
10 <td class="left">Changed at</td> 10 <td class="left">Changed at</td>
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
60 {% for p in c.properties %} 60 {% for p in c.properties %}
61 <tr class="{{ loop.cycle('alt') }}"> 61 <tr class="{{ loop.cycle('alt') }}">
62 <td class="left">{{ p[0]|capitalize|e }}</td> 62 <td class="left">{{ p[0]|capitalize|e }}</td>
63 <td>{{ p[1]|e }}</td> 63 <td>{{ p[1]|e }}</td>
64 </tr> 64 </tr>
65 {% endfor %} 65 {% endfor %}
66 </table> 66 </table>
67 {% endif %} 67 {% endif %}
68 {%- endmacro %} 68 {%- endmacro %}
69 69
70 {% macro box_contents(who, url, pageTitle, revision) -%} 70 {% macro box_contents(who, url, pageTitle, revision, project) -%}
71 <a href="{{ url }}" title="{{ pageTitle|e }}">{{ who|user }}</a><br>r{{ revision }} 71 <a href="{{ url }}" title="{{ pageTitle|e }}">{{ who|user }}</a><br>r{{ revision }}
72 {%- endmacro %} 72 {%- endmacro %}
OLDNEW
« no previous file with comments | « third_party/buildbot_8_4p1/buildbot/status/web/changes.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698