| 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 Directory structure | 9 Directory structure |
| 10 ------------------- | 10 ------------------- |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 52 | 52 |
| 53 The behavior of this page is affected by a number of URL parameters: | 53 The behavior of this page is affected by a number of URL parameters: |
| 54 | 54 |
| 55 * `platform`, `platformVersion`, `application`, `applicationVersion`: sets | 55 * `platform`, `platformVersion`, `application`, `applicationVersion`: sets |
| 56 application parameters that are normally determined by Adblock Plus. Using | 56 application parameters that are normally determined by Adblock Plus. Using |
| 57 `?platform=safari&platformVersion=5.0` should trigger a warning. | 57 `?platform=safari&platformVersion=5.0` should trigger a warning. |
| 58 * `seenDataCorruption`, `filterlistsReinitialized`: setting these parameters to | 58 * `seenDataCorruption`, `filterlistsReinitialized`: setting these parameters to |
| 59 `true` should trigger warnings referring to issues detected by Adblock Plus. | 59 `true` should trigger warnings referring to issues detected by Adblock Plus. |
| 60 * `blockedURLs`: a comma-separated list of URLs that should be considered | 60 * `blockedURLs`: a comma-separated list of URLs that should be considered |
| 61 blocked (necessary to test the check for blocked scripts in sharing buttons). | 61 blocked (necessary to test the check for blocked scripts in sharing buttons). |
| 62 |
| 63 options.html |
| 64 ------------ |
| 65 |
| 66 This is the implementation of the Adblock Plus options page which is the primary |
| 67 UI for changing settings and for managing filter lists. |
| 68 |
| 69 The behavior of this page is affected by a number of URL parameters: |
| 70 |
| 71 * `addonVersion`: sets addon version application parameter that is used for |
| 72 creating the link to the version-specific release notes |
| 73 * `addSubscription=true`: this parameter should trigger a dialog for adding |
| 74 subscriptions as initiated by clicking on an "abp:subscribe" link |
| OLD | NEW |