| OLD | NEW |
| 1 # coding: utf-8 | 1 # coding: utf-8 |
| 2 | 2 |
| 3 # This file is part of the Adblock Plus build tools, | 3 # This Source Code Form is subject to the terms of the Mozilla Public |
| 4 # Copyright (C) 2006-2014 Eyeo GmbH | 4 # License, v. 2.0. If a copy of the MPL was not distributed with this |
| 5 # | 5 # file, You can obtain one at http://mozilla.org/MPL/2.0/. |
| 6 # Adblock Plus is free software: you can redistribute it and/or modify | |
| 7 # it under the terms of the GNU General Public License version 3 as | |
| 8 # published by the Free Software Foundation. | |
| 9 # | |
| 10 # Adblock Plus is distributed in the hope that it will be useful, | |
| 11 # but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| 13 # GNU General Public License for more details. | |
| 14 # | |
| 15 # You should have received a copy of the GNU General Public License | |
| 16 # along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>. | |
| 17 | 6 |
| 18 import os | 7 import os |
| 19 import re | 8 import re |
| 20 import json | 9 import json |
| 21 import ConfigParser | 10 import ConfigParser |
| 22 from urlparse import urlparse | 11 from urlparse import urlparse |
| 23 | 12 |
| 24 from packager import readMetadata, getDefaultFileName, getBuildVersion, getTempl
ate, Files | 13 from packager import readMetadata, getDefaultFileName, getBuildVersion, getTempl
ate, Files |
| 25 from packagerChrome import convertJS, importGeckoLocales, getIgnoredFiles, getPa
ckageFiles, defaultLocale | 14 from packagerChrome import convertJS, importGeckoLocales, getIgnoredFiles, getPa
ckageFiles, defaultLocale |
| 26 | 15 |
| (...skipping 232 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 259 fixAbsoluteUrls(files) | 248 fixAbsoluteUrls(files) |
| 260 | 249 |
| 261 dirname = metadata.get('general', 'basename') + '.safariextension' | 250 dirname = metadata.get('general', 'basename') + '.safariextension' |
| 262 for filename in files.keys(): | 251 for filename in files.keys(): |
| 263 files[os.path.join(dirname, filename)] = files.pop(filename) | 252 files[os.path.join(dirname, filename)] = files.pop(filename) |
| 264 | 253 |
| 265 if keyFile: | 254 if keyFile: |
| 266 createSignedXarArchive(outFile, files, keyFile) | 255 createSignedXarArchive(outFile, files, keyFile) |
| 267 else: | 256 else: |
| 268 files.zip(outFile) | 257 files.zip(outFile) |
| OLD | NEW |