Changeset 70079 in webkit


Ignore:
Timestamp:
Oct 19, 2010 1:44:14 PM (14 years ago)
Author:
eric@webkit.org
Message:

2010-10-19 Eric Seidel <eric@webkit.org>

Reviewed by Adam Barth.

cr-mac bubble has caused status bubbles to wrap
https://bugs.webkit.org/show_bug.cgi?id=47928

We now have too many EWSes to fit in the bugs.webkit.org
status-bubble iframe when more than a couple EWS builds are pending.
To fix this I've reduced the space taken up by queue position,
and also moved cr-mac to the end of the list (since it's going to be
triple-digits for a while).

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

Legend:

Unmodified
Added
Removed
  • trunk/WebKitTools/ChangeLog

    r70068 r70079  
     12010-10-19  Eric Seidel  <eric@webkit.org>
     2
     3        Reviewed by Adam Barth.
     4
     5        cr-mac bubble has caused status bubbles to wrap
     6        https://bugs.webkit.org/show_bug.cgi?id=47928
     7
     8        We now have too many EWSes to fit in the bugs.webkit.org
     9        status-bubble iframe when more than a couple EWS builds are pending.
     10        To fix this I've reduced the space taken up by queue position,
     11        and also moved cr-mac to the end of the list (since it's going to be
     12        triple-digits for a while).
     13
     14        * QueueStatusServer/model/queues.py:
     15        * QueueStatusServer/templates/statusbubble.html:
     16
    1172010-10-19  Kenneth Russell  <kbr@google.com>
    218
  • trunk/WebKitTools/QueueStatusServer/model/queues.py

    r70029 r70079  
    4141        "style-queue",
    4242        "chromium-ews",
    43         "cr-mac-ews",
    4443        "qt-ews",
    4544        "gtk-ews",
     
    4746        "win-ews",
    4847        "efl-ews",
     48        "cr-mac-ews",
    4949    ]
    5050
  • trunk/WebKitTools/QueueStatusServer/templates/statusbubble.html

    r59534 r70079  
    4040  border: 1px solid #ACA0B3;
    4141}
     42.queue_position {
     43    font-size: 9px;
     44}
    4245</style>
    4346<script>
     
    5457  {{ bubble.name }}
    5558  {% if bubble.queue_position %}
    56   (#{{ bubble.queue_position }})
     59  <span class="queue_position">#{{ bubble.queue_position }}</span>
    5760  {% endif %}
    5861</div>
Note: See TracChangeset for help on using the changeset viewer.