Changeset 53403 in webkit


Ignore:
Timestamp:
Jan 18, 2010 5:49:30 AM (14 years ago)
Author:
eric@webkit.org
Message:

2010-01-18 Adam Barth <abarth@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:
Location:
trunk/WebKitTools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKitTools/ChangeLog

    r53399 r53403  
     12010-01-18  Adam Barth  <abarth@webkit.org>
     2
     3        Reviewed by David Levin.
     4
     5        webkit-patch should authenticate more often
     6        https://bugs.webkit.org/show_bug.cgi?id=33701
     7
     8        This makes it easier to work with security patches.
     9
     10        * Scripts/webkitpy/bugzilla.py:
     11
    1122010-01-18  Adam Barth  <abarth@webkit.org>
    213
  • trunk/WebKitTools/Scripts/webkitpy/bugzilla.py

    r53396 r53403  
    172172    # Note: _load_query and _fetch_bug are the only two methods which access self._bugzilla.
    173173    def _load_query(self, query):
     174        self._bugzilla.authenticate()
     175
    174176        full_url = "%s%s" % (self._bugzilla.bug_server_url, query)
    175177        return self._bugzilla.browser.open(full_url)
     
    354356
    355357    def bug_id_for_attachment_id(self, attachment_id):
     358        self.authenticate()
     359
    356360        attachment_url = self.attachment_url_for_id(attachment_id, 'edit')
    357361        log("Fetching: %s" % attachment_url)
Note: See TracChangeset for help on using the changeset viewer.