In case we want to do something similar for Geronimo
http://openejb.apache.org/ejb-31-roadmap.html
Here's the entire wikipage content:
------------------------------
{swizzlejira}
#set( $jira = $rss.fetch("http://issues.apache.org/jira/sr/jira.issueviews:searchrequest-xml/temp/SearchRequest.xml?&pid=12310530&component=12313252
") )
#set( $issues = $jira.fillSubTasks() )
#set( $parents = [ "1133", "1134", "1135", "1136", "1137", "1138",
"1139", "1140", "1141", "1142", "1143", "1197"] )
h1. EJB 3.1 Road Map
#foreach( $parent in $parents )
#set( $issue = $jira.getIssue("OPENEJB-$parent") )
h2. $issue.summary
#set( $tasks = $issue.subTasks)
{swizzlejiraissues:issues=$as.param($tasks)|
columns=summary;assignee;priority;status|style=progress}
#end
{swizzlejira}
------------------------------
Basically I designed the entire road map with creating a few very
generic "top level" jiras all at once, the leisurely went through and
added all the required actual items as subtasks. Some subtasks
already had jiras and some had been completed. I linked them and
marked them as duplicate jiras where that was the case.
The I put them all in a new "ejb31" category so I can pull them all
down for the report in one big request -- rather than several small
requests.
The report takes a while to run and the results aren't cashed, so we
just need to keep our geronimo wiki space exported often and point
people at the exported page.
-David