| 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 sys, os, re, json, struct | 7 import sys, os, re, json, struct |
| 19 from StringIO import StringIO | 8 from StringIO import StringIO |
| 20 | 9 |
| 21 import packager | 10 import packager |
| 22 from packager import readMetadata, getMetadataPath, getDefaultFileName, getBuild
Version, getTemplate, Files | 11 from packager import readMetadata, getMetadataPath, getDefaultFileName, getBuild
Version, getTemplate, Files |
| 23 | 12 |
| 24 defaultLocale = 'en_US' | 13 defaultLocale = 'en_US' |
| 25 | 14 |
| 26 def getIgnoredFiles(params): | 15 def getIgnoredFiles(params): |
| (...skipping 383 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 410 writePackage(outFile, pubkey, signature, zipdata) | 399 writePackage(outFile, pubkey, signature, zipdata) |
| 411 | 400 |
| 412 def createDevEnv(baseDir, type): | 401 def createDevEnv(baseDir, type): |
| 413 fileBuffer = StringIO() | 402 fileBuffer = StringIO() |
| 414 createBuild(baseDir, type=type, outFile=fileBuffer, devenv=True, releaseBuild=
True) | 403 createBuild(baseDir, type=type, outFile=fileBuffer, devenv=True, releaseBuild=
True) |
| 415 | 404 |
| 416 from zipfile import ZipFile | 405 from zipfile import ZipFile |
| 417 zip = ZipFile(StringIO(fileBuffer.getvalue()), 'r') | 406 zip = ZipFile(StringIO(fileBuffer.getvalue()), 'r') |
| 418 zip.extractall(os.path.join(baseDir, 'devenv')) | 407 zip.extractall(os.path.join(baseDir, 'devenv')) |
| 419 zip.close() | 408 zip.close() |
| OLD | NEW |