[SCM] WebKit Debian packaging branch, webkit-1.2, updated. upstream/1.1.90-6072-g9a69373

abarth at webkit.org abarth at webkit.org
Thu Apr 8 00:22:17 UTC 2010


The following commit has been merged in the webkit-1.2 branch:
commit 1e881db954a80f442931cb1b8a116e4be53e41ee
Author: abarth at webkit.org <abarth at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Mon Dec 7 01:09:32 2009 +0000

    2009-12-06  Adam Barth  <abarth at webkit.org>
    
            Reviewed by Eric Seidel.
    
            [bzt] Rename AbstractTryQueue to AbstractReviewQueue
            https://bugs.webkit.org/show_bug.cgi?id=32202
    
            * Scripts/modules/commands/queues.py:
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@51742 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKitTools/ChangeLog b/WebKitTools/ChangeLog
index 97203de..4c1db60 100644
--- a/WebKitTools/ChangeLog
+++ b/WebKitTools/ChangeLog
@@ -1,3 +1,12 @@
+2009-12-06  Adam Barth  <abarth at webkit.org>
+
+        Reviewed by Eric Seidel.
+
+        [bzt] Rename AbstractTryQueue to AbstractReviewQueue
+        https://bugs.webkit.org/show_bug.cgi?id=32202
+
+        * Scripts/modules/commands/queues.py:
+
 2009-12-05  Adam Barth  <abarth at webkit.org>
 
         Reviewed by Eric Seidel.
diff --git a/WebKitTools/Scripts/modules/commands/queues.py b/WebKitTools/Scripts/modules/commands/queues.py
index b325444..d45c30d 100644
--- a/WebKitTools/Scripts/modules/commands/queues.py
+++ b/WebKitTools/Scripts/modules/commands/queues.py
@@ -145,7 +145,7 @@ class CommitQueue(AbstractQueue, LandingSequenceErrorHandler):
         tool.bugs.reject_patch_from_commit_queue(patch["id"], script_error.message_with_output())
 
 
-class AbstractTryQueue(AbstractQueue, PersistentPatchCollectionDelegate, LandingSequenceErrorHandler):
+class AbstractReviewQueue(AbstractQueue, PersistentPatchCollectionDelegate, LandingSequenceErrorHandler):
     def __init__(self, options=None):
         AbstractQueue.__init__(self, options)
 
@@ -188,11 +188,11 @@ class AbstractTryQueue(AbstractQueue, PersistentPatchCollectionDelegate, Landing
         log(script_error.message_with_output())
 
 
-class StyleQueue(AbstractTryQueue):
+class StyleQueue(AbstractReviewQueue):
     name = "style-queue"
     show_in_main_help = False
     def __init__(self):
-        AbstractTryQueue.__init__(self)
+        AbstractReviewQueue.__init__(self)
 
     def should_proceed_with_work_item(self, patch):
         return (True, "Checking style for patch %s on bug %s." % (patch["id"], patch["bug_id"]), patch)
@@ -219,15 +219,15 @@ class StyleQueue(AbstractTryQueue):
             tool.bugs.post_comment_to_bug(patch["bug_id"], message, cc=cls.watchers)
 
 
-class BuildQueue(AbstractTryQueue):
+class BuildQueue(AbstractReviewQueue):
     name = "build-queue"
     show_in_main_help = False
     def __init__(self):
         options = WebKitPort.port_options()
-        AbstractTryQueue.__init__(self, options)
+        AbstractReviewQueue.__init__(self, options)
 
     def begin_work_queue(self):
-        AbstractTryQueue.begin_work_queue(self)
+        AbstractReviewQueue.begin_work_queue(self)
         self.port = WebKitPort.port(self.options)
 
     def should_proceed_with_work_item(self, patch):

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list