You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by jv...@apache.org on 2006/11/17 19:53:01 UTC

svn commit: r476242 - /maven/sandbox/reports/plugin-vote-email.vm

Author: jvanzyl
Date: Fri Nov 17 10:53:00 2006
New Revision: 476242

URL: http://svn.apache.org/viewvc?view=rev&rev=476242
Log:
o little template using swizzle to grab the roadmap issues

Added:
    maven/sandbox/reports/plugin-vote-email.vm

Added: maven/sandbox/reports/plugin-vote-email.vm
URL: http://svn.apache.org/viewvc/maven/sandbox/reports/plugin-vote-email.vm?view=auto&rev=476242
==============================================================================
--- maven/sandbox/reports/plugin-vote-email.vm (added)
+++ maven/sandbox/reports/plugin-vote-email.vm Fri Nov 17 10:53:00 2006
@@ -0,0 +1,16 @@
+## We want to display
+## - the roadmap of issues for this release
+## - where the snapshot is
+## - usage instructions
+
+#set( $jira = $xmlrpc.connect("swizzletester:swizzle","http://jira.codehaus.org/rpc/xmlrpc") )
+#set( $project = $jira.getProject("MWAR") )
+#set( $version = $jira.getVersion( $project, "2.0.2") )
+#set( $url = "http://jira.codehaus.org/secure/IssueNavigator.jspa?view=rss&&pid=${project.id}&fixfor=${version.id}&tempMax=500&reset=true&decorator=none" )
+$version
+$url
+#set( $issues = $rss.fetch($url).issues )
+
+#foreach( $issue in $issues.sort("id").sort("priority") )
+  [$issue.key] $issue.summary
+#end