Community
Participate
Working Groups
1. Open https://bugs.eclipse.org/bugstest/show_bug.cgi?id=199345 2. Try to reassign bug The assignee field is not editable even though it is in the web interface.
Created attachment 201658 [details] people section
Steffen, did you have the same problem in the Mylyn test Bugzilla? I can not reproduce this with http://mylyn.eclipse.org/bugshead and http://mylyn.eclipse.org/bugs36 Maybe this is related to the bugzilla 4.0 with 3.6 workflow. Try to test this Sunday!
Steffen, I have fixed this for 3.7 (master). Can you verify and tell me how to apply this to the 3.6 branch!
Created attachment 201945 [details] mylyn/context/zip
I have applied the fix to the e_3_7_m_3_6 branch. It now works for unresolved bugs. In the web interface I can also reassign resolved bugs on the Eclipse Bugzilla 4.0. Could we enable that in the task editor for migrated Bugzilla 4.0 repositories as well?
(In reply to comment #5) > I have applied the fix to the e_3_7_m_3_6 branch. It now works for unresolved > bugs. > > In the web interface I can also reassign resolved bugs on the Eclipse Bugzilla > 4.0. Could we enable that in the task editor for migrated Bugzilla 4.0 > repositories as well? Sorry, I can not reproduce this with my bootstrap workspace for 3.7. see https://bugs.eclipse.org/bugstest/show_bug.cgi?id=213110
That bug is reopened which seems to work fine. Can you try reassigning this bug: 168204: https://bugs.eclipse.org/bugstest/show_bug.cgi?id=168204 ?
(In reply to comment #7) > That bug is reopened which seems to work fine. Can you try reassigning this > bug: 168204: https://bugs.eclipse.org/bugstest/show_bug.cgi?id=168204 ? Yes I use this bug to make sure, that the reopen is not only in the list of operation. I test that the reopen works!
Created attachment 202051 [details] screenshot of bug# 168204
Sorry, if I was not clear: If I open bug 168204 in the web interface I can edit the assignee. If I open the same bug in the task editor I can not edit the assignee. That's what I would like to get fixed.
(In reply to comment #10) > Sorry, if I was not clear: If I open bug 168204 in the web interface I can edit > the assignee. If I open the same bug in the task editor I can not edit the > assignee. That's what I would like to get fixed. OK, now I see the problem! addValidOperationsBefore4 has the following lines: if (status == BUGZILLA_REPORT_STATUS.NEW || status == BUGZILLA_REPORT_STATUS.ASSIGNED || status == BUGZILLA_REPORT_STATUS.REOPENED || status == BUGZILLA_REPORT_STATUS.UNCONFIRMED) { if (bugzillaVersion.compareMajorMinorOnly(BugzillaVersion.BUGZILLA_3_0) <= 0) { // old bugzilla workflow is used addOperation(bugReport, BugzillaOperation.reassign); addOperation(bugReport, BugzillaOperation.reassignbycomponent); } else { . . . Should we remove the whole block? (see bug#355737)
patch created!
Now the assignee field is editable for any bug in Bugzilla > 3.0. If that's generally the case I'm fine with the proposed changes.
I have cherry picked the latest commit onto the 3_6_x branch.
(In reply to comment #13) > Now the assignee field is editable for any bug in Bugzilla > 3.0. If that's > generally the case I'm fine with the proposed changes. Eclipse.org use 3.6 and you can edit the field in resolved bugs. So I think it is OK! (In reply to comment #14) > I have cherry picked the latest commit onto the 3_6_x branch. So I close this bug!