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

ukai at chromium.org ukai at chromium.org
Thu Apr 8 02:15:57 UTC 2010


The following commit has been merged in the webkit-1.2 branch:
commit 9ce8543aac650c2ae92590266c3d871c4e6eff25
Author: ukai at chromium.org <ukai at chromium.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Tue Mar 9 04:21:08 2010 +0000

    2010-03-08  Fumitoshi Ukai  <ukai at chromium.org>
    
            Reviewed by Adam Barth.
    
            Fix webkit-patch post and land to work well with security bug
            https://bugs.webkit.org/show_bug.cgi?id=35733
    
            Bugzilla requires authentication to access security bug page,
            so call authenticate() if it failed to fetch bug page.
    
            * Scripts/webkitpy/bugzilla.py:
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@55704 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKitTools/ChangeLog b/WebKitTools/ChangeLog
index ca99659..d928c8b 100644
--- a/WebKitTools/ChangeLog
+++ b/WebKitTools/ChangeLog
@@ -1,3 +1,15 @@
+2010-03-08  Fumitoshi Ukai  <ukai at chromium.org>
+
+        Reviewed by Adam Barth.
+
+        Fix webkit-patch post and land to work well with security bug
+        https://bugs.webkit.org/show_bug.cgi?id=35733
+
+        Bugzilla requires authentication to access security bug page,
+        so call authenticate() if it failed to fetch bug page.
+
+        * Scripts/webkitpy/bugzilla.py:
+
 2010-03-04  Dirk Pranke  <dpranke at chromium.org>
 
         Reviewed by Dimitry Glazkov.
diff --git a/WebKitTools/Scripts/webkitpy/bugzilla.py b/WebKitTools/Scripts/webkitpy/bugzilla.py
index 00e6940..47a1a43 100644
--- a/WebKitTools/Scripts/webkitpy/bugzilla.py
+++ b/WebKitTools/Scripts/webkitpy/bugzilla.py
@@ -418,7 +418,11 @@ class Bugzilla(object):
         return self.browser.open(bug_url)
 
     def fetch_bug_dictionary(self, bug_id):
-        return self._parse_bug_page(self._fetch_bug_page(bug_id))
+        try:
+            return self._parse_bug_page(self._fetch_bug_page(bug_id))
+        except:
+            self.authenticate()
+            return self._parse_bug_page(self._fetch_bug_page(bug_id))
 
     # FIXME: A BugzillaCache object should provide all these fetch_ methods.
 

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list