Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: sitescripts/extensions/template/nightlies.html

Issue 10850030: Remove support for KMeleon devbuilds and add (somewhat hacky) support for IE devbuilds (Closed)
Patch Set: Created June 12, 2013, 1:11 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « sitescripts/extensions/bin/createNightlies.py ('k') | sitescripts/extensions/utils.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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>
« no previous file with comments | « sitescripts/extensions/bin/createNightlies.py ('k') | sitescripts/extensions/utils.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld