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 80902 Details for
Bug 168597
[Vista] HTTP Recorder requires work-around on Windows Vista for Internet Explorer
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.
[patch]
Patch for org.eclipse.hyades.tools.ui
bugzilla168597tools.ui.txt (text/plain), 5.71 KB, created by
DuWayne Morris
on 2007-10-22 15:57:13 EDT
(
hide
)
Description:
Patch for org.eclipse.hyades.tools.ui
Filename:
MIME Type:
Creator:
DuWayne Morris
Created:
2007-10-22 15:57:13 EDT
Size:
5.71 KB
patch
obsolete
>### Eclipse Workspace Patch 1.0 >#P org.eclipse.hyades.test.tools.ui >Index: src/org/eclipse/hyades/test/tools/ui/internal/resources/ToolsUiPluginResourceBundle.java >=================================================================== >RCS file: /cvsroot/tptp/test/org.eclipse.hyades.test.tools.ui/src/org/eclipse/hyades/test/tools/ui/internal/resources/ToolsUiPluginResourceBundle.java,v >retrieving revision 1.4 >diff -u -r1.4 ToolsUiPluginResourceBundle.java >--- src/org/eclipse/hyades/test/tools/ui/internal/resources/ToolsUiPluginResourceBundle.java 8 Jun 2007 06:49:45 -0000 1.4 >+++ src/org/eclipse/hyades/test/tools/ui/internal/resources/ToolsUiPluginResourceBundle.java 22 Oct 2007 19:08:27 -0000 >@@ -283,6 +283,8 @@ > public static String HttpRecorderLaunchWizard_WINDOWS_ADMIN_ERROR; > public static String HttpRecorderLaunchWizard_WINDOWS_GENERAL_ERROR; > public static String HttpRecorderLaunchWizard_RECORDING_BROWSER_IN_USE; >+ public static String HttpRecorderLaunchWizard_RECORDING_BROWSER_IN_USE_VISTA; >+ public static String HttpRecorderLaunchWizard_RECORDING_TPTPRECUTIL_DLL_MISSING; > public static String HTTP_Test_Generator_Name; > public static String E_INVALID_REC_FILE; > public static String E_SAX_DRIVER_FAILURE; >Index: src/org/eclipse/hyades/test/tools/ui/internal/resources/messages.properties >=================================================================== >RCS file: /cvsroot/tptp/test/org.eclipse.hyades.test.tools.ui/src/org/eclipse/hyades/test/tools/ui/internal/resources/messages.properties,v >retrieving revision 1.8 >diff -u -r1.8 messages.properties >--- src/org/eclipse/hyades/test/tools/ui/internal/resources/messages.properties 8 Jun 2007 06:49:45 -0000 1.8 >+++ src/org/eclipse/hyades/test/tools/ui/internal/resources/messages.properties 22 Oct 2007 19:08:27 -0000 >@@ -348,6 +348,8 @@ > HttpRecorderLaunchWizard_WINDOWS_ADMIN_ERROR=Unable to modify your Internet Explorer options for HTTP Recording.\n Please run the eclipse executable as an administrator. > HttpRecorderLaunchWizard_WINDOWS_GENERAL_ERROR=File Permissions Error > 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. >+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. >+HttpRecorderLaunchWizard_RECORDING_TPTPRECUTIL_DLL_MISSING=Installation error, unable to find TPTPRecUtil.dll.\nWork-around is to right-click on the eclipse executable and click 'Run as administrator'. > HTTP_Test_Generator_Name=TPTP URL Test Generator > E_INVALID_REC_FILE=IWAT3018E invalid .rec file > E_SAX_DRIVER_FAILURE=IWAT3019E failed to create XML driver >Index: META-INF/MANIFEST.MF >=================================================================== >RCS file: /cvsroot/tptp/test/org.eclipse.hyades.test.tools.ui/META-INF/MANIFEST.MF,v >retrieving revision 1.16 >diff -u -r1.16 MANIFEST.MF >--- META-INF/MANIFEST.MF 3 May 2007 00:55:39 -0000 1.16 >+++ META-INF/MANIFEST.MF 22 Oct 2007 19:08:27 -0000 >@@ -2,7 +2,7 @@ > Bundle-ManifestVersion: 2 > Bundle-Name: %PLUGIN_NAME > Bundle-SymbolicName: org.eclipse.hyades.test.tools.ui; singleton:=true >-Bundle-Version: 4.4.0.qualifier >+Bundle-Version: 4.4.100.qualifier > Bundle-Activator: org.eclipse.hyades.test.tools.ui.ToolsUiPlugin > Bundle-Vendor: %PROVIDER_NAME > Bundle-Localization: plugin >Index: src-recorder-http/org/eclipse/hyades/internal/recorder/http/util/RecorderParamHelper.java >=================================================================== >RCS file: /cvsroot/tptp/test/org.eclipse.hyades.test.tools.ui/src-recorder-http/org/eclipse/hyades/internal/recorder/http/util/RecorderParamHelper.java,v >retrieving revision 1.16 >diff -u -r1.16 RecorderParamHelper.java >--- src-recorder-http/org/eclipse/hyades/internal/recorder/http/util/RecorderParamHelper.java 3 May 2007 01:41:46 -0000 1.16 >+++ src-recorder-http/org/eclipse/hyades/internal/recorder/http/util/RecorderParamHelper.java 22 Oct 2007 19:08:27 -0000 >@@ -322,6 +322,24 @@ > ToolsUiPluginResourceBundle.HttpRecorderLaunchWizard_WINDOWS_GENERAL_ERROR); > throw new RecorderException(ToolsUiPluginResourceBundle.HttpRecorderLaunchWizard_VISTA_ADMIN_ERROR); > } >+ else if (thisProxyError == regInfo.BROWSER_IN_USE_ERROR) { >+ String tmpStr = ToolsUiPluginResourceBundle.HttpRecorderLaunchWizard_RECORDING_BROWSER_IN_USE_VISTA + "\n "; >+ UiPlugin.reportExceptionToUser(new RecorderException(ToolsUiPluginResourceBundle.HttpRecorderLaunchWizard_RECORDING_BROWSER_IN_USE), >+ ToolsUiPluginResourceBundle.HttpRecorderLaunchWizard_UNABLE_TO_START_RECORDER_MESSAGE, >+ tmpStr, >+ ToolsUiPluginResourceBundle.HttpRecorderLaunchWizard_RECORDING_BROWSER_CONFIG_ERROR); >+ throw new RecorderException(ToolsUiPluginResourceBundle.HttpRecorderLaunchWizard_RECORDING_BROWSER_IN_USE_VISTA); >+ >+ } >+ else if (thisProxyError == regInfo.RECORDING_TPTPRECUTIL_DLL_MISSING) { >+ // below is for bugzilla 177396 mdd >+ UiPlugin.reportExceptionToUser(new RecorderException(ToolsUiPluginResourceBundle.HttpRecorderLaunchWizard_RECORDING_TPTPRECUTIL_DLL_MISSING), >+ ToolsUiPluginResourceBundle.HttpRecorderLaunchWizard_UNABLE_TO_START_RECORDER_MESSAGE, >+ ToolsUiPluginResourceBundle.HttpRecorderLaunchWizard_RECORDING_TPTPRECUTIL_DLL_MISSING, >+ ToolsUiPluginResourceBundle.HttpRecorderLaunchWizard_WINDOWS_GENERAL_ERROR); >+ throw new RecorderException(ToolsUiPluginResourceBundle.HttpRecorderLaunchWizard_RECORDING_TPTPRECUTIL_DLL_MISSING); >+ } >+ > } > } > private static void handleInvalidProxySettings(MozillaPrefs prefsInfo) throws RecorderException {
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 Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 168597
:
76930
|
76931
|
80259
|
80260
|
80261
|
80262
|
80270
|
80900
|
80901
| 80902