LEFT | RIGHT |
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 25 matching lines...) Expand all Loading... |
36 Various aspects of the pages can be tested by setting parameters in the URL. The | 36 Various aspects of the pages can be tested by setting parameters in the URL. The |
37 only universal parameter is `locale`, e.g. `?locale=es-AR`. This parameter | 37 only universal parameter is `locale`, e.g. `?locale=es-AR`. This parameter |
38 overrides browser's locale which will be used by default. | 38 overrides browser's locale which will be used by default. |
39 | 39 |
40 firstRun.html | 40 firstRun.html |
41 ------------- | 41 ------------- |
42 | 42 |
43 This is the implementation of the Adblock Plus first-run page that will show up | 43 This is the implementation of the Adblock Plus first-run page that will show up |
44 whenever changes are applied automatically to user's Adblock Plus configuration. | 44 whenever changes are applied automatically to user's Adblock Plus configuration. |
45 This will usually happen when the user first installs Adblock Plus (initial | 45 This will usually happen when the user first installs Adblock Plus (initial |
46 setup), but it can also happen in the user's settings get lost for some reason. | 46 setup), but it can also happen in case the user's settings get lost. |
47 | 47 |
48 The behavior of this page is affected by a number of URL parameters: | 48 The behavior of this page is affected by a number of URL parameters: |
49 | 49 |
50 * `platform`, `platformVersion`, `application`, `applicationVersion`: sets | 50 * `platform`, `platformVersion`, `application`, `applicationVersion`: sets |
51 application parameters that are normally determined by Adblock Plus. Using | 51 application parameters that are normally determined by Adblock Plus. Using |
52 `?platform=safari&platformVersion=5.0` should trigger a warning. | 52 `?platform=safari&platformVersion=5.0` should trigger a warning. |
53 * `seenDataCorruption`, `filterlistsReinitialized`: setting these parameters to | 53 * `seenDataCorruption`, `filterlistsReinitialized`: setting these parameters to |
54 `true` should trigger warnings referring to issues detected by Adblock Plus. | 54 `true` should trigger warnings referring to issues detected by Adblock Plus. |
55 * `blockedURLs`: a comma-separated list of URLs that should be considered | 55 * `blockedURLs`: a comma-separated list of URLs that should be considered |
56 blocked (necessary to test the check for blocked scripts in sharing buttons). | 56 blocked (necessary to test the check for blocked scripts in sharing buttons). |
LEFT | RIGHT |