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 168597 | Differences between
and this patch

Collapse All | Expand All

(-)src/org/eclipse/hyades/test/tools/ui/internal/resources/ToolsUiPluginResourceBundle.java (+1 lines)
Lines 283-288 Link Here
283
	public static String HttpRecorderLaunchWizard_WINDOWS_ADMIN_ERROR;
283
	public static String HttpRecorderLaunchWizard_WINDOWS_ADMIN_ERROR;
284
	public static String HttpRecorderLaunchWizard_WINDOWS_GENERAL_ERROR;
284
	public static String HttpRecorderLaunchWizard_WINDOWS_GENERAL_ERROR;
285
	public static String HttpRecorderLaunchWizard_RECORDING_BROWSER_IN_USE;
285
	public static String HttpRecorderLaunchWizard_RECORDING_BROWSER_IN_USE;
286
	public static String HttpRecorderLaunchWizard_RECORDING_BROWSER_IN_USE_VISTA;
286
	public static String HTTP_Test_Generator_Name;
287
	public static String HTTP_Test_Generator_Name;
287
	public static String E_INVALID_REC_FILE;
288
	public static String E_INVALID_REC_FILE;
288
	public static String E_SAX_DRIVER_FAILURE;
289
	public static String E_SAX_DRIVER_FAILURE;
(-)src/org/eclipse/hyades/test/tools/ui/internal/resources/messages.properties (+1 lines)
Lines 348-353 Link Here
348
HttpRecorderLaunchWizard_WINDOWS_ADMIN_ERROR=Unable to modify your Internet Explorer options for HTTP Recording.\n Please run the eclipse executable as an administrator.
348
HttpRecorderLaunchWizard_WINDOWS_ADMIN_ERROR=Unable to modify your Internet Explorer options for HTTP Recording.\n Please run the eclipse executable as an administrator.
349
HttpRecorderLaunchWizard_WINDOWS_GENERAL_ERROR=File Permissions Error
349
HttpRecorderLaunchWizard_WINDOWS_GENERAL_ERROR=File Permissions Error
350
HttpRecorderLaunchWizard_RECORDING_BROWSER_IN_USE=Your browser profile is already in use.\n You must close the browser or select another browser from Application to Record in Preferences.
350
HttpRecorderLaunchWizard_RECORDING_BROWSER_IN_USE=Your browser profile is already in use.\n You must close the browser or select another browser from Application to Record in Preferences.
351
HttpRecorderLaunchWizard_RECORDING_BROWSER_IN_USE_VISTA=Your Internet Explorer browser is in use.\n You must close the browser or select another browser from Application to Record in Preferences.
351
HTTP_Test_Generator_Name=TPTP URL Test Generator
352
HTTP_Test_Generator_Name=TPTP URL Test Generator
352
E_INVALID_REC_FILE=IWAT3018E invalid .rec file
353
E_INVALID_REC_FILE=IWAT3018E invalid .rec file
353
E_SAX_DRIVER_FAILURE=IWAT3019E failed to create XML driver
354
E_SAX_DRIVER_FAILURE=IWAT3019E failed to create XML driver
(-)META-INF/MANIFEST.MF (-1 / +1 lines)
Lines 2-8 Link Here
2
Bundle-ManifestVersion: 2
2
Bundle-ManifestVersion: 2
3
Bundle-Name: %PLUGIN_NAME
3
Bundle-Name: %PLUGIN_NAME
4
Bundle-SymbolicName: org.eclipse.hyades.test.tools.ui; singleton:=true
4
Bundle-SymbolicName: org.eclipse.hyades.test.tools.ui; singleton:=true
5
Bundle-Version: 4.4.0.qualifier
5
Bundle-Version: 4.4.100.qualifier
6
Bundle-Activator: org.eclipse.hyades.test.tools.ui.ToolsUiPlugin
6
Bundle-Activator: org.eclipse.hyades.test.tools.ui.ToolsUiPlugin
7
Bundle-Vendor: %PROVIDER_NAME
7
Bundle-Vendor: %PROVIDER_NAME
8
Bundle-Localization: plugin
8
Bundle-Localization: plugin
(-)src-recorder-http/org/eclipse/hyades/internal/recorder/http/util/RecorderParamHelper.java (+10 lines)
Lines 322-327 Link Here
322
						ToolsUiPluginResourceBundle.HttpRecorderLaunchWizard_WINDOWS_GENERAL_ERROR);  
322
						ToolsUiPluginResourceBundle.HttpRecorderLaunchWizard_WINDOWS_GENERAL_ERROR);  
323
				throw new RecorderException(ToolsUiPluginResourceBundle.HttpRecorderLaunchWizard_VISTA_ADMIN_ERROR);
323
				throw new RecorderException(ToolsUiPluginResourceBundle.HttpRecorderLaunchWizard_VISTA_ADMIN_ERROR);
324
			}
324
			}
325
			else if  (thisProxyError == regInfo.BROWSER_IN_USE_ERROR) {
326
				String tmpStr = ToolsUiPluginResourceBundle.HttpRecorderLaunchWizard_RECORDING_BROWSER_IN_USE_VISTA + "\n ";
327
				UiPlugin.reportExceptionToUser(new RecorderException(ToolsUiPluginResourceBundle.HttpRecorderLaunchWizard_RECORDING_BROWSER_IN_USE), 
328
						ToolsUiPluginResourceBundle.HttpRecorderLaunchWizard_UNABLE_TO_START_RECORDER_MESSAGE, 
329
						tmpStr,
330
						ToolsUiPluginResourceBundle.HttpRecorderLaunchWizard_RECORDING_BROWSER_CONFIG_ERROR); 
331
				throw new RecorderException(ToolsUiPluginResourceBundle.HttpRecorderLaunchWizard_RECORDING_BROWSER_IN_USE_VISTA);
332
			
333
			}
334
			
325
		}
335
		}
326
	}
336
	}
327
	private static void handleInvalidProxySettings(MozillaPrefs prefsInfo) throws RecorderException {
337
	private static void handleInvalidProxySettings(MozillaPrefs prefsInfo) throws RecorderException {

Return to bug 168597