| Index: sitescripts/extensions/template/nightlies.html |
| =================================================================== |
| --- a/sitescripts/extensions/template/nightlies.html |
| +++ b/sitescripts/extensions/template/nightlies.html |
| @@ -18,20 +18,17 @@ |
| <html xmlns="http://www.w3.org/1999/xhtml"> |
| <head><title>Development build listing for {{config.name}}</title></head> |
| <body> |
| <p style="border: 1px solid black; background-color: #FEE; color: #000; margin-left: 5px; margin-right: 5px; padding: 5px;"> |
| <strong>Warning</strong>: The files in this directory are development |
| builds and as such they have not been fully tested and might not work |
| properly. |
| - {% if config.type == 'kmeleon' -%} |
| - They will work <em>only</em> with K-Meleon 1.6 and they are not completely |
| - functional yet. |
| - {%- endif %} |
| + |
| Use them at your own risk, see <a href="/en/development-builds">development builds introduction</a> for more |
| information. |
| {%if config.galleryID or config.downloadPage -%} |
| Latest <em>stable {{config.name}} release</em> can be downloaded from |
| {% if config.type == 'gecko' and config.galleryID -%} |
| <a href="https://addons.mozilla.org/addon/{{config.galleryID}}/">Mozilla Add-ons</a> |
| {%- elif config.type == 'chrome' and config.galleryID -%} |
| @@ -53,21 +50,25 @@ |
| </p> |
| <h2>Development build listing for {{config.name}}</h2> |
| <hr /> |
| <table border="0" cellspacing="10"> |
| {%- for link in links %} |
| <tr{%if loop.first%} style="font-weight: bold;"{%endif%}> |
| <td> |
| + {%- if config.type == 'ie' %} |
| + {{config.name}} {{link.version}} <a href="{{link.download}}">(64-bit Windows)</a> <a href="{{link.download|replace('-x64', '-x86')}}">(32-bit Windows)</a> |
| + {%- else %} |
| <a href="{{link.download}}">{{config.name}} {{link.version}}</a> |
| + {%- endif %} |
| {%- if link.changelog %} |
| <a href="{{link.changelog}}"> (changelog)</a> |
| {%- endif %} |
| </td> |
| <td>{{link.mtime|formattime}}</td> |
| - <td>{{link.size|filesizeformat}}</td> |
| + <td>{{link.size|bytes}}</td> |
| </tr> |
| {%- endfor %} |
| </table> |
| <hr /> |
| </body> |
| </html> |