Left: | ||
Right: |
OLD | NEW |
---|---|
1 /* | 1 /* |
2 * This file is part of Adblock Plus <https://adblockplus.org/>, | 2 * This file is part of Adblock Plus <https://adblockplus.org/>, |
3 * Copyright (C) 2006-present eyeo GmbH | 3 * Copyright (C) 2006-present eyeo GmbH |
4 * | 4 * |
5 * Adblock Plus is free software: you can redistribute it and/or modify | 5 * Adblock Plus is free software: you can redistribute it and/or modify |
6 * it under the terms of the GNU General Public License version 3 as | 6 * it under the terms of the GNU General Public License version 3 as |
7 * published by the Free Software Foundation. | 7 * published by the Free Software Foundation. |
8 * | 8 * |
9 * Adblock Plus is distributed in the hope that it will be useful, | 9 * Adblock Plus is distributed in the hope that it will be useful, |
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
12 * GNU General Public License for more details. | 12 * GNU General Public License for more details. |
13 * | 13 * |
14 * You should have received a copy of the GNU General Public License | 14 * You should have received a copy of the GNU General Public License |
15 * along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>. | 15 * along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>. |
16 */ | 16 */ |
17 | 17 |
18 "use strict"; | 18 "use strict"; |
19 | 19 |
20 let iframe = document.getElementById("content"); | 20 const {ArgumentParser} = require("argparse"); |
21 const fs = require("fs"); | |
22 const path = require("path"); | |
21 | 23 |
22 iframe.onload = () => | 24 let platforms = {}; |
25 | |
26 let parser = new ArgumentParser({ | |
27 help: "Deploy an Adblock Plus development build." | |
28 }); | |
29 let subParser = parser.addSubparsers({ | |
30 title: "Platforms", | |
31 dest: "platform_name" | |
32 }); | |
33 | |
34 for (let file of fs.readdirSync(path.resolve("automation/target/"))) | |
23 { | 35 { |
24 document.title = iframe.contentDocument.title; | 36 let target = path.basename(file, ".js"); |
25 }; | 37 let platformSubParser = subParser.addParser(target, {addHelp: true}); |
38 let module = require(path.resolve(`automation/target/${file}`)); | |
39 module.addArguments(platformSubParser); | |
40 platforms[target] = module; | |
41 } | |
26 | 42 |
27 browser.runtime.sendMessage({ | 43 let args = parser.parseArgs(); |
28 type: "app.get", | 44 platforms[args.platform_name].run(args); |
kzar
2018/10/15 12:42:58
I guess if the platform doesn't exist we'll just g
tlucas
2018/10/15 14:12:39
That's what argparse does for you, e.g.:
$ npm ru
kzar
2018/10/15 14:46:10
Cool!
| |
29 what: "application" | |
30 }, | |
31 application => | |
32 { | |
33 // Load the mobile version of the options page on Firefox for Android. | |
34 iframe.src = iframe.getAttribute("data-src-" + application) || | |
35 iframe.getAttribute("data-src"); | |
36 }); | |
OLD | NEW |