[SCM] WebKit Debian packaging branch, debian/unstable, updated. debian/1.1.18-1-697-g2f78b87
eric at webkit.org
eric at webkit.org
Wed Jan 20 22:27:48 UTC 2010
The following commit has been merged in the debian/unstable branch:
commit e458d353865b67417d99f5160fbfabbca40c735d
Author: eric at webkit.org <eric at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date: Mon Jan 18 13:49:30 2010 +0000
2010-01-18 Adam Barth <abarth at webkit.org>
Reviewed by David Levin.
webkit-patch should authenticate more often
https://bugs.webkit.org/show_bug.cgi?id=33701
This makes it easier to work with security patches.
* Scripts/webkitpy/bugzilla.py:
git-svn-id: http://svn.webkit.org/repository/webkit/trunk@53403 268f45cc-cd09-0410-ab3c-d52691b4dbfc
diff --git a/WebKitTools/ChangeLog b/WebKitTools/ChangeLog
index 88ce8d3..24bd1cc 100644
--- a/WebKitTools/ChangeLog
+++ b/WebKitTools/ChangeLog
@@ -1,5 +1,16 @@
2010-01-18 Adam Barth <abarth at webkit.org>
+ Reviewed by David Levin.
+
+ webkit-patch should authenticate more often
+ https://bugs.webkit.org/show_bug.cgi?id=33701
+
+ This makes it easier to work with security patches.
+
+ * Scripts/webkitpy/bugzilla.py:
+
+2010-01-18 Adam Barth <abarth at webkit.org>
+
Reviewed by Darin Adler.
style checker needs to know about GObject-specific requirements
diff --git a/WebKitTools/Scripts/webkitpy/bugzilla.py b/WebKitTools/Scripts/webkitpy/bugzilla.py
index 50edf30..0ec9ec5 100644
--- a/WebKitTools/Scripts/webkitpy/bugzilla.py
+++ b/WebKitTools/Scripts/webkitpy/bugzilla.py
@@ -171,6 +171,8 @@ class BugzillaQueries(object):
# Note: _load_query and _fetch_bug are the only two methods which access self._bugzilla.
def _load_query(self, query):
+ self._bugzilla.authenticate()
+
full_url = "%s%s" % (self._bugzilla.bug_server_url, query)
return self._bugzilla.browser.open(full_url)
@@ -353,6 +355,8 @@ class Bugzilla(object):
return int(match.group('bug_id'))
def bug_id_for_attachment_id(self, attachment_id):
+ self.authenticate()
+
attachment_url = self.attachment_url_for_id(attachment_id, 'edit')
log("Fetching: %s" % attachment_url)
page = self.browser.open(attachment_url)
--
WebKit Debian packaging
More information about the Pkg-webkit-commits
mailing list