OLD | NEW |
1 /* | 1 /* |
2 * This file is part of Adblock Plus <http://adblockplus.org/>, | 2 * This file is part of Adblock Plus <http://adblockplus.org/>, |
3 * Copyright (C) 2006-2013 Eyeo GmbH | 3 * Copyright (C) 2006-2013 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 var API = (function() | 18 var API = (function() |
19 { | 19 { |
20 var Filter = require("filterClasses").Filter; | 20 var Filter = require("filterClasses").Filter; |
21 var Subscription = require("subscriptionClasses").Subscription; | 21 var Subscription = require("subscriptionClasses").Subscription; |
22 var SpecialSubscription = require("subscriptionClasses").SpecialSubscription; | 22 var SpecialSubscription = require("subscriptionClasses").SpecialSubscription; |
23 var FilterStorage = require("filterStorage").FilterStorage; | 23 var FilterStorage = require("filterStorage").FilterStorage; |
24 var defaultMatcher = require("matcher").defaultMatcher; | 24 var defaultMatcher = require("matcher").defaultMatcher; |
25 var ElemHide = require("elemHide").ElemHide; | 25 var ElemHide = require("elemHide").ElemHide; |
26 var Synchronizer = require("synchronizer").Synchronizer; | 26 var Synchronizer = require("synchronizer").Synchronizer; |
27 var Prefs = require("prefs").Prefs; | 27 var Prefs = require("prefs").Prefs; |
| 28 var checkForUpdates = require("updater").checkForUpdates; |
28 | 29 |
29 return { | 30 return { |
30 getFilterFromText: function(text) | 31 getFilterFromText: function(text) |
31 { | 32 { |
32 text = Filter.normalize(text); | 33 text = Filter.normalize(text); |
33 if (!text) | 34 if (!text) |
34 throw "Attempted to create a filter from empty text"; | 35 throw "Attempted to create a filter from empty text"; |
35 return Filter.fromText(text); | 36 return Filter.fromText(text); |
36 }, | 37 }, |
37 | 38 |
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
149 }, | 150 }, |
150 | 151 |
151 getPref: function(pref) | 152 getPref: function(pref) |
152 { | 153 { |
153 return Prefs[pref]; | 154 return Prefs[pref]; |
154 }, | 155 }, |
155 | 156 |
156 setPref: function(pref, value) | 157 setPref: function(pref, value) |
157 { | 158 { |
158 Prefs[pref] = value; | 159 Prefs[pref] = value; |
| 160 }, |
| 161 |
| 162 forceUpdateCheck: function(eventName) |
| 163 { |
| 164 checkForUpdates(true, _triggerEvent.bind(null, eventName)); |
159 } | 165 } |
160 }; | 166 }; |
161 })(); | 167 })(); |
OLD | NEW |