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 |
(...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
149 port.on("app.get", (message, sender) => | 149 port.on("app.get", (message, sender) => |
150 { | 150 { |
151 if (message.what == "issues") | 151 if (message.what == "issues") |
152 { | 152 { |
153 let subscriptionInit = require("subscriptionInit"); | 153 let subscriptionInit = require("subscriptionInit"); |
154 let result = subscriptionInit ? subscriptionInit.reinitialized : false; | 154 let result = subscriptionInit ? subscriptionInit.reinitialized : false; |
155 return {filterlistsReinitialized: result}; | 155 return {filterlistsReinitialized: result}; |
156 } | 156 } |
157 | 157 |
158 if (message.what == "doclink") | 158 if (message.what == "doclink") |
159 return Utils.getDocLink(message.link); | 159 { |
| 160 let {application} = info; |
| 161 if (info.platform == "chromium" && application != "opera") |
| 162 application = "chrome"; |
| 163 else if (info.platform == "gecko") |
| 164 application = "firefox"; |
| 165 |
| 166 return Utils.getDocLink(message.link.replace("{browser}", application)); |
| 167 } |
160 | 168 |
161 if (message.what == "localeInfo") | 169 if (message.what == "localeInfo") |
162 { | 170 { |
163 let bidiDir; | 171 let bidiDir; |
164 if ("chromeRegistry" in Utils) | 172 if ("chromeRegistry" in Utils) |
165 { | 173 { |
166 let isRtl = Utils.chromeRegistry.isLocaleRTL("adblockplus"); | 174 let isRtl = Utils.chromeRegistry.isLocaleRTL("adblockplus"); |
167 bidiDir = isRtl ? "rtl" : "ltr"; | 175 bidiDir = isRtl ? "rtl" : "ltr"; |
168 } | 176 } |
169 else | 177 else |
(...skipping 255 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
425 if (message.url) | 433 if (message.url) |
426 subscriptions = [Subscription.fromURL(message.url)]; | 434 subscriptions = [Subscription.fromURL(message.url)]; |
427 | 435 |
428 for (let subscription of subscriptions) | 436 for (let subscription of subscriptions) |
429 { | 437 { |
430 if (subscription instanceof DownloadableSubscription) | 438 if (subscription instanceof DownloadableSubscription) |
431 Synchronizer.execute(subscription, true); | 439 Synchronizer.execute(subscription, true); |
432 } | 440 } |
433 }); | 441 }); |
434 })(this); | 442 })(this); |
OLD | NEW |