[SCM] WebKit Debian packaging branch, debian/experimental, updated. upstream/1.3.3-9427-gc2be6fc

eric at webkit.org eric at webkit.org
Wed Dec 22 14:46:07 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit 6e0ff8734e55ffb1009dbfee71060a8bc7642aa7
Author: eric at webkit.org <eric at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Tue Oct 19 20:44:14 2010 +0000

    2010-10-19  Eric Seidel  <eric at 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:
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@70079 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKitTools/ChangeLog b/WebKitTools/ChangeLog
index 36095e1..ae87211 100644
--- a/WebKitTools/ChangeLog
+++ b/WebKitTools/ChangeLog
@@ -1,3 +1,19 @@
+2010-10-19  Eric Seidel  <eric at 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:
+
 2010-10-19  Kenneth Russell  <kbr at google.com>
 
         Reviewed by David Levin.
diff --git a/WebKitTools/QueueStatusServer/model/queues.py b/WebKitTools/QueueStatusServer/model/queues.py
index 02d8951..2fa57b4 100644
--- a/WebKitTools/QueueStatusServer/model/queues.py
+++ b/WebKitTools/QueueStatusServer/model/queues.py
@@ -40,12 +40,12 @@ class Queue(object):
         "commit-queue",
         "style-queue",
         "chromium-ews",
-        "cr-mac-ews",
         "qt-ews",
         "gtk-ews",
         "mac-ews",
         "win-ews",
         "efl-ews",
+        "cr-mac-ews",
     ]
 
     def __init__(self, name):
diff --git a/WebKitTools/QueueStatusServer/templates/statusbubble.html b/WebKitTools/QueueStatusServer/templates/statusbubble.html
index 3102741..f11544d 100644
--- a/WebKitTools/QueueStatusServer/templates/statusbubble.html
+++ b/WebKitTools/QueueStatusServer/templates/statusbubble.html
@@ -39,6 +39,9 @@ body {
   background-color: #E0B0FF;
   border: 1px solid #ACA0B3;
 }
+.queue_position {
+    font-size: 9px;
+}
 </style>
 <script>
 function statusDetail(patch_id) {
@@ -53,7 +56,7 @@ function statusDetail(patch_id) {
     title="{{ bubble.status.date|timesince }} ago"{% endif %}>
   {{ bubble.name }}
   {% if bubble.queue_position %}
-  (#{{ bubble.queue_position }})
+  <span class="queue_position">#{{ bubble.queue_position }}</span>
   {% endif %}
 </div>
 {% endfor %}

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list