summaryrefslogtreecommitdiffstats
path: root/sandbox/kgoodson
diff options
context:
space:
mode:
authorkelvingoodson <kelvingoodson@13f79535-47bb-0310-9956-ffa450edef68>2010-01-27 15:23:36 +0000
committerkelvingoodson <kelvingoodson@13f79535-47bb-0310-9956-ffa450edef68>2010-01-27 15:23:36 +0000
commit42f0ab93e3672acd30a20c58a8caf107d026d703 (patch)
treea03dbd75789bb52b57f331a9cfc7944d11cabfc0 /sandbox/kgoodson
parentab60d5fa07f1ab6338895c761601e0464004c7e3 (diff)
links off to JIRAs
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@903674 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'sandbox/kgoodson')
-rw-r--r--sandbox/kgoodson/jagg/src/main/resources/JiraSideband.xml4
-rw-r--r--sandbox/kgoodson/jagg/src/main/resources/JiraSideband.xsd19
-rw-r--r--sandbox/kgoodson/jagg/src/main/resources/uiservices/plan.html8
3 files changed, 21 insertions, 10 deletions
diff --git a/sandbox/kgoodson/jagg/src/main/resources/JiraSideband.xml b/sandbox/kgoodson/jagg/src/main/resources/JiraSideband.xml
index 2ebfecb232..60a923ce53 100644
--- a/sandbox/kgoodson/jagg/src/main/resources/JiraSideband.xml
+++ b/sandbox/kgoodson/jagg/src/main/resources/JiraSideband.xml
@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<jagg:plan xmlns:jagg="http://www.example.com/tracking" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.example.com/tracking JiraSideband.xsd ">
+ <issueBase>https://issues.apache.org/jira/browse/</issueBase>
<milestones>
<milestone ID="V8_M5I14a" workItems=
'SUPPORT_REFS_ON_OTHERS ENHANCE_ART_PROC_PERF'>
@@ -10,6 +11,7 @@
</milestones>
<workitems>
<workitem ID='SUPPORT_REFS_ON_OTHERS'>
+ <title>support reference on other impl type than impl.widget</title>
<responsible>LR</responsible>
<dueDate>2001-01-01</dueDate>
<jira>TUSCANY-2850</jira>
@@ -18,6 +20,7 @@
<note>note</note>
</workitem>
<workitem ID='ENHANCE_ART_PROC_PERF'>
+ <title>Enhance artfact processing performance by returning URI and location URL in one call</title>
<responsible>LR</responsible>
<dueDate>2001-01-01</dueDate>
<jira>TUSCANY-3395</jira>
@@ -26,6 +29,7 @@
<note>note</note>
</workitem>
<workitem ID='CONTRIBS_IDENT_SPEC_VERS'>
+ <title>Add support for identifying the SCA Spec Version for contribution metadata</title>
<responsible>LR</responsible>
<dueDate>2001-01-01</dueDate>
<jira>TUSCANY-3397</jira>
diff --git a/sandbox/kgoodson/jagg/src/main/resources/JiraSideband.xsd b/sandbox/kgoodson/jagg/src/main/resources/JiraSideband.xsd
index b00bbae874..41f25b1961 100644
--- a/sandbox/kgoodson/jagg/src/main/resources/JiraSideband.xsd
+++ b/sandbox/kgoodson/jagg/src/main/resources/JiraSideband.xsd
@@ -25,9 +25,14 @@
<xsd:complexType name="Plan">
<xsd:sequence>
- <xsd:element name="milestones" type="jagg:Milestones" maxOccurs="1" minOccurs="1"></xsd:element>
- <xsd:element name="workitems" type="jagg:WorkItems" maxOccurs="1" minOccurs="1"></xsd:element>
- </xsd:sequence>
+ <xsd:element name="issueBase" type="xsd:string"></xsd:element>
+ <xsd:element name="milestones" type="jagg:Milestones"
+ maxOccurs="1" minOccurs="1">
+ </xsd:element>
+ <xsd:element name="workitems" type="jagg:WorkItems"
+ maxOccurs="1" minOccurs="1">
+ </xsd:element>
+ </xsd:sequence>
</xsd:complexType>
@@ -38,8 +43,10 @@
function for
</xsd:documentation>
</xsd:annotation>
- <xsd:sequence>
- <xsd:element name="responsible" type="xsd:string"
+ <xsd:sequence>
+
+ <xsd:element name="title" type="xsd:string"></xsd:element>
+ <xsd:element name="responsible" type="xsd:string"
maxOccurs="1" minOccurs="0">
</xsd:element>
<xsd:element name="dueDate" type="xsd:string" maxOccurs="1"
@@ -57,7 +64,7 @@
</xsd:element>
<xsd:element name="note" type="xsd:string" maxOccurs="1"
minOccurs="0">
- </xsd:element>
+ </xsd:element>
</xsd:sequence>
<xsd:attribute name="ID" type="xsd:ID"></xsd:attribute>
</xsd:complexType>
diff --git a/sandbox/kgoodson/jagg/src/main/resources/uiservices/plan.html b/sandbox/kgoodson/jagg/src/main/resources/uiservices/plan.html
index 48b4f49d53..ace495dbe7 100644
--- a/sandbox/kgoodson/jagg/src/main/resources/uiservices/plan.html
+++ b/sandbox/kgoodson/jagg/src/main/resources/uiservices/plan.html
@@ -39,11 +39,11 @@
for(var i=0; i<ms.length; i++) {
mscontent += "<tr><th colspan=\"4\">" + ms[i].ID + "</th></tr>";
var mswi = ms[i].workItems.list;
- mscontent +="<tr><th>ID</th><td>JIRA</th><td>Responsible</th><th>Status</th></tr>";
+ mscontent +="<tr><th>Title</th><td>JIRA</th><td>Responsible</th><th>Status</th></tr>";
for (var j=0; j<mswi.length; j++) {
mscontent +=
"<tr>"
- +"<td>"+mswi[j].ID+"</td>" + "<td>"+mswi[j].jira
+ +"<td>"+mswi[j].title+"</td>" + "<td><A HREF=\""+plan.issueBase+mswi[j].jira+"\">"+mswi[j].jira
+"</td>"+ "<td>"+mswi[j].responsible+"</td>"+ "<td>"+mswi[j].status+"</td>"+ "<td></td>"
+"</tr>";
}
@@ -52,7 +52,7 @@
mscontent += "</table>"
+"<h2> Work Items to be Scheduled</h2>";
- mscontent += "<table border=\"1\"><tr><th>ID</th><th>JIRA</th><th>Responsible</th><th>Status</th></tr>";
+ mscontent += "<table border=\"1\"><tr><th>Title</th><th>JIRA</th><th>Responsible</th><th>Status</th></tr>";
// unassigned work items (in terms of milestones)
var uawi = plan.workitems.workitem.list;
@@ -60,7 +60,7 @@
if(uawi[j]) {
mscontent +=
"<tr>"
- +"<td>"+uawi[j].ID+"</td>" + "<td>"+uawi[j].jira
+ +"<td>"+uawi[j].title+"</td>" + "<td>"+uawi[j].jira
+"</td>"+ "<td>"+uawi[j].responsible+"</td>"+ "<td>"+uawi[j].status+"</td>"+ "<td></td>"
+"</tr>";
}