| OLD | NEW |
| 1 Shared Adblock Plus UI code | 1 Shared Adblock Plus UI code |
| 2 =========================== | 2 =========================== |
| 3 | 3 |
| 4 The user interface elements defined in this repository will be used by various | 4 The user interface elements defined in this repository will be used by various |
| 5 Adblock Plus products like Adblock Plus for Firefox. Their functionality can be | 5 Adblock Plus products like Adblock Plus for Firefox. Their functionality can be |
| 6 tested within this repository, even though they might not work exactly the same | 6 tested within this repository, even though they might not work exactly the same |
| 7 as they will do in the final product. | 7 as they will do in the final product. |
| 8 | 8 |
| 9 Installing dependencies | 9 Installing dependencies |
| 10 ----------------------- | 10 ----------------------- |
| (...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 182 This is the implementation of the Adblock Plus options page which is | 182 This is the implementation of the Adblock Plus options page which is |
| 183 the primary UI for changing settings and for managing filter lists. | 183 the primary UI for changing settings and for managing filter lists. |
| 184 | 184 |
| 185 To aid testing, the behavior of this page is affected by a number of URL | 185 To aid testing, the behavior of this page is affected by a number of URL |
| 186 parameters: | 186 parameters: |
| 187 | 187 |
| 188 * `addonVersion`: sets addon version application parameter that is used for | 188 * `addonVersion`: sets addon version application parameter that is used for |
| 189 creating the link to the version-specific release notes | 189 creating the link to the version-specific release notes |
| 190 * `addSubscription=true`: this parameter should trigger a dialog for adding | 190 * `addSubscription=true`: this parameter should trigger a dialog for adding |
| 191 subscriptions as initiated by clicking on an "abp:subscribe" link | 191 subscriptions as initiated by clicking on an "abp:subscribe" link |
| 192 * `additionalSubscriptions`: A comma-separated list of subscription URLs that |
| 193 simulates scenario of persistent filter lists preinstalled by administrators. |
| 192 * `filterError=true`: causes filter validation to fail, showing validation | 194 * `filterError=true`: causes filter validation to fail, showing validation |
| 193 errors when adding new filters on the options page | 195 errors when adding new filters on the options page |
| 194 * `blockedURLs`: a comma-separated list of URLs that should be considered | 196 * `blockedURLs`: a comma-separated list of URLs that should be considered |
| 195 blocked (necessary to test the check for blocked scripts in sharing buttons). | 197 blocked (necessary to test the check for blocked scripts in sharing buttons). |
| 196 * `downloadStatus`: sets downloadStatus parameter for filter lists, can be used | 198 * `downloadStatus`: sets downloadStatus parameter for filter lists, can be used |
| 197 to trigger various filter list download errors | 199 to trigger various filter list download errors |
| 198 * `platform=chromium`: shows the opt-out for the developer tools panel | 200 * `platform=chromium`: shows the opt-out for the developer tools panel |
| 199 * `showNotificationUI=true`: simulates user having opted-out of notifications | 201 * `showNotificationUI=true`: simulates user having opted-out of notifications |
| 200 | 202 |
| 201 | 203 |
| 202 [crowdin]: https://crowdin.com | 204 [crowdin]: https://crowdin.com |
| OLD | NEW |