Changeset 162357 in webkit


Ignore:
Timestamp:
Jan 20, 2014 10:24:34 AM (10 years ago)
Author:
ap@apple.com
Message:

Make uploading results to EWS work despite robots.txt
https://bugs.webkit.org/show_bug.cgi?id=127296

Reviewed by Ryosuke Niwa.

  • Scripts/webkitpy/common/net/statusserver.py: (StatusServer.init): Disable

checking robots.txt.

  • Scripts/webkitpy/common/net/bugzilla/bugzilla.py: (Bugzilla._get_browser):

Removed a comment saying that we would want to stop doing this. Not checking
robots.txt is more efficient than checking it.

Location:
trunk/Tools
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r162303 r162357  
     12014-01-20  Alexey Proskuryakov  <ap@apple.com>
     2
     3        Make uploading results to EWS work despite robots.txt
     4        https://bugs.webkit.org/show_bug.cgi?id=127296
     5
     6        Reviewed by Ryosuke Niwa.
     7
     8        * Scripts/webkitpy/common/net/statusserver.py: (StatusServer.__init__): Disable
     9        checking robots.txt.
     10
     11        * Scripts/webkitpy/common/net/bugzilla/bugzilla.py: (Bugzilla._get_browser):
     12        Removed a comment saying that we would want to stop doing this. Not checking
     13        robots.txt is more efficient than checking it.
     14
    1152014-01-19  Ryuan Choi  <ryuan.choi@samsung.com>
    216
  • trunk/Tools/Scripts/webkitpy/common/net/bugzilla/bugzilla.py

    r160353 r162357  
    314314            from webkitpy.thirdparty.autoinstalled.mechanize import Browser
    315315            self._browser = Browser()
    316             # Ignore bugs.webkit.org/robots.txt until we fix it to allow this script.
    317316            self._browser.set_handle_robots(False)
    318317        return self._browser
  • trunk/Tools/Scripts/webkitpy/common/net/statusserver.py

    r159562 r162357  
    4444        from webkitpy.thirdparty.autoinstalled.mechanize import Browser
    4545        self._browser = browser or Browser()
     46        self._browser.set_handle_robots(False)
    4647        self.set_bot_id(bot_id)
    4748
Note: See TracChangeset for help on using the changeset viewer.