Changeset 56881 in webkit


Ignore:
Timestamp:
Mar 31, 2010 5:47:45 PM (14 years ago)
Author:
eric@webkit.org
Message:

2010-03-31 Adam Barth <abarth@webkit.org>

Reviewed by Eric Seidel.

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

The win-ews is still experimental, but it seems to be more or less
running. We should show its results to the people.

  • 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

    r56876 r56881  
     12010-03-31  Adam Barth  <abarth@webkit.org>
     2
     3        Reviewed by Eric Seidel.
     4
     5        Add win-ews to QueueStatusServer
     6        https://bugs.webkit.org/show_bug.cgi?id=36876
     7
     8        The win-ews is still experimental, but it seems to be more or less
     9        running.  We should show its results to the people.
     10
     11        * QueueStatusServer/model/queues.py:
     12        * QueueStatusServer/templates/dashboard.html:
     13        * QueueStatusServer/templates/statusbubble.html:
     14
    1152010-03-30  Victor Wang  <victorw@chromium.org>
    216
  • trunk/WebKitTools/QueueStatusServer/model/queues.py

    r52680 r56881  
    3232    "qt-ews",
    3333    "mac-ews",
     34    "win-ews",
    3435    "gtk-ews",
    3536    "commit-queue",
  • trunk/WebKitTools/QueueStatusServer/templates/dashboard.html

    r52680 r56881  
    2222      <th>Qt</th>
    2323      <th>Mac</th>
     24      <th>Win</th>
    2425      <th>Gtk</th>
    2526      <th>Commit</th>
     
    5152          title="{{ summary.mac_ews.status.date|timesince }} ago"{% endif %}>
    5253      </td>
     54      <td class="status {{ summary.win_ews.state }}"{% if summary.win_ews.status %}
     55          onclick="statusDetail({{ summary.attachment_id }})"
     56          title="{{ summary.win_ews.status.date|timesince }} ago"{% endif %}>
     57      </td>
    5358      <td class="status {{ summary.gtk_ews.state }}"{% if summary.gtk_ews.status %}
    5459          onclick="statusDetail({{ summary.attachment_id }})"
  • trunk/WebKitTools/QueueStatusServer/templates/statusbubble.html

    r53658 r56881  
    7474  mac
    7575</div>
     76<div class="status {{ summary.win_ews.state }}"{% if summary.win_ews.status %}
     77    onclick="statusDetail({{ summary.attachment_id }})"
     78    title="{{ summary.win_ews.status.date|timesince }} ago"{% endif %}>
     79  win
     80</div>
    7681</body>
    7782</html>
Note: See TracChangeset for help on using the changeset viewer.