diff options
author | kelvingoodson <kelvingoodson@13f79535-47bb-0310-9956-ffa450edef68> | 2010-01-27 15:23:36 +0000 |
---|---|---|
committer | kelvingoodson <kelvingoodson@13f79535-47bb-0310-9956-ffa450edef68> | 2010-01-27 15:23:36 +0000 |
commit | 42f0ab93e3672acd30a20c58a8caf107d026d703 (patch) | |
tree | a03dbd75789bb52b57f331a9cfc7944d11cabfc0 /sandbox/kgoodson/jagg/src/main/resources/uiservices/plan.html | |
parent | ab60d5fa07f1ab6338895c761601e0464004c7e3 (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 '')
-rw-r--r-- | sandbox/kgoodson/jagg/src/main/resources/uiservices/plan.html | 8 |
1 files changed, 4 insertions, 4 deletions
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>"; } |