[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 12:51:31 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit 17444c89e38f9bddac4b75e1652efc2c6e9d9524
Author: eric at webkit.org <eric at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Tue Aug 31 19:09:06 2010 +0000

    2010-08-31  Eric Seidel  <eric at webkit.org>
    
            Reviewed by Adam Barth.
    
            Show more status on queue status pages
            https://bugs.webkit.org/show_bug.cgi?id=44938
    
            I upped the number of status lines from 6 to 15 --
            this has been bugging me for a while...
    
            I also disabled showing the chromium-win EWS queue
            since it's been down for almost 5 months now.
    
            * QueueStatusServer/handlers/dashboard.py:
            * QueueStatusServer/handlers/queuestatus.py:
            * QueueStatusServer/model/queues.py:
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@66518 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKitTools/ChangeLog b/WebKitTools/ChangeLog
index 11a053c..1b83e1e 100644
--- a/WebKitTools/ChangeLog
+++ b/WebKitTools/ChangeLog
@@ -1,3 +1,20 @@
+2010-08-31  Eric Seidel  <eric at webkit.org>
+
+        Reviewed by Adam Barth.
+
+        Show more status on queue status pages
+        https://bugs.webkit.org/show_bug.cgi?id=44938
+
+        I upped the number of status lines from 6 to 15 --
+        this has been bugging me for a while...
+
+        I also disabled showing the chromium-win EWS queue
+        since it's been down for almost 5 months now.
+
+        * QueueStatusServer/handlers/dashboard.py:
+        * QueueStatusServer/handlers/queuestatus.py:
+        * QueueStatusServer/model/queues.py:
+
 2010-08-31  Zoltan Horvath  <zoltan at webkit.org>
 
         Reviewed by Antonio Gomes.
diff --git a/WebKitTools/QueueStatusServer/handlers/dashboard.py b/WebKitTools/QueueStatusServer/handlers/dashboard.py
index bbb65b8..26de263 100644
--- a/WebKitTools/QueueStatusServer/handlers/dashboard.py
+++ b/WebKitTools/QueueStatusServer/handlers/dashboard.py
@@ -43,7 +43,6 @@ class Dashboard(webapp.RequestHandler):
     _queues_to_display = [
         ["Style", "style-queue"],
         ["Cr-Linux", "chromium-ews"],
-        ["Cr-Win", "cr-win-ews"],
         ["Qt", "qt-ews"],
         ["Gtk", "gtk-ews"],
         ["Mac", "mac-ews"],
diff --git a/WebKitTools/QueueStatusServer/handlers/queuestatus.py b/WebKitTools/QueueStatusServer/handlers/queuestatus.py
index 6282a98..5295b17 100644
--- a/WebKitTools/QueueStatusServer/handlers/queuestatus.py
+++ b/WebKitTools/QueueStatusServer/handlers/queuestatus.py
@@ -49,7 +49,7 @@ class QueueStatus(webapp.RequestHandler):
 
     def get(self, queue_name):
         work_items = WorkItems.all().filter("queue_name =", queue_name).get()
-        statuses = queuestatus.QueueStatus.all().filter("queue_name =", queue_name).order("-date").fetch(6)
+        statuses = queuestatus.QueueStatus.all().filter("queue_name =", queue_name).order("-date").fetch(15)
         template_values = {
             "display_queue_name": display_name_for_queue(queue_name),
             "work_item_rows": self._rows_for_work_items(work_items),
diff --git a/WebKitTools/QueueStatusServer/model/queues.py b/WebKitTools/QueueStatusServer/model/queues.py
index 2f0884f..588d7ad 100644
--- a/WebKitTools/QueueStatusServer/model/queues.py
+++ b/WebKitTools/QueueStatusServer/model/queues.py
@@ -33,7 +33,6 @@ queues = [
     "commit-queue",
     "style-queue",
     "chromium-ews",
-    "cr-win-ews",
     "qt-ews",
     "gtk-ews",
     "mac-ews",

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list