OLD | NEW |
1 /* | 1 /* |
2 * This Source Code is subject to the terms of the Mozilla Public License | 2 * This Source Code is subject to the terms of the Mozilla Public License |
3 * version 2.0 (the "License"). You can obtain a copy of the License at | 3 * version 2.0 (the "License"). You can obtain a copy of the License at |
4 * http://mozilla.org/MPL/2.0/. | 4 * http://mozilla.org/MPL/2.0/. |
5 */ | 5 */ |
6 | 6 |
7 // | 7 // |
8 // Module framework stuff | 8 // Module framework stuff |
9 // | 9 // |
10 | 10 |
(...skipping 277 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
288 enabled: true, | 288 enabled: true, |
289 patternsfile: "patterns.ini", | 289 patternsfile: "patterns.ini", |
290 patternsbackups: 5, | 290 patternsbackups: 5, |
291 patternsbackupinterval: 24, | 291 patternsbackupinterval: 24, |
292 data_directory: "", | 292 data_directory: "", |
293 savestats: false, | 293 savestats: false, |
294 privateBrowsing: false, | 294 privateBrowsing: false, |
295 subscriptions_fallbackerrors: 5, | 295 subscriptions_fallbackerrors: 5, |
296 subscriptions_fallbackurl: "https://adblockplus.org/getSubscription?version=
%VERSION%&url=%SUBSCRIPTION%&downloadURL=%URL%&error=%ERROR%&channelStatus=%CHAN
NELSTATUS%&responseStatus=%RESPONSESTATUS%", | 296 subscriptions_fallbackurl: "https://adblockplus.org/getSubscription?version=
%VERSION%&url=%SUBSCRIPTION%&downloadURL=%URL%&error=%ERROR%&channelStatus=%CHAN
NELSTATUS%&responseStatus=%RESPONSESTATUS%", |
297 subscriptions_autoupdate: true, | 297 subscriptions_autoupdate: true, |
| 298 subscriptions_exceptionsurl: "https://easylist-downloads.adblockplus.org/exc
eptionrules.txt", |
| 299 documentation_link: "https://adblockplus.org/redirect?link=%LINK%&lang=%LANG
%", |
298 addListener: function() {} | 300 addListener: function() {} |
299 } | 301 } |
300 }; | 302 }; |
301 | 303 |
302 // | 304 // |
303 // Utils module | 305 // Utils module |
304 // | 306 // |
305 | 307 |
306 require.scopes.utils = | 308 require.scopes.utils = |
307 { | 309 { |
(...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
512 status: -1, | 514 status: -1, |
513 notificationCallbacks: {}, | 515 notificationCallbacks: {}, |
514 loadFlags: 0, | 516 loadFlags: 0, |
515 INHIBIT_CACHING: 0, | 517 INHIBIT_CACHING: 0, |
516 VALIDATE_ALWAYS: 0, | 518 VALIDATE_ALWAYS: 0, |
517 QueryInterface: function() | 519 QueryInterface: function() |
518 { | 520 { |
519 return this; | 521 return this; |
520 } | 522 } |
521 }; | 523 }; |
OLD | NEW |