| 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 19 matching lines...) Expand all Loading... |
| 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 {%- else %} | 35 {%- else %} |
| 36 <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> |
| 37 {%- endif -%} | 37 {%- endif -%} |
| 38 . | 38 . |
| 39 {%- endif %} | 39 {%- endif %} |
| 40 | |
| 41 {%- if config.type == 'chrome' and config.experimental -%} | |
| 42 <br /><br /> | |
| 43 <em>Note</em>: The builds in this directory use experimental Google Chrome A
PI. | |
| 44 To install them you have to enable support for these APIs by going to | |
| 45 <code>chrome://flags</code> and enabling "Experimental Extension APIs" optio
n. | |
| 46 {%- endif -%} | |
| 47 </p> | 40 </p> |
| 48 | 41 |
| 49 <h2>Development build listing for {{config.name}}</h2> | 42 <h2>Development build listing for {{config.name}}</h2> |
| 50 <hr /> | 43 <hr /> |
| 51 <table border="0" cellspacing="10"> | 44 <table border="0" cellspacing="10"> |
| 52 {%- for link in links %} | 45 {%- for link in links %} |
| 53 <tr{%if loop.first%} style="font-weight: bold;"{%endif%}> | 46 <tr{%if loop.first%} style="font-weight: bold;"{%endif%}> |
| 54 <td> | 47 <td> |
| 55 <a href="{{link.download}}">{{config.name}} {{link.version}}</a> | 48 <a href="{{link.download}}">{{config.name}} {{link.version}}</a> |
| 56 {%- if link.changelog %} | 49 {%- if link.changelog %} |
| 57 <a href="{{link.changelog}}"> (changelog)</a> | 50 <a href="{{link.changelog}}"> (changelog)</a> |
| 58 {%- endif %} | 51 {%- endif %} |
| 59 </td> | 52 </td> |
| 60 <td>{{link.mtime|formattime}}</td> | 53 <td>{{link.mtime|formattime}}</td> |
| 61 <td>{{link.size|bytes}}</td> | 54 <td>{{link.size|bytes}}</td> |
| 62 </tr> | 55 </tr> |
| 63 {%- endfor %} | 56 {%- endfor %} |
| 64 </table> | 57 </table> |
| 65 <hr /> | 58 <hr /> |
| 66 </body> | 59 </body> |
| 67 </html> | 60 </html> |
| OLD | NEW |