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-2013 Eyeo GmbH | 3 - Copyright (C) 2006-2013 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 |
11 - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 11 - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
12 - GNU General Public License for more details. | 12 - GNU General Public License for more details. |
13 - | 13 - |
14 - You should have received a copy of the GNU General Public License | 14 - You should have received a copy of the GNU General Public License |
15 - along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>. | 15 - along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>. |
16 --> | 16 --> |
17 | 17 |
18 <html xmlns="http://www.w3.org/1999/xhtml"> | 18 <html xmlns="http://www.w3.org/1999/xhtml"> |
19 <head><title>Development build listing for {{config.name}}</title></head> | 19 <head><title>Development build listing for {{config.name}}</title></head> |
20 <body> | 20 <body> |
21 | 21 |
22 <p style="border: 1px solid black; background-color: #FEE; color: #000; margin-l
eft: 5px; margin-right: 5px; padding: 5px;"> | 22 <p style="border: 1px solid black; background-color: #FEE; color: #000; margin-l
eft: 5px; margin-right: 5px; padding: 5px;"> |
23 <strong>Warning</strong>: The files in this directory are development | 23 <strong>Warning</strong>: The files in this directory are development |
24 builds and as such they have not been fully tested and might not work | 24 builds and as such they have not been fully tested and might not work |
25 properly. | 25 properly. |
26 {% if config.type == 'kmeleon' -%} | 26 |
27 They will work <em>only</em> with K-Meleon 1.6 and they are not completely | |
28 functional yet. | |
29 {%- endif %} | |
30 Use them at your own risk, see <a href="/en/development-builds">development bu
ilds introduction</a> for more | 27 Use them at your own risk, see <a href="/en/development-builds">development bu
ilds introduction</a> for more |
31 information. | 28 information. |
32 | 29 |
33 {%if config.galleryID or config.downloadPage -%} | 30 {%if config.galleryID or config.downloadPage -%} |
34 Latest <em>stable {{config.name}} release</em> can be downloaded from | 31 Latest <em>stable {{config.name}} release</em> can be downloaded from |
35 {% if config.type == 'gecko' and config.galleryID -%} | 32 {% if config.type == 'gecko' and config.galleryID -%} |
36 <a href="https://addons.mozilla.org/addon/{{config.galleryID}}/">Mozilla Add
-ons</a> | 33 <a href="https://addons.mozilla.org/addon/{{config.galleryID}}/">Mozilla Add
-ons</a> |
37 {%- elif config.type == 'chrome' and config.galleryID -%} | 34 {%- elif config.type == 'chrome' and config.galleryID -%} |
38 <a href="https://chrome.google.com/webstore/detail/{{config.galleryID}}">Chr
ome Web Store</a> | 35 <a href="https://chrome.google.com/webstore/detail/{{config.galleryID}}">Chr
ome Web Store</a> |
39 {%- elif config.type == 'opera' and config.galleryID -%} | 36 {%- elif config.type == 'opera' and config.galleryID -%} |
(...skipping 11 matching lines...) Expand all Loading... |
51 <code>chrome://flags</code> and enabling "Experimental Extension APIs" optio
n. | 48 <code>chrome://flags</code> and enabling "Experimental Extension APIs" optio
n. |
52 {%- endif -%} | 49 {%- endif -%} |
53 </p> | 50 </p> |
54 | 51 |
55 <h2>Development build listing for {{config.name}}</h2> | 52 <h2>Development build listing for {{config.name}}</h2> |
56 <hr /> | 53 <hr /> |
57 <table border="0" cellspacing="10"> | 54 <table border="0" cellspacing="10"> |
58 {%- for link in links %} | 55 {%- for link in links %} |
59 <tr{%if loop.first%} style="font-weight: bold;"{%endif%}> | 56 <tr{%if loop.first%} style="font-weight: bold;"{%endif%}> |
60 <td> | 57 <td> |
| 58 {%- if config.type == 'ie' %} |
| 59 {{config.name}} {{link.version}} <a href="{{link.download}}">(64-bit Windows
)</a> <a href="{{link.download|replace('-x64', '-x86')}}">(32-bit Windows)</a> |
| 60 {%- else %} |
61 <a href="{{link.download}}">{{config.name}} {{link.version}}</a> | 61 <a href="{{link.download}}">{{config.name}} {{link.version}}</a> |
| 62 {%- endif %} |
62 {%- if link.changelog %} | 63 {%- if link.changelog %} |
63 <a href="{{link.changelog}}"> (changelog)</a> | 64 <a href="{{link.changelog}}"> (changelog)</a> |
64 {%- endif %} | 65 {%- endif %} |
65 </td> | 66 </td> |
66 <td>{{link.mtime|formattime}}</td> | 67 <td>{{link.mtime|formattime}}</td> |
67 <td>{{link.size|filesizeformat}}</td> | 68 <td>{{link.size|bytes}}</td> |
68 </tr> | 69 </tr> |
69 {%- endfor %} | 70 {%- endfor %} |
70 </table> | 71 </table> |
71 <hr /> | 72 <hr /> |
72 </body> | 73 </body> |
73 </html> | 74 </html> |
OLD | NEW |