Changeset 53007 in webkit


Ignore:
Timestamp:
Jan 8, 2010 2:05:04 PM (14 years ago)
Author:
eric@webkit.org
Message:

2010-01-08 Adam Barth <abarth@webkit.org>

Reviewed by Darin Adler.

Show patch status in bugs.webkit.org
https://bugs.webkit.org/show_bug.cgi?id=33368

This patch adds an iframe to the show_bug page and the edit attachment
page that displays whether the attachment passed the various bots.

  • template/en/custom/attachment/edit.html.tmpl:
  • template/en/custom/attachment/list.html.tmpl:
  • template/en/custom/attachment/reviewform.html.tmpl:
Location:
trunk/BugsSite
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/BugsSite/ChangeLog

    r51826 r53007  
     12010-01-08  Adam Barth  <abarth@webkit.org>
     2
     3        Reviewed by Darin Adler.
     4
     5        Show patch status in bugs.webkit.org
     6        https://bugs.webkit.org/show_bug.cgi?id=33368
     7
     8        This patch adds an iframe to the show_bug page and the edit attachment
     9        page that displays whether the attachment passed the various bots.
     10
     11        * template/en/custom/attachment/edit.html.tmpl:
     12        * template/en/custom/attachment/list.html.tmpl:
     13        * template/en/custom/attachment/reviewform.html.tmpl:
     14
    1152009-12-07  Shinichiro Hamaji  <hamaji@chromium.org>
    216
  • trunk/BugsSite/template/en/custom/attachment/edit.html.tmpl

    r45520 r53007  
    256256                                           attach_id = attachment.id %]<br>
    257257        [% END %]
     258
     259[%# if WEBKIT_CHANGES %]
     260        [% IF attachment.ispatch %]
     261        <b><small>Bot Status:</small></b>
     262
     263        <div class="statusBubble">
     264          <iframe src="https://webkit-commit-queue.appspot.com/status-bubble/[% attachment.id %]"
     265                  style="width: 300px; height: 18px; border: none;" scrolling="no">
     266          </iframe>
     267        </div>
     268        <br>
     269        [% END %]
     270[%# endif // WEBKIT_CHANGES %]
    258271
    259272        <div id="smallCommentFrame">
  • trunk/BugsSite/template/en/custom/attachment/list.html.tmpl

    r45520 r53007  
    139139          [% END %]
    140140          [% Hook.process("action") %]
     141[%# if WEBKIT_CHANGES %]
     142          [% IF attachment.ispatch %]
     143          <div class="statusBubble">
     144            <iframe src="https://webkit-commit-queue.appspot.com/status-bubble/[% attachment.id %]"
     145                    style="width: 300px; height: 18px; border: none;" scrolling="no">
     146            </iframe>
     147          </div>
     148          [% END %]
     149[%# endif // WEBKIT_CHANGES %]
    141150        </td>
    142151      </tr>
  • trunk/BugsSite/template/en/custom/attachment/reviewform.html.tmpl

    r45520 r53007  
    8585</td>
    8686<td>
     87[% IF ispatch %]
     88  <b><small>Bot Status:</small></b>
     89
     90  <div class="statusBubble">
     91    <iframe src="https://webkit-commit-queue.appspot.com/status-bubble/[% attachment.id %]"
     92            style="width: 300px; height: 18px; border: none;" scrolling="no">
     93    </iframe>
     94  </div>
     95[% END %]
     96</td>
     97<td>
    8798Back to <a href="show_bug.cgi?id=[% attachment.bug_id %]" target="_top">[% terms.Bug %] #[% attachment.bug_id %]</a>
    8899</td>
     
    100111</tr>
    101112<tr>
    102 <td colspan="4">
     113<td colspan="5">
    103114Enter comments below:<br>
    104115<textarea id=comment name="comment" wrap="soft">[% quotedpatch FILTER html %]</textarea><br>
Note: See TracChangeset for help on using the changeset viewer.