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/19 01:15:24 UTC

svn commit: r727866 - in /maven/sandbox/trunk/reports: ./ maven-html.vm maven-plugins-fixed-html.vm maven-plugins-html.vm

Author: aheritier
Date: Thu Dec 18 16:15:23 2008
New Revision: 727866

URL: http://svn.apache.org/viewvc?rev=727866&view=rev
Log:
Improve HTML Style

Modified:
    maven/sandbox/trunk/reports/   (props changed)
    maven/sandbox/trunk/reports/maven-html.vm
    maven/sandbox/trunk/reports/maven-plugins-fixed-html.vm
    maven/sandbox/trunk/reports/maven-plugins-html.vm

Propchange: maven/sandbox/trunk/reports/
------------------------------------------------------------------------------
--- svn:ignore (original)
+++ svn:ignore Thu Dec 18 16:15:23 2008
@@ -1 +1,7 @@
 velocity.log
+maven-plugins-fixed.html
+maven-plugins-fixed.txt
+maven-votes.html
+maven-votes.txt
+plugin-votes.html
+plugin-votes.txt

Modified: maven/sandbox/trunk/reports/maven-html.vm
URL: http://svn.apache.org/viewvc/maven/sandbox/trunk/reports/maven-html.vm?rev=727866&r1=727865&r2=727866&view=diff
==============================================================================
--- maven/sandbox/trunk/reports/maven-html.vm (original)
+++ maven/sandbox/trunk/reports/maven-html.vm Thu Dec 18 16:15:23 2008
@@ -6,12 +6,44 @@
 #set( $issues = $jirarss.issues )
 <html xmlns="http://www.w3.org/1999/xhtml">
   <head>
-    <title>MNG Votes on Jira Report</title>
-    <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />                                                
+    <title>Votes on MNG issues in Jira</title>
+    <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
+	<style type="text/css">
+	<!--
+	body {
+		font-family: Arial, Helvetica, sans-serif;
+	}
+	th {
+		color: #FFFFFF;
+		background-color: #333333;
+		padding: 5px;
+	}
+	td {
+		background-color: #CCCCCC;
+		padding: 3px;
+	}
+	table {
+	}
+	a:link {
+		color: #003333;
+		text-decoration: none;
+	}
+	a:visited {
+		color: #003333;
+		text-decoration: none;
+	}
+	a:hover {
+		color: #0033CC;
+	}
+	a:active {
+		color: #0033CC;
+	}
+	-->
+	</style>                                                                                          
   </head>
   <body>
-    <h1><a href="http://jira.codehaus.org/browse/MNG">Maven 2 Issues on Jira</a> sorted by descending vote count</h1>
-    <table align="center">
+    <h1><a href="http://jira.codehaus.org/browse/MNG">Votes on MNG issues in Jira</a> sorted by descending vote count</h1>
+    <table>
 	  <tr>
 		<th>Votes</th>
 		<th>Key</th>

Modified: maven/sandbox/trunk/reports/maven-plugins-fixed-html.vm
URL: http://svn.apache.org/viewvc/maven/sandbox/trunk/reports/maven-plugins-fixed-html.vm?rev=727866&r1=727865&r2=727866&view=diff
==============================================================================
--- maven/sandbox/trunk/reports/maven-plugins-fixed-html.vm (original)
+++ maven/sandbox/trunk/reports/maven-plugins-fixed-html.vm Thu Dec 18 16:15:23 2008
@@ -3,8 +3,40 @@
 #set( $projects = $jira.getProjects().matches("name", "Maven 2.*Plugin") )
 <html xmlns="http://www.w3.org/1999/xhtml">
   <head>
-    <title>Maven Plugins Votes Report</title>
-    <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />                                                
+    <title>Maven plugins - report on fixed issues</title>
+    <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
+	<style type="text/css">
+	<!--
+	body {
+		font-family: Arial, Helvetica, sans-serif;
+	}
+	th {
+		color: #FFFFFF;
+		background-color: #333333;
+		padding: 5px;
+	}
+	td {
+		background-color: #CCCCCC;
+		padding: 3px;
+	}
+	table {
+	}
+	a:link {
+		color: #003333;
+		text-decoration: none;
+	}
+	a:visited {
+		color: #003333;
+		text-decoration: none;
+	}
+	a:hover {
+		color: #0033CC;
+	}
+	a:active {
+		color: #0033CC;
+	}
+	-->
+	</style>                                                                                           
   </head>
   <body>
     #foreach( $project in $projects )
@@ -14,12 +46,11 @@
     ## keep the issues in case you want them later
     #set( $project.attributes.issues = $jirarss.issues )
     #end
-	<h1>Plugins overview</h1>
-	<p>Plugins with issues that are fixed but unreleased, by descending vote count</p>
-    <table align="center">
+	<h1>Report on fixed issues for unreleased Maven plugins</h1>
+    <table>
       <tr>
 		<th>Plugin</th>
-		<th>Number of votes</th>
+		<th>Number of votes on fixed issues</th>
 	  </tr>
 	#foreach( $project in $projects.descending("@totalVotes") )
 	  <tr>
@@ -28,11 +59,10 @@
 	  </tr>
 	#end
     </table>
-    <h1>Plugins details</h1>
     #foreach( $project in $projects.descending("@totalVotes") )
-    <a name="$project.name"/><h2>$project.name</h2>
-    <p>$project.attributes.totalVotes votes</p>
-    <table align="center">
+    <a name="$project.name"/><h1><a href="http://jira.codehaus.org/browse/$project.key">$project.name</a></h1>
+    <p>$project.attributes.totalVotes votes for $project.attributes.issues.size() fixed issues</p>
+    <table>
       <tr>
 		<th>Votes</th>
 		<th>Key</th>

Modified: maven/sandbox/trunk/reports/maven-plugins-html.vm
URL: http://svn.apache.org/viewvc/maven/sandbox/trunk/reports/maven-plugins-html.vm?rev=727866&r1=727865&r2=727866&view=diff
==============================================================================
--- maven/sandbox/trunk/reports/maven-plugins-html.vm (original)
+++ maven/sandbox/trunk/reports/maven-plugins-html.vm Thu Dec 18 16:15:23 2008
@@ -3,8 +3,40 @@
 #set( $projects = $jira.getProjects().matches("name", "Maven 2.*Plugin") )
 <html xmlns="http://www.w3.org/1999/xhtml">
   <head>
-    <title>Number of votes on opened issues for Maven plugins</title>
-    <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />                                                
+    <title>Maven plugins - report on open issues</title>
+    <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
+	<style type="text/css">
+	<!--
+	body {
+		font-family: Arial, Helvetica, sans-serif;
+	}
+	th {
+		color: #FFFFFF;
+		background-color: #333333;
+		padding: 5px;
+	}
+	td {
+		background-color: #CCCCCC;
+		padding: 3px;
+	}
+	table {
+	}
+	a:link {
+		color: #003333;
+		text-decoration: none;
+	}
+	a:visited {
+		color: #003333;
+		text-decoration: none;
+	}
+	a:hover {
+		color: #0033CC;
+	}
+	a:active {
+		color: #0033CC;
+	}
+	-->
+	</style>                                           
   </head>
   <body>
 	#foreach( $project in $projects )
@@ -14,12 +46,11 @@
 	## keep the issues in case you want them later
 	#set( $project.attributes.issues = $jirarss.issues )
 	#end
-	<h1>Plugins overview</h1>
-	<p>Number of votes on opened issues for Maven plugins sorted by descending votes count</p>
-    <table align="center">
+	<h1>Report on open issues for Maven plugins</h1>
+    <table>
       <tr>
 		<th>Plugin</th>
-		<th>Number of votes</th>
+		<th>Number of votes on open issues</th>
 	  </tr>
 	#foreach( $project in $projects.descending("@totalVotes") )
 	  <tr>
@@ -28,11 +59,10 @@
 	  </tr>
 	#end
     </table>
-    <h1>Plugins details</h1>
 	#foreach( $project in $projects.descending("@totalVotes") ) 
-    <a name="$project.name"/><h2>$project.name</h2>
-    <p>$project.attributes.totalVotes votes</p>
-    <table align="center">
+    <a name="$project.name"/><h1><a href="http://jira.codehaus.org/browse/$project.key">$project.name</a></h1>
+    <p>$project.attributes.totalVotes votes for $project.attributes.issues.size() open issues.</p>
+    <table>
       <tr>
 		<th>Votes</th>
 		<th>Key</th>