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 81746 Details for
Bug 145432
Improve wording on page one of the Web service/client wizards
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]
Modified patch
ModifiedPatch145432.txt (text/plain), 6.80 KB, created by
Kathy Chan
on 2007-10-31 13:41:17 EDT
(
hide
)
Description:
Modified patch
Filename:
MIME Type:
Creator:
Kathy Chan
Created:
2007-10-31 13:41:17 EDT
Size:
6.80 KB
patch
obsolete
>### Eclipse Workspace Patch 1.0 >#P org.eclipse.jst.ws.creation.ui >Index: src/org/eclipse/jst/ws/internal/creation/ui/widgets/binding/ServerWidgetBinding.java >=================================================================== >RCS file: /cvsroot/webtools/jst/components/ws/plugins/org.eclipse.jst.ws.creation.ui/src/org/eclipse/jst/ws/internal/creation/ui/widgets/binding/ServerWidgetBinding.java,v >retrieving revision 1.57 >diff -u -r1.57 ServerWidgetBinding.java >--- src/org/eclipse/jst/ws/internal/creation/ui/widgets/binding/ServerWidgetBinding.java 2 May 2007 13:34:33 -0000 1.57 >+++ src/org/eclipse/jst/ws/internal/creation/ui/widgets/binding/ServerWidgetBinding.java 31 Oct 2007 17:38:34 -0000 >@@ -27,6 +27,7 @@ > * 20060821 153833 makandre@ca.ibm.com - Andrew Mak, Allow the Web Service Test extension point to specify the supported client runtime > * 20060825 155114 pmoogk@ca.ibm.com - Peter Moogk > * 20070502 180304 gilberta@ca.ibm.com - Gilbert Andrews >+ * 20071031 140518 joan@ca.ibm.com - Joan Haggarty > *******************************************************************************/ > package org.eclipse.jst.ws.internal.creation.ui.widgets.binding; > >@@ -292,7 +293,7 @@ > > widgetRegistry.add( "ServerWizardWidget", > ConsumptionUIMessages.PAGE_TITLE_WS_PROJECT, >- ConsumptionUIMessages.PAGE_DESC_WS_PROJECT, >+ ConsumptionUIMessages.PAGE_DESC_WS_SERVICE, > new WidgetContributorFactory() > { > public WidgetContributor create() >#P org.eclipse.jst.ws.consumption.ui >Index: src/org/eclipse/jst/ws/internal/consumption/ui/widgets/binding/ClientWidgetBinding.java >=================================================================== >RCS file: /cvsroot/webtools/jst/components/ws/plugins/org.eclipse.jst.ws.consumption.ui/src/org/eclipse/jst/ws/internal/consumption/ui/widgets/binding/ClientWidgetBinding.java,v >retrieving revision 1.44 >diff -u -r1.44 ClientWidgetBinding.java >--- src/org/eclipse/jst/ws/internal/consumption/ui/widgets/binding/ClientWidgetBinding.java 2 May 2007 13:34:46 -0000 1.44 >+++ src/org/eclipse/jst/ws/internal/consumption/ui/widgets/binding/ClientWidgetBinding.java 31 Oct 2007 17:38:35 -0000 >@@ -26,6 +26,7 @@ > * 20060821 153833 makandre@ca.ibm.com - Andrew Mak, Allow the Web Service Test extension point to specify the supported client runtime > * 20060825 155114 pmoogk@ca.ibm.com - Peter Moogk > * 20070502 180304 gilberta@ca.ibm.com - Gilbert Andrews >+ * 20071031 140518 joan@ca.ibm.com - Joan Haggarty > *******************************************************************************/ > package org.eclipse.jst.ws.internal.consumption.ui.widgets.binding; > >@@ -197,7 +198,7 @@ > > widgetRegistry.add( "ClientWizardWidget", > ConsumptionUIMessages.PAGE_TITLE_WS_PROJECT, >- ConsumptionUIMessages.PAGE_DESC_WS_PROJECT, >+ ConsumptionUIMessages.PAGE_DESC_WS_CLIENT, > new WidgetContributorFactory() > { > public WidgetContributor create() >Index: src/org/eclipse/jst/ws/internal/consumption/ui/ConsumptionUI.properties >=================================================================== >RCS file: /cvsroot/webtools/jst/components/ws/plugins/org.eclipse.jst.ws.consumption.ui/src/org/eclipse/jst/ws/internal/consumption/ui/ConsumptionUI.properties,v >retrieving revision 1.26 >diff -u -r1.26 ConsumptionUI.properties >--- src/org/eclipse/jst/ws/internal/consumption/ui/ConsumptionUI.properties 27 Apr 2007 19:39:35 -0000 1.26 >+++ src/org/eclipse/jst/ws/internal/consumption/ui/ConsumptionUI.properties 31 Oct 2007 17:38:35 -0000 >@@ -26,6 +26,7 @@ > # 20060509 119296 pmoogk@ca.ibm.com - Peter Moogk > # 20060602 145054 kathy@ca.ibm.com - Kathy Chan > # 20070427 177360 pmoogk@ca.ibm.com - Peter Moogk >+# 20071031 140518 joan@ca.ibm.com - Joan Haggarty > ############################################################################### > > # >@@ -110,7 +111,8 @@ > # WebServiceProjectPage > # > PAGE_TITLE_WS_PROJECT=Web Services >-PAGE_DESC_WS_PROJECT=Review your Web service options and make any necessary changes before proceeding to the next page. >+PAGE_DESC_WS_SERVICE=Select a service implementation or definition and move the sliders to set the level of service and client generation. >+PAGE_DESC_WS_CLIENT=Select a service definition and move the slider to set the level of client generation. > BUTTON_START_WEB_PROJECT=&Start Web service in Web project > #BUTTON_DEPLOY_WEB_PROJECT=Deploy Web service to a server type > BUTTON_INSTALL_SERVICE_WEB_PROJECT=&Install Web service on server >@@ -606,7 +608,7 @@ > # > # Start server page > # >-PAGE_TITLE_WS_START_SERVER=Start Server >+PAGE_TITLE_WS_START_SERVER=Server startup > PAGE_DESC_WS_START_SERVER=Start the server from this page. > LABEL_START_SERVER_TEXT1=In order to proceed the server "{0}" must be started. > LABEL_START_SERVER_TEXT2=Once the server is started the "next" button will be enabled. >Index: src/org/eclipse/jst/ws/internal/consumption/ui/ConsumptionUIMessages.java >=================================================================== >RCS file: /cvsroot/webtools/jst/components/ws/plugins/org.eclipse.jst.ws.consumption.ui/src/org/eclipse/jst/ws/internal/consumption/ui/ConsumptionUIMessages.java,v >retrieving revision 1.21 >diff -u -r1.21 ConsumptionUIMessages.java >--- src/org/eclipse/jst/ws/internal/consumption/ui/ConsumptionUIMessages.java 20 Jul 2006 03:01:19 -0000 1.21 >+++ src/org/eclipse/jst/ws/internal/consumption/ui/ConsumptionUIMessages.java 31 Oct 2007 17:38:35 -0000 >@@ -1,5 +1,5 @@ > /******************************************************************************* >- * Copyright (c) 2000, 2006 IBM Corporation and others. >+ * Copyright (c) 2000, 2007 IBM Corporation and others. > * All rights reserved. This program and the accompanying materials > * are made available under the terms of the Eclipse Public License v1.0 > * which accompanies this distribution, and is available at >@@ -25,6 +25,7 @@ > * 20060510 141115 rsinha@ca.ibm.com - Rupam Kuehner > * 20060509 119296 pmoogk@ca.ibm.com - Peter Moogk > * 20060719 139977 kathy@ca.ibm.com - Kathy Chan >+ * 20071031 140518 joan@ca.ibm.com - Joan Haggarty > *******************************************************************************/ > package org.eclipse.jst.ws.internal.consumption.ui; > >@@ -63,7 +64,8 @@ > public static String COMBINED_TYPE_AND_RUNTIME_LABEL; > public static String WIZARD_TITLE_WSC; > public static String PAGE_TITLE_WS_PROJECT; >- public static String PAGE_DESC_WS_PROJECT; >+ public static String PAGE_DESC_WS_SERVICE; >+ public static String PAGE_DESC_WS_CLIENT; > public static String BUTTON_START_WEB_PROJECT; > public static String BUTTON_INSTALL_SERVICE_WEB_PROJECT; > public static String BUTTON_INSTALL_CLIENT_WEB_PROJECT;
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 145432
:
43538
| 81746