mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-13 20:15:22 +02:00
[272708] [import/export] fix various bugs with the synchronization support
This commit is contained in:
parent
17d93bf829
commit
cc0ede5184
2 changed files with 11 additions and 0 deletions
|
@ -9,6 +9,7 @@
|
||||||
# IBM Corporation - initial API and implementation
|
# IBM Corporation - initial API and implementation
|
||||||
# Martin Oberhuber (Wind River) - add providerName
|
# Martin Oberhuber (Wind River) - add providerName
|
||||||
# Takuya Miyamoto - [185925] Integrate Platform/Team Synchronization
|
# Takuya Miyamoto - [185925] Integrate Platform/Team Synchronization
|
||||||
|
# David McKnight (IBM) - [272708] [import/export] fix various bugs with the synchronization support
|
||||||
###############################################################################
|
###############################################################################
|
||||||
|
|
||||||
# NLS_MESSAGEFORMAT_NONE
|
# NLS_MESSAGEFORMAT_NONE
|
||||||
|
@ -19,6 +20,8 @@ pluginName = RSE Import/Export
|
||||||
providerName = Eclipse.org
|
providerName = Eclipse.org
|
||||||
|
|
||||||
# Remote file import and export wizards
|
# Remote file import and export wizards
|
||||||
|
newWizardCategoryName = Remote Systems
|
||||||
|
|
||||||
RemoteFileSystemExportWizard.label = Remote file system
|
RemoteFileSystemExportWizard.label = Remote file system
|
||||||
RemoteFileSystemExportWizard.description = Export resources to a remote file system
|
RemoteFileSystemExportWizard.description = Export resources to a remote file system
|
||||||
RemoteFileSystemImportWizard.label = Remote file system
|
RemoteFileSystemImportWizard.label = Remote file system
|
||||||
|
|
|
@ -14,6 +14,7 @@ Emily Bruner, Mazen Faraj, Adrian Storisteanu, Li Ding, and Kent Hawley.
|
||||||
Contributors:
|
Contributors:
|
||||||
David McKnight (IBM) - [261019] New File/Folder actions available in Work Offline mode
|
David McKnight (IBM) - [261019] New File/Folder actions available in Work Offline mode
|
||||||
Takuya Miyamoto - [185925] Integrate Platform/Team Synchronization (adapted from org.eclipse.team.examples.filesystem / plugin.xml)
|
Takuya Miyamoto - [185925] Integrate Platform/Team Synchronization (adapted from org.eclipse.team.examples.filesystem / plugin.xml)
|
||||||
|
David McKnight (IBM) - [272708] [import/export] fix various bugs with the synchronization support
|
||||||
-->
|
-->
|
||||||
|
|
||||||
<?eclipse version="3.0"?>
|
<?eclipse version="3.0"?>
|
||||||
|
@ -23,9 +24,12 @@ Takuya Miyamoto - [185925] Integrate Platform/Team Synchronization (adapted from
|
||||||
<!-- Remote File System import and export wizards. -->
|
<!-- Remote File System import and export wizards. -->
|
||||||
<!-- ========================================================================= -->
|
<!-- ========================================================================= -->
|
||||||
<extension point="org.eclipse.ui.importWizards">
|
<extension point="org.eclipse.ui.importWizards">
|
||||||
|
<category name="%newWizardCategoryName" id="org.eclipse.rse.importexport.importWizards">
|
||||||
|
</category>
|
||||||
<wizard
|
<wizard
|
||||||
name="%RemoteFileSystemImportWizard.label"
|
name="%RemoteFileSystemImportWizard.label"
|
||||||
icon="icons/full/etool16/file_import.gif"
|
icon="icons/full/etool16/file_import.gif"
|
||||||
|
category="org.eclipse.rse.importexport.importexportWizards"
|
||||||
class="org.eclipse.rse.internal.importexport.files.RemoteImportWizard"
|
class="org.eclipse.rse.internal.importexport.files.RemoteImportWizard"
|
||||||
id="org.eclipse.rse.files.importexport.fileImportWizard">
|
id="org.eclipse.rse.files.importexport.fileImportWizard">
|
||||||
<description>
|
<description>
|
||||||
|
@ -69,9 +73,13 @@ Takuya Miyamoto - [185925] Integrate Platform/Team Synchronization (adapted from
|
||||||
|
|
||||||
<extension
|
<extension
|
||||||
point="org.eclipse.ui.exportWizards">
|
point="org.eclipse.ui.exportWizards">
|
||||||
|
|
||||||
|
<category name="%newWizardCategoryName" id="org.eclipse.rse.importexport.exportWizards">
|
||||||
|
</category>
|
||||||
<wizard
|
<wizard
|
||||||
name="%RemoteFileSystemExportWizard.label"
|
name="%RemoteFileSystemExportWizard.label"
|
||||||
icon="icons/full/etool16/file_export.gif"
|
icon="icons/full/etool16/file_export.gif"
|
||||||
|
category="org.eclipse.rse.importexport.exportWizards"
|
||||||
class="org.eclipse.rse.internal.importexport.files.RemoteExportWizard"
|
class="org.eclipse.rse.internal.importexport.files.RemoteExportWizard"
|
||||||
id="org.eclipse.rse.files.importexport.fileExportWizard">
|
id="org.eclipse.rse.files.importexport.fileExportWizard">
|
||||||
<description>
|
<description>
|
||||||
|
|
Loading…
Add table
Reference in a new issue