| OLD | NEW |
| 1 # This file is part of the Adblock Plus web scripts, | 1 # This file is part of the Adblock Plus web scripts, |
| 2 # Copyright (C) 2006-2016 Eyeo GmbH | 2 # Copyright (C) 2006-2016 Eyeo GmbH |
| 3 # | 3 # |
| 4 # Adblock Plus is free software: you can redistribute it and/or modify | 4 # Adblock Plus is free software: you can redistribute it and/or modify |
| 5 # it under the terms of the GNU General Public License version 3 as | 5 # it under the terms of the GNU General Public License version 3 as |
| 6 # published by the Free Software Foundation. | 6 # published by the Free Software Foundation. |
| 7 # | 7 # |
| 8 # Adblock Plus is distributed in the hope that it will be useful, | 8 # Adblock Plus is distributed in the hope that it will be useful, |
| 9 # but WITHOUT ANY WARRANTY; without even the implied warranty of | 9 # but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 11 # GNU General Public License for more details. | 11 # GNU General Public License for more details. |
| 12 # | 12 # |
| 13 # You should have received a copy of the GNU General Public License | 13 # You should have received a copy of the GNU General Public License |
| 14 # along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>. | 14 # along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>. |
| 15 | 15 |
| 16 import codecs | 16 import codecs |
| 17 import os | 17 import os |
| 18 import json | 18 import json |
| 19 import re | 19 import re |
| 20 import subprocess | 20 import subprocess |
| 21 import traceback | 21 import traceback |
| 22 import time | 22 import time |
| 23 import urlparse | 23 import urlparse |
| 24 import urllib | 24 import urllib |
| 25 import xml.dom.minidom as dom | 25 import xml.dom.minidom as dom |
| 26 import sys |
| 26 from ConfigParser import SafeConfigParser, NoOptionError | 27 from ConfigParser import SafeConfigParser, NoOptionError |
| 27 from StringIO import StringIO | 28 from StringIO import StringIO |
| 28 from sitescripts.utils import get_config | 29 from sitescripts.utils import get_config |
| 30 from xml.parsers.expat import ExpatError |
| 29 | 31 |
| 30 PACKAGE_SUFFIXES = { | 32 PACKAGE_SUFFIXES = { |
| 31 'gecko': '.xpi', | 33 'gecko': '.xpi', |
| 32 'gecko-webext': '.xpi', | 34 'gecko-webext': '.xpi', |
| 33 'chrome': '.crx', | 35 'chrome': '.crx', |
| 34 'safari': '.safariextz', | 36 'safari': '.safariextz', |
| 35 'ie': '.exe', | 37 'ie': '.exe', |
| 36 'android': '.apk' | 38 'android': '.apk' |
| 37 } | 39 } |
| 38 | 40 |
| (...skipping 274 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 313 """ | 315 """ |
| 314 gets the download links for all extensions and puts them into the config | 316 gets the download links for all extensions and puts them into the config |
| 315 object | 317 object |
| 316 """ | 318 """ |
| 317 for repo in Configuration.getRepositoryConfigurations(): | 319 for repo in Configuration.getRepositoryConfigurations(): |
| 318 try: | 320 try: |
| 319 (downloadURL, version) = _getDownloadLink(repo) | 321 (downloadURL, version) = _getDownloadLink(repo) |
| 320 if downloadURL is None: | 322 if downloadURL is None: |
| 321 raise Exception('No download link found for repo: ' + | 323 raise Exception('No download link found for repo: ' + |
| 322 repo.repositoryName) | 324 repo.repositoryName) |
| 325 except ExpatError: |
| 326 traceback.print_exc() |
| 327 print >> sys.stderr, ('Error found while parsing xml from {0} link' |
| 328 .format(repo.repositoryName)) |
| 329 continue |
| 323 except: | 330 except: |
| 324 traceback.print_exc() | 331 traceback.print_exc() |
| 325 continue | 332 continue |
| 326 if not result.has_section(repo.repositoryName): | 333 if not result.has_section(repo.repositoryName): |
| 327 result.add_section(repo.repositoryName) | 334 result.add_section(repo.repositoryName) |
| 328 result.set(repo.repositoryName, 'downloadURL', downloadURL) | 335 result.set(repo.repositoryName, 'downloadURL', downloadURL) |
| 329 result.set(repo.repositoryName, 'version', version) | 336 result.set(repo.repositoryName, 'version', version) |
| 330 | 337 |
| 331 qrcode = _getQRCode(downloadURL) | 338 qrcode = _getQRCode(downloadURL) |
| 332 if qrcode is not None: | 339 if qrcode is not None: |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 379 if not extensions: | 386 if not extensions: |
| 380 return | 387 return |
| 381 | 388 |
| 382 updates = {} | 389 updates = {} |
| 383 for extension in extensions: | 390 for extension in extensions: |
| 384 updates[extension['basename']] = { | 391 updates[extension['basename']] = { |
| 385 'url': extension['updateURL'], | 392 'url': extension['updateURL'], |
| 386 'version': extension['version'] | 393 'version': extension['version'] |
| 387 } | 394 } |
| 388 writeLibabpUpdateManifest(path, updates) | 395 writeLibabpUpdateManifest(path, updates) |
| OLD | NEW |