|
From: <lac...@us...> - 2007-10-04 11:00:12
|
Revision: 42
http://td2jira.svn.sourceforge.net/td2jira/?rev=42&view=rev
Author: lacostej
Date: 2007-10-04 04:00:15 -0700 (Thu, 04 Oct 2007)
Log Message:
-----------
Create JIRA issues with the right assignee
Modified Paths:
--------------
trunk/td2jira/docs/ReleaseNotes.txt
trunk/td2jira/src/td2jira/sync/SyncUtils.java
Modified: trunk/td2jira/docs/ReleaseNotes.txt
===================================================================
--- trunk/td2jira/docs/ReleaseNotes.txt 2007-10-04 10:42:45 UTC (rev 41)
+++ trunk/td2jira/docs/ReleaseNotes.txt 2007-10-04 11:00:15 UTC (rev 42)
@@ -9,6 +9,7 @@
* FEATURE support both TD v8 and TD v9
* BUG fixed issues related to either jacob upgrade or support for TD v8. As I don't have TD v9, and already updated
to latest jacob to I am not sure these problems affect the v9 of the td API implementation.
- The fixes in dcomv8/Bug.java might need to be backported to v9 support.
+ The fixes in dcomv8/Bug.java might need to be backported to v9 support.
+* FEATURE Create JIRA issues with the right assignee
Old release
Modified: trunk/td2jira/src/td2jira/sync/SyncUtils.java
===================================================================
--- trunk/td2jira/src/td2jira/sync/SyncUtils.java 2007-10-04 10:42:45 UTC (rev 41)
+++ trunk/td2jira/src/td2jira/sync/SyncUtils.java 2007-10-04 11:00:15 UTC (rev 42)
@@ -194,8 +194,9 @@
jt.setSummary(prefix + " " + tdIssue.getId() + ": " + tdIssue.getSummary());
jt.setProjectId(jiraProject);
+ jt.setAssignee(Config.getJIRADeveloperForTDDeveloper(tdIssue.getAssignedTo()));
String at = Config.JIRA_ASSIGN_NEW_ISSUE_TO;
- if (at != null) jt.setAssignee(at);
+ if (at != null && jt.getAssignee() == null) jt.setAssignee(at);
jiraConnector.createJIRATask(jt);
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|