Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGreg Watson2019-09-10 14:10:50 +0000
committerGreg Watson2019-09-10 14:10:50 +0000
commit9bf4c1d7f19fc109936c85dc739e46dd09fd5ac7 (patch)
tree8d6ee97d0b45b4937978707cd30d64cac29dab05
parent7f5c3e942691900664a12d7e14882ed388621c42 (diff)
downloadorg.eclipse.ptp-9bf4c1d7f19fc109936c85dc739e46dd09fd5ac7.tar.gz
org.eclipse.ptp-9bf4c1d7f19fc109936c85dc739e46dd09fd5ac7.tar.xz
org.eclipse.ptp-9bf4c1d7f19fc109936c85dc739e46dd09fd5ac7.zip
Bug 550938 - Add sync project wizards to empty workspace. Restore remote
category. Change-Id: Ib691ba32664ba949afd3efa9c5aa85346cd7b952 Signed-off-by: Greg Watson <g.watson@computer.org>
-rw-r--r--rdt/org.eclipse.ptp.rdt.sync.cdt.ui/plugin.xml5
-rw-r--r--rdt/org.eclipse.ptp.rdt.sync.fortran.ui/plugin.xml5
-rw-r--r--rdt/org.eclipse.ptp.rdt.sync.ui/plugin.properties1
-rw-r--r--rdt/org.eclipse.ptp.rdt.sync.ui/plugin.xml4
4 files changed, 13 insertions, 2 deletions
diff --git a/rdt/org.eclipse.ptp.rdt.sync.cdt.ui/plugin.xml b/rdt/org.eclipse.ptp.rdt.sync.cdt.ui/plugin.xml
index f11eece82..7c188e3a6 100644
--- a/rdt/org.eclipse.ptp.rdt.sync.cdt.ui/plugin.xml
+++ b/rdt/org.eclipse.ptp.rdt.sync.cdt.ui/plugin.xml
@@ -5,7 +5,7 @@
point="org.eclipse.ui.newWizards">
<wizard
canFinishEarly="false"
- category="org.eclipse.ptp.rdt.ui.wizardCategory.Remote"
+ category="org.eclipse.cdt.ui.newCWizards"
class="org.eclipse.ptp.internal.rdt.sync.cdt.ui.wizards.NewRemoteSyncProjectWizard"
finalPerspective="org.eclipse.cdt.ui.CPerspective"
hasPages="true"
@@ -16,6 +16,9 @@
<description>
%syncProject.desc
</description>
+ <selection
+ class="org.eclipse.core.resources.IProject">
+ </selection>
</wizard>
</extension>
<extension
diff --git a/rdt/org.eclipse.ptp.rdt.sync.fortran.ui/plugin.xml b/rdt/org.eclipse.ptp.rdt.sync.fortran.ui/plugin.xml
index 7010c8ff9..c56c3b543 100644
--- a/rdt/org.eclipse.ptp.rdt.sync.fortran.ui/plugin.xml
+++ b/rdt/org.eclipse.ptp.rdt.sync.fortran.ui/plugin.xml
@@ -5,7 +5,7 @@
point="org.eclipse.ui.newWizards">
<wizard
canFinishEarly="false"
- category="org.eclipse.ptp.rdt.ui.wizardCategory.Remote"
+ category="org.eclipse.photran.ui.newFortranWizards"
class="org.eclipse.ptp.internal.rdt.sync.fortran.ui.wizards.NewFortranSyncProjectWizard"
finalPerspective="org.eclipse.photran.ui.FortranPerspective"
hasPages="true"
@@ -16,6 +16,9 @@
<description>
%syncProject.desc
</description>
+ <selection
+ class="org.eclipse.core.resources.IProject">
+ </selection>
</wizard>
diff --git a/rdt/org.eclipse.ptp.rdt.sync.ui/plugin.properties b/rdt/org.eclipse.ptp.rdt.sync.ui/plugin.properties
index ad36b4215..a926994da 100644
--- a/rdt/org.eclipse.ptp.rdt.sync.ui/plugin.properties
+++ b/rdt/org.eclipse.ptp.rdt.sync.ui/plugin.properties
@@ -13,6 +13,7 @@ Bundle-Name = PTP Synchronization UI
providerName = Eclipse PTP
rdtViewCategory.name = Remote Development
NewWizards.project = Synchronized Project
+NewWizards.category = Remote
ConvertSyncProject.desc = Convert to Synchronized Project (sync files to a remote host)
ConvertWizards.project = Convert to Synchronized Project
syncProject.desc = Create a new Synchronized Project
diff --git a/rdt/org.eclipse.ptp.rdt.sync.ui/plugin.xml b/rdt/org.eclipse.ptp.rdt.sync.ui/plugin.xml
index 5c201af15..01ecbdfe3 100644
--- a/rdt/org.eclipse.ptp.rdt.sync.ui/plugin.xml
+++ b/rdt/org.eclipse.ptp.rdt.sync.ui/plugin.xml
@@ -28,6 +28,10 @@
%ConvertSyncProject.desc
</description>
</wizard>
+ <category
+ id="org.eclipse.ptp.rdt.ui.wizardCategory.Remote"
+ name="%NewWizards.category">
+ </category>
</extension>
<extension
point="org.eclipse.ui.commands">

Back to the top