Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
View | Details | Raw Unified | Return to bug 173352 | Differences between
and this patch

Collapse All | Expand All

(-)src/org/eclipse/mylyn/internal/bugzilla/ui/tasklist/BugzillaRepositorySettingsPage.java (-18 lines)
Lines 273-296 Link Here
273
		for (String languageSettings : BugzillaCorePlugin.getLanguageSettings().keySet()) {
273
		for (String languageSettings : BugzillaCorePlugin.getLanguageSettings().keySet()) {
274
			languageSettingCombo.add(languageSettings);
274
			languageSettingCombo.add(languageSettings);
275
		}
275
		}
276
//		languageSettingCombo.addSelectionListener(new SelectionAdapter() {
277
//			@Override
278
//			public void widgetSelected(SelectionEvent e) {
279
//				String text = languageSettingCombo.getText();
280
////				RepositoryTemplate template = connector.getTemplate(text);
281
////				if (template != null) {
282
////					repositoryLabelEditor.setStringValue(template.label);
283
////					setUrl(template.repositoryUrl);
284
////					// setAnonymous(info.anonymous);
285
////					setBugzillaVersion(template.version);
286
////					if (template.characterEncoding != null) {
287
////						setEncoding(template.characterEncoding);
288
////					}
289
//					getContainer().updateButtons();
290
//					return;
291
////				}
292
//			}
293
//		});
294
		if (repository != null) {
276
		if (repository != null) {
295
			String language = repository.getProperty(IBugzillaConstants.BUGZILLA_LANGUAGE_SETTING);
277
			String language = repository.getProperty(IBugzillaConstants.BUGZILLA_LANGUAGE_SETTING);
296
			if (language != null && !language.equals(""))
278
			if (language != null && !language.equals(""))
(-)src/org/eclipse/mylyn/internal/bugzilla/core/BugzillaClient.java (-1 lines)
Lines 1049-1055 Link Here
1049
							&& ((HtmlTag) token.getValue()).getTagType() == HtmlTag.Type.TITLE
1049
							&& ((HtmlTag) token.getValue()).getTagType() == HtmlTag.Type.TITLE
1050
							&& ((HtmlTag) token.getValue()).isEndTag()) {
1050
							&& ((HtmlTag) token.getValue()).isEndTag()) {
1051
1051
1052
						languageSettings.getProcessed();
1053
						if (title.indexOf(languageSettings.getLogin()) != -1
1052
						if (title.indexOf(languageSettings.getLogin()) != -1
1054
								|| (title.indexOf(languageSettings.getInvalid()) != -1 && title.indexOf(languageSettings.getPassword()) != -1)
1053
								|| (title.indexOf(languageSettings.getInvalid()) != -1 && title.indexOf(languageSettings.getPassword()) != -1)
1055
								|| title.indexOf(languageSettings.getCheckEmail()) != -1) {
1054
								|| title.indexOf(languageSettings.getCheckEmail()) != -1) {

Return to bug 173352