Log Message:
-----------
Fixed the pages linked from the tag cloud, they not dipslay the dists in the tag
Modified Paths:
--------------
openjsan/trunk/lib/JSAN/Incoming.pm
openjsan/trunk/templates/incoming/tag_index_page
Modified: openjsan/trunk/lib/JSAN/Incoming.pm
===================================================================
--- openjsan/trunk/lib/JSAN/Incoming.pm 2006-02-28 20:38:49 UTC (rev 472)
+++ openjsan/trunk/lib/JSAN/Incoming.pm 2006-02-28 20:51:19 UTC (rev 473)
@@ -150,8 +150,8 @@
my @dists = (
map { $_->[1] }
- sort { $a->[0] <=> $b->[0] }
- map { [ $_->name cmp $_ ] }
+ sort { $a->[0] cmp $b->[0] }
+ map { [ $_->name, $_ ] }
$tag->distributions
);
Modified: openjsan/trunk/templates/incoming/tag_index_page
===================================================================
--- openjsan/trunk/templates/incoming/tag_index_page 2006-02-28 20:38:49 UTC (rev 472)
+++ openjsan/trunk/templates/incoming/tag_index_page 2006-02-28 20:51:19 UTC (rev 473)
@@ -7,8 +7,8 @@
</tr>
[% FOREACH dist IN dists %]
<tr>
- <td><a href="/doc/[% dist.author.hash %]/[% dist.name.replace('\.','/') %]/[% dist.version %]">[% dist.name %]</td>
+ <td><a href="/doc/[% dist.author.hash %]/[% dist.name.replace('\.','/') %]/[% dist.version %]">[% dist.name %]</a></td>
<td>[% dist.version %]</td>
</tr>
[% END %]
-</table>
\ No newline at end of file
+</table>