You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by ah...@apache.org on 2008/12/18 00:52:14 UTC

svn commit: r727588 - /maven/sandbox/trunk/reports/maven-html.vm

Author: aheritier
Date: Wed Dec 17 15:52:14 2008
New Revision: 727588

URL: http://svn.apache.org/viewvc?rev=727588&view=rev
Log:
Fix link & title

Modified:
    maven/sandbox/trunk/reports/maven-html.vm

Modified: maven/sandbox/trunk/reports/maven-html.vm
URL: http://svn.apache.org/viewvc/maven/sandbox/trunk/reports/maven-html.vm?rev=727588&r1=727587&r2=727588&view=diff
==============================================================================
--- maven/sandbox/trunk/reports/maven-html.vm (original)
+++ maven/sandbox/trunk/reports/maven-html.vm Wed Dec 17 15:52:14 2008
@@ -18,8 +18,8 @@
 	<script type="text/javascript">_uacct = "UA-140879-1";urchinTracker();</script>
   </head>
   <body>
-h1.Issues sorted by votes
-    <table>
+    <h1>Issues sorted by votes</h1>
+    <table width="90%">
 	  <tr>
 		<th>Votes</th>
 		<th>Key</th>
@@ -27,8 +27,8 @@
 	  </tr>
       #foreach ( $issue in $issues.descending("votes") )
 	  <tr>
-		<td><a href="http://jira.codehaus.org/browse/$issue.votes">$issue.votes</a></td>
-		<td>$issue.key</td>
+		<td>$issue.votes</td>
+		<td><a href="http://jira.codehaus.org/browse/$issue.key">$issue.key</a></td>
 		<td>$issue.summary</td>
 	  </tr>
       #end