Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Side by Side Diff: run.py

Issue 29337707: No issue - disable signing enforcement to run crawler (Closed)
Patch Set: Created Feb. 25, 2016, 3:21 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #!/usr/bin/env python 1 #!/usr/bin/env python
2 # coding: utf-8 2 # coding: utf-8
3 3
4 import argparse 4 import argparse
5 import datetime 5 import datetime
6 import errno 6 import errno
7 import hashlib 7 import hashlib
8 import io 8 import io
9 import json 9 import json
10 import os 10 import os
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after
132 132
133 profile = FirefoxProfile( 133 profile = FirefoxProfile(
134 addons=[ 134 addons=[
135 crawlerxpi, 135 crawlerxpi,
136 abpxpi, 136 abpxpi,
137 ], 137 ],
138 preferences={ 138 preferences={
139 'browser.tabs.warnOnCloseOtherTabs': False, 139 'browser.tabs.warnOnCloseOtherTabs': False,
140 'browser.uitour.enabled': False, 140 'browser.uitour.enabled': False,
141 'prompts.tab_modal.enabled': False, 141 'prompts.tab_modal.enabled': False,
142 'xpinstall.signatures.required': False,
142 } 143 }
143 ) 144 )
144 145
145 abpsettings = os.path.join(profile.profile, 'adblockplus') 146 abpsettings = os.path.join(profile.profile, 'adblockplus')
146 os.makedirs(abpsettings) 147 os.makedirs(abpsettings)
147 with open(os.path.join(abpsettings, 'patterns.ini'), 'w') as handle: 148 with open(os.path.join(abpsettings, 'patterns.ini'), 'w') as handle:
148 print >>handle, '# Adblock Plus preferences' 149 print >>handle, '# Adblock Plus preferences'
149 print >>handle, 'version=4' 150 print >>handle, 'version=4'
150 for url in parameters.filters: 151 for url in parameters.filters:
151 if '=' in url: 152 if '=' in url:
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
190 BASE_DIR = os.path.dirname(os.path.abspath(__file__)) 191 BASE_DIR = os.path.dirname(os.path.abspath(__file__))
191 DEPENDENCY_SCRIPT = os.path.join(BASE_DIR, "ensure_dependencies.py") 192 DEPENDENCY_SCRIPT = os.path.join(BASE_DIR, "ensure_dependencies.py")
192 193
193 try: 194 try:
194 subprocess.check_call([sys.executable, DEPENDENCY_SCRIPT, BASE_DIR]) 195 subprocess.check_call([sys.executable, DEPENDENCY_SCRIPT, BASE_DIR])
195 except subprocess.CalledProcessError as e: 196 except subprocess.CalledProcessError as e:
196 print >>sys.stderr, e 197 print >>sys.stderr, e
197 print >>sys.stderr, "Failed to ensure dependencies being up-to-date!" 198 print >>sys.stderr, "Failed to ensure dependencies being up-to-date!"
198 199
199 run() 200 run()
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld