Changeset 56992 in webkit


Ignore:
Timestamp:
Apr 2, 2010 2:10:58 AM (14 years ago)
Author:
eric@webkit.org
Message:

2010-04-02 Adam Barth <abarth@webkit.org>

Reviewed by Eric Seidel.

Add cr-win-ews to QueueStatusServer
https://bugs.webkit.org/show_bug.cgi?id=37004

  • QueueStatusServer/model/queues.py:
  • QueueStatusServer/templates/dashboard.html:
  • QueueStatusServer/templates/statusbubble.html:
Location:
trunk/WebKitTools
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKitTools/ChangeLog

    r56988 r56992  
     12010-04-02  Adam Barth  <abarth@webkit.org>
     2
     3        Reviewed by Eric Seidel.
     4
     5        Add cr-win-ews to QueueStatusServer
     6        https://bugs.webkit.org/show_bug.cgi?id=37004
     7
     8        * QueueStatusServer/model/queues.py:
     9        * QueueStatusServer/templates/dashboard.html:
     10        * QueueStatusServer/templates/statusbubble.html:
     11
    1122010-04-02  Chris Jerdonek  <cjerdonek@webkit.org>
    213
  • trunk/WebKitTools/QueueStatusServer/model/queues.py

    r56881 r56992  
    2828
    2929queues = [
     30    "commit-queue",
    3031    "style-queue",
    3132    "chromium-ews",
     33    "cr-win-ews",
    3234    "qt-ews",
     35    "gtk-ews",
    3336    "mac-ews",
    3437    "win-ews",
    35     "gtk-ews",
    36     "commit-queue",
    3738]
  • trunk/WebKitTools/QueueStatusServer/templates/dashboard.html

    r56881 r56992  
    1919      <th>Attachment</th>
    2020      <th>Style</th>
    21       <th>Chromium</th>
     21      <th>Cr-Linux</th>
     22      <th>Cr-Win</th>
    2223      <th>Qt</th>
    2324      <th>Mac</th>
     
    4344          onclick="statusDetail({{ summary.attachment_id }})"
    4445          title="{{ summary.chromium_ews.status.date|timesince }} ago"{% endif %}>
     46      </td>
     47      <td class="status {{ summary.cr_win_ews.state }}"{% if summary.cr_win_ews.status %}
     48          onclick="statusDetail({{ summary.attachment_id }})"
     49          title="{{ summary.cr_win_ews.status.date|timesince }} ago"{% endif %}>
    4550      </td>
    4651      <td class="status {{ summary.qt_ews.state }}"{% if summary.qt_ews.status %}
  • trunk/WebKitTools/QueueStatusServer/templates/statusbubble.html

    r56881 r56992  
    5757    onclick="statusDetail({{ summary.attachment_id }})"
    5858    title="{{ summary.chromium_ews.status.date|timesince }} ago"{% endif %}>
    59   chromium
     59  cr-linux
     60</div>
     61<div class="status {{ summary.cr_win_ews.state }}"{% if summary.cr_win_ews.status %}
     62    onclick="statusDetail({{ summary.attachment_id }})"
     63    title="{{ summary.cr_win_ews.status.date|timesince }} ago"{% endif %}>
     64  cr-win
    6065</div>
    6166<div class="status {{ summary.qt_ews.state }}"{% if summary.qt_ews.status %}
Note: See TracChangeset for help on using the changeset viewer.