Changeset 162357 in webkit
- Timestamp:
- Jan 20, 2014, 10:24:34 AM (11 years ago)
- Location:
- trunk/Tools
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Tools/ChangeLog
r162303 r162357 1 2014-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 1 15 2014-01-19 Ryuan Choi <ryuan.choi@samsung.com> 2 16 -
trunk/Tools/Scripts/webkitpy/common/net/bugzilla/bugzilla.py
r160353 r162357 314 314 from webkitpy.thirdparty.autoinstalled.mechanize import Browser 315 315 self._browser = Browser() 316 # Ignore bugs.webkit.org/robots.txt until we fix it to allow this script.317 316 self._browser.set_handle_robots(False) 318 317 return self._browser -
trunk/Tools/Scripts/webkitpy/common/net/statusserver.py
r159562 r162357 44 44 from webkitpy.thirdparty.autoinstalled.mechanize import Browser 45 45 self._browser = browser or Browser() 46 self._browser.set_handle_robots(False) 46 47 self.set_bot_id(bot_id) 47 48
Note:
See TracChangeset
for help on using the changeset viewer.