[SCM] WebKit Debian packaging branch, webkit-1.1, updated. upstream/1.1.19-706-ge5415e9

steveblock at google.com steveblock at google.com
Thu Feb 4 21:21:36 UTC 2010


The following commit has been merged in the webkit-1.1 branch:
commit 516515ceb719f92149bb772788816079c0d414d4
Author: steveblock at google.com <steveblock at google.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Wed Jan 20 11:57:03 2010 +0000

    Fix commit bot to land patches in order of the bug last modification date.
    https://bugs.webkit.org/show_bug.cgi?id=33395
    
    Reviewed by Eric Seidel.
    
    * Scripts/webkitpy/bugzilla.py: Modified. Added 'order=Last+Changed' to bugzilla commit queue URL.
    
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@53542 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKitTools/ChangeLog b/WebKitTools/ChangeLog
index b47de36..adaa218 100644
--- a/WebKitTools/ChangeLog
+++ b/WebKitTools/ChangeLog
@@ -1,3 +1,12 @@
+2010-01-20  Steve Block  <steveblock at google.com>
+
+        Reviewed by Eric Seidel.
+
+        Fix commit bot to land patches in order of the bug last modification date.
+        https://bugs.webkit.org/show_bug.cgi?id=33395
+
+        * Scripts/webkitpy/bugzilla.py: Modified. Added 'order=Last+Changed' to bugzilla commit queue URL.
+
 2010-01-20  Adam Barth  <abarth at webkit.org>
 
         Reviewed by Eric Seidel.
diff --git a/WebKitTools/Scripts/webkitpy/bugzilla.py b/WebKitTools/Scripts/webkitpy/bugzilla.py
index bcc9caa..35ecc25 100644
--- a/WebKitTools/Scripts/webkitpy/bugzilla.py
+++ b/WebKitTools/Scripts/webkitpy/bugzilla.py
@@ -164,7 +164,7 @@ class Bug(object):
         return filter(lambda patch: patch.committer(), patches)
 
 
-# A container for all of the logic for making a parsing buzilla queries.
+# A container for all of the logic for making and parsing buzilla queries.
 class BugzillaQueries(object):
     def __init__(self, bugzilla):
         self._bugzilla = bugzilla
@@ -203,7 +203,7 @@ class BugzillaQueries(object):
         return sum([self._fetch_bug(bug_id).reviewed_patches() for bug_id in self.fetch_bug_ids_from_pending_commit_list()], [])
 
     def fetch_bug_ids_from_commit_queue(self):
-        commit_queue_url = "buglist.cgi?query_format=advanced&bug_status=UNCONFIRMED&bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&field0-0-0=flagtypes.name&type0-0-0=equals&value0-0-0=commit-queue%2B"
+        commit_queue_url = "buglist.cgi?query_format=advanced&bug_status=UNCONFIRMED&bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&field0-0-0=flagtypes.name&type0-0-0=equals&value0-0-0=commit-queue%2B&order=Last+Changed"
         return self._fetch_bug_ids_advanced_query(commit_queue_url)
 
     # This function will only return patches which have valid committers set.  It won't reject patches with invalid committers/reviewers.

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list