Changeset 52680 in webkit


Ignore:
Timestamp:
Dec 31, 2009 4:49:29 AM (14 years ago)
Author:
eric@webkit.org
Message:

2009-12-31 Adam Barth <abarth@webkit.org>

Reviewed by Eric Seidel.

Show mac-ews status on QueueStatusServer
https://bugs.webkit.org/show_bug.cgi?id=33076

Also make error status purple.

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

Legend:

Unmodified
Added
Removed
  • trunk/WebKitTools/ChangeLog

    r52679 r52680  
     12009-12-31  Adam Barth  <abarth@webkit.org>
     2
     3        Reviewed by Eric Seidel.
     4
     5        Show mac-ews status on QueueStatusServer
     6        https://bugs.webkit.org/show_bug.cgi?id=33076
     7
     8        Also make error status purple.
     9
     10        * QueueStatusServer/model/attachment.py:
     11        * QueueStatusServer/model/queues.py:
     12        * QueueStatusServer/templates/dashboard.html:
     13        * QueueStatusServer/templates/statusbubble.html:
     14
    1152009-12-31  Adam Barth  <abarth@webkit.org>
    216
  • trunk/WebKitTools/QueueStatusServer/model/attachment.py

    r52429 r52680  
    8080            "Pass" : "pass",
    8181            "Fail" : "fail",
    82             "Error" : "error",
    8382        }
    8483        state = table.get(status.message)
    8584        if state:
    8685            return state
     86        if status.message.startswith("Error:"):
     87            return "error"
    8788        if status:
    8889            return "pending"
  • trunk/WebKitTools/QueueStatusServer/model/queues.py

    r52429 r52680  
    3131    "chromium-ews",
    3232    "qt-ews",
     33    "mac-ews",
    3334    "gtk-ews",
    3435    "commit-queue",
  • trunk/WebKitTools/QueueStatusServer/templates/dashboard.html

    r52405 r52680  
    2121      <th>Chromium</th>
    2222      <th>Qt</th>
     23      <th>Mac</th>
    2324      <th>Gtk</th>
    2425      <th>Commit</th>
     
    4647          title="{{ summary.qt_ews.status.date|timesince }} ago"{% endif %}>
    4748      </td>
     49      <td class="status {{ summary.mac_ews.state }}"{% if summary.mac_ews.status %}
     50          onclick="statusDetail({{ summary.attachment_id }})"
     51          title="{{ summary.mac_ews.status.date|timesince }} ago"{% endif %}>
     52      </td>
    4853      <td class="status {{ summary.gtk_ews.state }}"{% if summary.gtk_ews.status %}
    4954          onclick="statusDetail({{ summary.attachment_id }})"
  • trunk/WebKitTools/QueueStatusServer/templates/statusbubble.html

    r52593 r52680  
    6262  qt
    6363</div>
     64<div class="status {{ summary.mac_ews.state }}"{% if summary.mac_ews.status %}
     65    onclick="statusDetail({{ summary.attachment_id }})"
     66    title="{{ summary.mac_ews.status.date|timesince }} ago"{% endif %}>
     67  mac
     68</div>
    6469<div class="status {{ summary.gtk_ews.state }}"{% if summary.gtk_ews.status %}
    6570    onclick="statusDetail({{ summary.attachment_id }})"
Note: See TracChangeset for help on using the changeset viewer.