| OLD | NEW |
| 1 <!-- | 1 <!-- |
| 2 - This file is part of the Adblock Plus web scripts, | 2 - This file is part of the Adblock Plus web scripts, |
| 3 - Copyright (C) 2006-2016 Eyeo GmbH | 3 - Copyright (C) 2006-2016 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 |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 properly. | 25 properly. |
| 26 | 26 |
| 27 Use them at your own risk, see <a href="https://adblockplus.org/en/development
-builds">development builds introduction</a> for more information. | 27 Use them at your own risk, see <a href="https://adblockplus.org/en/development
-builds">development builds introduction</a> for more information. |
| 28 | 28 |
| 29 {%if config.galleryID or config.downloadPage -%} | 29 {%if config.galleryID or config.downloadPage -%} |
| 30 Latest <em>stable {{config.name}} release</em> can be downloaded from | 30 Latest <em>stable {{config.name}} release</em> can be downloaded from |
| 31 {% if config.type == 'gecko' and config.galleryID -%} | 31 {% if config.type == 'gecko' and config.galleryID -%} |
| 32 <a href="https://addons.mozilla.org/addon/{{config.galleryID}}/">Mozilla Add
-ons</a> | 32 <a href="https://addons.mozilla.org/addon/{{config.galleryID}}/">Mozilla Add
-ons</a> |
| 33 {%- elif config.type == 'chrome' and config.galleryID -%} | 33 {%- elif config.type == 'chrome' and config.galleryID -%} |
| 34 <a href="https://chrome.google.com/webstore/detail/{{config.galleryID}}">Chr
ome Web Store</a> | 34 <a href="https://chrome.google.com/webstore/detail/{{config.galleryID}}">Chr
ome Web Store</a> |
| 35 {%- elif config.type == 'opera' and config.galleryID -%} | |
| 36 <a href="https://addons.opera.com/en/extensions/details/{{config.galleryID}}
/">Opera Add-ons</a> | |
| 37 {%- else %} | 35 {%- else %} |
| 38 <a href="https://adblockplus.org{{config.downloadPage}}">its installation pa
ge</a> | 36 <a href="https://adblockplus.org{{config.downloadPage}}">its installation pa
ge</a> |
| 39 {%- endif -%} | 37 {%- endif -%} |
| 40 . | 38 . |
| 41 {%- endif %} | 39 {%- endif %} |
| 42 | 40 |
| 43 {%- if config.type == 'chrome' and config.experimental -%} | 41 {%- if config.type == 'chrome' and config.experimental -%} |
| 44 <br /><br /> | 42 <br /><br /> |
| 45 <em>Note</em>: The builds in this directory use experimental Google Chrome A
PI. | 43 <em>Note</em>: The builds in this directory use experimental Google Chrome A
PI. |
| 46 To install them you have to enable support for these APIs by going to | 44 To install them you have to enable support for these APIs by going to |
| (...skipping 13 matching lines...) Expand all Loading... |
| 60 {%- endif %} | 58 {%- endif %} |
| 61 </td> | 59 </td> |
| 62 <td>{{link.mtime|formattime}}</td> | 60 <td>{{link.mtime|formattime}}</td> |
| 63 <td>{{link.size|bytes}}</td> | 61 <td>{{link.size|bytes}}</td> |
| 64 </tr> | 62 </tr> |
| 65 {%- endfor %} | 63 {%- endfor %} |
| 66 </table> | 64 </table> |
| 67 <hr /> | 65 <hr /> |
| 68 </body> | 66 </body> |
| 69 </html> | 67 </html> |
| OLD | NEW |