| 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, sys, re, subprocess, buildtools | 7 import os, sys, re, subprocess, buildtools |
| 19 from getopt import getopt, GetoptError | 8 from getopt import getopt, GetoptError |
| 20 | 9 |
| 21 knownTypes = ('gecko', 'chrome', 'opera', 'safari') | 10 knownTypes = ('gecko', 'chrome', 'opera', 'safari') |
| 22 | 11 |
| 23 class Command(object): | 12 class Command(object): |
| 24 name = property(lambda self: self._name) | 13 name = property(lambda self: self._name) |
| 25 shortDescription = property(lambda self: self._shortDescription, | 14 shortDescription = property(lambda self: self._shortDescription, |
| 26 lambda self, value: self.__dict__.update({'_shortDescription': value})) | 15 lambda self, value: self.__dict__.update({'_shortDescription': value})) |
| (...skipping 542 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 569 if option in ('-h', '--help'): | 558 if option in ('-h', '--help'): |
| 570 usage(scriptName, type, command) | 559 usage(scriptName, type, command) |
| 571 sys.exit() | 560 sys.exit() |
| 572 commands[command](baseDir, scriptName, opts, args, type) | 561 commands[command](baseDir, scriptName, opts, args, type) |
| 573 else: | 562 else: |
| 574 print 'Command %s is not supported for this application type' % command | 563 print 'Command %s is not supported for this application type' % command |
| 575 usage(scriptName, type) | 564 usage(scriptName, type) |
| 576 else: | 565 else: |
| 577 print 'Command %s is unrecognized' % command | 566 print 'Command %s is unrecognized' % command |
| 578 usage(scriptName, type) | 567 usage(scriptName, type) |
| OLD | NEW |