Download
Getting Started
Members
Projects
Community
Marketplace
Events
Planet Eclipse
Newsletter
Videos
Participate
Report a Bug
Forums
Mailing Lists
Wiki
IRC
How to Contribute
Working Groups
Automotive
Internet of Things
LocationTech
Long-Term Support
PolarSys
Science
OpenMDM
More
Community
Marketplace
Events
Planet Eclipse
Newsletter
Videos
Participate
Report a Bug
Forums
Mailing Lists
Wiki
IRC
How to Contribute
Working Groups
Automotive
Internet of Things
LocationTech
Long-Term Support
PolarSys
Science
OpenMDM
Toggle navigation
Bugzilla – Attachment 147028 Details for
Bug 289155
[upstream] comment search broken with bugzilla 3.4
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
Log In
[x]
|
Terms of Use
|
Copyright Agent
Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read
this important communication.
backported patch
clipboard.txt (text/plain), 2.39 KB, created by
Steffen Pingel
on 2009-09-11 23:36:05 EDT
(
hide
)
Description:
backported patch
Filename:
MIME Type:
Creator:
Steffen Pingel
Created:
2009-09-11 23:36:05 EDT
Size:
2.39 KB
patch
obsolete
>### Eclipse Workspace Patch 1.0 >#P org.eclipse.mylyn.bugzilla.core >Index: src/org/eclipse/mylyn/internal/bugzilla/core/messages.properties >=================================================================== >RCS file: /cvsroot/tools/org.eclipse.mylyn/org.eclipse.mylyn.bugzilla.core/src/org/eclipse/mylyn/internal/bugzilla/core/messages.properties,v >retrieving revision 1.10 >diff -u -r1.10 messages.properties >--- src/org/eclipse/mylyn/internal/bugzilla/core/messages.properties 24 Jul 2009 12:07:14 -0000 1.10 >+++ src/org/eclipse/mylyn/internal/bugzilla/core/messages.properties 12 Sep 2009 03:38:52 -0000 >@@ -96,7 +96,7 @@ > BugzillaOperation_Resolve_as=Resolve as > BugzillaOperation_Reassign_to_default_assignee=Reassign to default assignee > >-BugzillaRepositoryConnector_BUGZILLA_SUPPORTS_2_18_TO_3_0=Bugzilla (supports uncustomized 2.18-3.2) >+BugzillaRepositoryConnector_BUGZILLA_SUPPORTS_2_18_TO_3_0=Bugzilla (supports uncustomized 3.0-3.4) > BugzillaRepositoryConnector_Check_repository_configuration=Check repository configuration: {0} > BugzillaRepositoryConnector_checking_for_changed_tasks=Checking for changed tasks > BugzillaRepositoryConnector_Query_for_changed_tasks=Query for changed tasks >Index: src/org/eclipse/mylyn/internal/bugzilla/core/BugzillaClient.java >=================================================================== >RCS file: /cvsroot/tools/org.eclipse.mylyn/org.eclipse.mylyn.bugzilla.core/src/org/eclipse/mylyn/internal/bugzilla/core/BugzillaClient.java,v >retrieving revision 1.189.2.2 >diff -u -r1.189.2.2 BugzillaClient.java >--- src/org/eclipse/mylyn/internal/bugzilla/core/BugzillaClient.java 28 Aug 2009 19:54:59 -0000 1.189.2.2 >+++ src/org/eclipse/mylyn/internal/bugzilla/core/BugzillaClient.java 12 Sep 2009 03:38:52 -0000 >@@ -446,6 +446,13 @@ > if (nameValue.length == 1) { > pairs.add(new NameValuePair(nameValue[0].trim(), "")); //$NON-NLS-1$ > } else if (nameValue.length == 2 && nameValue[0] != null && nameValue[1] != null) { >+ >+ //Hack around bugzilla's change of attribute name for comment search field bug#289155 >+ if (nameValue[0].startsWith("long_desc")) { >+ pairs.add(new NameValuePair(nameValue[0].replace("long_desc", "longdesc"), >+ URLDecoder.decode(nameValue[1].trim(), getCharacterEncoding()))); >+ } >+ > pairs.add(new NameValuePair(nameValue[0].trim(), URLDecoder.decode(nameValue[1].trim(), > getCharacterEncoding()))); > }
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Actions:
View
Attachments on
bug 289155
:
147012
|
147025
| 147028 |
147039
|
147040