Skip to content

Commit 600f68b

Browse files
author
Richard Jones
committed
moar better
1 parent 6713925 commit 600f68b

File tree

1 file changed

+6
-9
lines changed

1 file changed

+6
-9
lines changed

website/www/index.txt

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,16 @@
11
Roundup Issue Tracker
22
=====================
33

4-
.. note::
5-
6-
Latest stable release: `download`_
7-
8-
.. raw:: html
9-
10-
<span id="release_info">Version: [unknown]</span>
11-
124
.. raw:: html
135

6+
<span id="release_info" class="note">Download: `download`_</span>
147
<script type="text/javascript">
158
$.getJSON('http://pypi.python.org/pypi/roundup/json?callback=?', function(data) {
16-
$('#release_info').html('Version: ' + data.info.version);
9+
h = 'Download: ' + data.info.version;
10+
for (var i=0, url; url=data.urls[i]; ++i) {
11+
h += '<br><a href="' + url.url + '">' + url.filename + '</a>';
12+
}
13+
$('#release_info').html(h);
1714
});
1815
</script>
1916

0 commit comments

Comments
 (0)