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 127310 Details for
Bug 246111
Recorder Control View - context-sensitive help missing
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]
Partial patch.
Defect_246111_patch.txt (text/plain), 8.58 KB, created by
Paul Slauenwhite
on 2009-03-03 08:00:09 EST
(
hide
)
Description:
Partial patch.
Filename:
MIME Type:
Creator:
Paul Slauenwhite
Created:
2009-03-03 08:00:09 EST
Size:
8.58 KB
patch
obsolete
>### Eclipse Workspace Patch 1.0 >#P org.eclipse.hyades.test.ui >Index: src/org/eclipse/hyades/test/ui/internal/util/ContextIds.java >=================================================================== >RCS file: /cvsroot/tptp/test/org.eclipse.hyades.test.ui/src/org/eclipse/hyades/test/ui/internal/util/ContextIds.java,v >retrieving revision 1.4 >diff -u -r1.4 ContextIds.java >--- src/org/eclipse/hyades/test/ui/internal/util/ContextIds.java 16 May 2008 14:33:38 -0000 1.4 >+++ src/org/eclipse/hyades/test/ui/internal/util/ContextIds.java 23 Feb 2009 12:56:10 -0000 >@@ -1,5 +1,5 @@ > /********************************************************************** >- * Copyright (c) 2005, 2008 IBM Corporation and others. >+ * Copyright (c) 2005, 2009 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 >@@ -17,7 +17,7 @@ > * > * > * @author Paul E. Slauenwhite >- * @version May 16, 2008 >+ * @version Febraury 20, 2009 > * @since February 1, 2005 > */ > public class ContextIds { >Index: src-recorder/org/eclipse/hyades/internal/execution/recorder/ui/views/RecorderControlView.java >=================================================================== >RCS file: /cvsroot/tptp/test/org.eclipse.hyades.test.ui/src-recorder/org/eclipse/hyades/internal/execution/recorder/ui/views/RecorderControlView.java,v >retrieving revision 1.18 >diff -u -r1.18 RecorderControlView.java >--- src-recorder/org/eclipse/hyades/internal/execution/recorder/ui/views/RecorderControlView.java 20 Jan 2009 11:33:36 -0000 1.18 >+++ src-recorder/org/eclipse/hyades/internal/execution/recorder/ui/views/RecorderControlView.java 23 Feb 2009 12:56:10 -0000 >@@ -22,6 +22,7 @@ > import org.eclipse.hyades.test.core.testgen.ITestgenListener; > import org.eclipse.hyades.test.ui.UiPlugin; > import org.eclipse.hyades.test.ui.internal.resources.UiPluginResourceBundle; >+import org.eclipse.hyades.test.ui.internal.util.ContextIds; > import org.eclipse.jface.action.GroupMarker; > import org.eclipse.jface.action.ToolBarManager; > import org.eclipse.jface.dialogs.ErrorDialog; >@@ -58,7 +59,7 @@ > * @author Ernest Jessee > * @author Paul E. Slauenwhite > * @author Paul Klicnik >- * @version January 19, 2009 >+ * @version February 20, 2009 > * @since February 1, 2005 > */ > public class RecorderControlView extends ViewPart implements ITestgenListener, IRecorderListenerFullFeedback >@@ -111,7 +112,9 @@ > int heightHint = fm.getHeight() + fm.getAscent() + fm.getDescent(); > int widthHint = fm.getAverageCharWidth() * 50; > Composite parent = new Composite(grandParent,SWT.NULL); >- PlatformUI.getWorkbench().getHelpSystem().setHelp(parent,"org.eclipse.hyades.execution.recorder.RecorderControlView"); //$NON-NLS-1$ >+ >+ //Set the context sensitive help: >+ PlatformUI.getWorkbench().getHelpSystem().setHelp(parent, UiPlugin.getID() + ContextIds.REC_WIZ); > > RecorderUIUtility.assignGridLayout(parent,1, false); > Canvas bytesReceivedCanvas = new Canvas(parent,SWT.NULL); >Index: infopop/recorderUI.xml >=================================================================== >RCS file: /cvsroot/tptp/test/org.eclipse.hyades.test.ui/infopop/recorderUI.xml,v >retrieving revision 1.4 >diff -u -r1.4 recorderUI.xml >--- infopop/recorderUI.xml 11 Mar 2008 18:13:16 -0000 1.4 >+++ infopop/recorderUI.xml 23 Feb 2009 12:56:10 -0000 >@@ -1,6 +1,6 @@ > <?xml version="1.0" encoding="UTF-8"?> > <!-- >-Copyright (c) 2005, 2008 IBM Corporation and others. >+Copyright (c) 2005, 2009 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 >@@ -11,7 +11,19 @@ > <?NLS TYPE="org.eclipse.help.contexts"?> > <contexts> > >+<context id="recw0001"> >+<!--New test from recording wizard content--> >+<description>Select the recorder to create a new recording and test or create a new test from an existing recording.</description> >+<topic href="../org.eclipse.tptp.test.recorders.url.doc.user/tasks/trecordtest.html" label="Creating a new test from a recording"/> >+</context> >+ >+ > <!--Specify the pathname of the test suite container file--> >+<context id="recw0001"> >+<description>I love today!</description> >+<topic href="../../org.eclipse.tptp.test.recorders.url.doc.user/tasks/trecordtest.html" label="Today is great!"/> >+</context> >+ > <context id="TestSuitePathSelector"> > <description>Specify the pathname of the generated test suite</description> > <topic href="../org.eclipse.hyades.test.doc.user/ref/enterTestsuitepath.htm" label="Generated test suite file location"/> >Index: infopop/testUI.xml >=================================================================== >RCS file: /cvsroot/tptp/test/org.eclipse.hyades.test.ui/infopop/testUI.xml,v >retrieving revision 1.5 >diff -u -r1.5 testUI.xml >--- infopop/testUI.xml 16 May 2008 14:33:45 -0000 1.5 >+++ infopop/testUI.xml 23 Feb 2009 12:56:10 -0000 >@@ -1,6 +1,6 @@ > <?xml version="1.0" encoding="UTF-8"?> > <!-- >-Copyright (c) 2005, 2008 IBM Corporation and others. >+Copyright (c) 2005, 2009 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 >@@ -177,12 +177,6 @@ > <!--topic href="../org.eclipse.hyades.test.doc/tasks/tsetting_preferences.htm" label="Setting Test preferences"/--> > </context> > >-<context id="recw0001"> >-<!--New test from recording wizard content--> >-<description>Select the recorder to create a new recording and test or create a new test from an existing recording.</description> >-<topic href="../org.eclipse.tptp.test.recorders.url.doc.user/tasks/trecordtest.html" label="Creating a new test from a recording"/> >-</context> >- > <context id="resw0001"> > <!--New resource wizard content--> > <description>Select an existing resource in the workspace or create a new resource in the workspace.</description> >Index: src-recorder/org/eclipse/tptp/test/internal/recorder/ui/wizards/NewRecordingWizardPage.java >=================================================================== >RCS file: /cvsroot/tptp/test/org.eclipse.hyades.test.ui/src-recorder/org/eclipse/tptp/test/internal/recorder/ui/wizards/NewRecordingWizardPage.java,v >retrieving revision 1.17 >diff -u -r1.17 NewRecordingWizardPage.java >--- src-recorder/org/eclipse/tptp/test/internal/recorder/ui/wizards/NewRecordingWizardPage.java 16 May 2008 14:33:28 -0000 1.17 >+++ src-recorder/org/eclipse/tptp/test/internal/recorder/ui/wizards/NewRecordingWizardPage.java 23 Feb 2009 12:56:10 -0000 >@@ -109,7 +109,7 @@ > */ > public void createControl(Composite parent) { > >- //Set the context sensitive help for the wizard page: >+ //Set the context sensitive help: > PlatformUI.getWorkbench().getHelpSystem().setHelp(parent, UiPlugin.getID() + ContextIds.REC_WIZ); > > setPageComplete(false); >Index: plugin.xml >=================================================================== >RCS file: /cvsroot/tptp/test/org.eclipse.hyades.test.ui/plugin.xml,v >retrieving revision 1.94 >diff -u -r1.94 plugin.xml >--- plugin.xml 12 Feb 2009 19:49:09 -0000 1.94 >+++ plugin.xml 23 Feb 2009 12:56:10 -0000 >@@ -37,13 +37,13 @@ > <extension-point id="testNavigatorRefactoringTransactions" name="Test Navigator Refactoring Transactions" schema="schema/testNavigatorRefactoringTransactions.exsd"/> > > <extension point="org.eclipse.help.contexts"> >- <contexts file="infopop\hyadesUI.xml" plugin ="org.eclipse.hyades.ui"/> >- <contexts file="infopop\testUI.xml" plugin ="org.eclipse.hyades.test.ui"/> >- <contexts file="infopop\testDatapool.xml" plugin="org.eclipse.hyades.test.ui"/> >- <contexts file="infopop\testJava.xml" plugin ="org.eclipse.hyades.test.java"/> >- <contexts file="infopop\testCommon.xml" plugin ="org.eclipse.hyades.test.common"/> >- <contexts file="infopop\recorderUI.xml" plugin ="org.eclipse.hyades.execution.testgen"/> >- <contexts file="infopop\recorderUI.xml" plugin ="org.eclipse.hyades.execution.recorder.harness"/> >+ <contexts file="infopop\hyadesUI.xml"/> >+ <contexts file="infopop\testUI.xml"/> >+ <contexts file="infopop\testDatapool.xml"/> >+ <contexts file="infopop\testJava.xml"/> >+ <contexts file="infopop\testCommon.xml"/> >+ <contexts file="infopop\recorderUI.xml"/> >+ <contexts file="infopop\recorderUI.xml"/> > </extension> > > <extension
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 246111
: 127310 |
130387