| Summary: | Submit failed: unable to retrieve new task id | ||||||
|---|---|---|---|---|---|---|---|
| Product: | z_Archived | Reporter: | Andrew <andrew.stucky> | ||||
| Component: | Mylyn | Assignee: | Frank Becker <eclipse> | ||||
| Status: | RESOLVED FIXED | QA Contact: | |||||
| Severity: | normal | ||||||
| Priority: | P3 | CC: | eclipse, robert.elves, steffen.pingel | ||||
| Version: | unspecified | ||||||
| Target Milestone: | --- | ||||||
| Hardware: | PC | ||||||
| OS: | Windows XP | ||||||
| Whiteboard: | |||||||
| Attachments: |
|
||||||
|
Description
Andrew
I think the problem stems from the fact that the Bugzilla server I'm using employs the term "Request" rather than "Bug" or "Issue" in the title of the submitted bug web page. It appears that the Bugzilla connector is expecting "Bug" or "Issue" and thus prints an error. Here is how to fix this 1) define an new plugin 2) add the following extention point to the plugin.xml <extension point="org.eclipse.mylyn.bugzilla.core.languages"> <language name="en private"> <languageAttribute command="error_login" response="Login"/> <languageAttribute command="error_login" response="log in"/> <languageAttribute command="error_login" response="check e-mail"/> <languageAttribute command="error_login" response="Invalid Username Or Password"/> <languageAttribute command="error_login" response="account locked"/> <languageAttribute command="error_collision" response="Mid-air collision!"/> <languageAttribute command="error_comment_required" response="Comment Required"/> <languageAttribute command="error_logged_out" response="logged out"/> <languageAttribute command="bad_login" response="Login"/> <languageAttribute command="bad_login" response="log in"/> <languageAttribute command="bad_login" response="check e-mail"/> <languageAttribute command="bad_login" response="Invalid Username Or Password"/> <languageAttribute command="bad_login" response="account locked"/> <languageAttribute command="bad_login" response="error"/> <languageAttribute command="processed" response="processed"/> <languageAttribute command="changes_submitted" response="Changes submitted"/> <languageAttribute command="changes_submitted" response="added to Bug"/> <languageAttribute command="bug" response="Bug"/> <languageAttribute command="bug" response="Issue"/> <languageAttribute command="bug" response="Request"/> <languageAttribute command="submitted" response="Submitted"/> <languageAttribute command="submitted" response="posted"/> <languageAttribute command="suspicious_action" response="Suspicious action"/> </language> </extension> 3) install this new plugin 4) open the repository setting Dialog and change under "Additional Settings" the language to "en private" That's it. Created attachment 196800 [details]
mylyn/context/zip
That fixed the issue. Thanks! |