mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-03 07:05:24 +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
|
||||
# Martin Oberhuber (Wind River) - add providerName
|
||||
# Takuya Miyamoto - [185925] Integrate Platform/Team Synchronization
|
||||
# David McKnight (IBM) - [272708] [import/export] fix various bugs with the synchronization support
|
||||
###############################################################################
|
||||
|
||||
# NLS_MESSAGEFORMAT_NONE
|
||||
|
@ -19,6 +20,8 @@ pluginName = RSE Import/Export
|
|||
providerName = Eclipse.org
|
||||
|
||||
# Remote file import and export wizards
|
||||
newWizardCategoryName = Remote Systems
|
||||
|
||||
RemoteFileSystemExportWizard.label = Remote file system
|
||||
RemoteFileSystemExportWizard.description = Export resources to a remote file system
|
||||
RemoteFileSystemImportWizard.label = Remote file system
|
||||
|
|
|
@ -14,6 +14,7 @@ Emily Bruner, Mazen Faraj, Adrian Storisteanu, Li Ding, and Kent Hawley.
|
|||
Contributors:
|
||||
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)
|
||||
David McKnight (IBM) - [272708] [import/export] fix various bugs with the synchronization support
|
||||
-->
|
||||
|
||||
<?eclipse version="3.0"?>
|
||||
|
@ -23,9 +24,12 @@ Takuya Miyamoto - [185925] Integrate Platform/Team Synchronization (adapted from
|
|||
<!-- Remote File System import and export wizards. -->
|
||||
<!-- ========================================================================= -->
|
||||
<extension point="org.eclipse.ui.importWizards">
|
||||
<category name="%newWizardCategoryName" id="org.eclipse.rse.importexport.importWizards">
|
||||
</category>
|
||||
<wizard
|
||||
name="%RemoteFileSystemImportWizard.label"
|
||||
icon="icons/full/etool16/file_import.gif"
|
||||
category="org.eclipse.rse.importexport.importexportWizards"
|
||||
class="org.eclipse.rse.internal.importexport.files.RemoteImportWizard"
|
||||
id="org.eclipse.rse.files.importexport.fileImportWizard">
|
||||
<description>
|
||||
|
@ -69,9 +73,13 @@ Takuya Miyamoto - [185925] Integrate Platform/Team Synchronization (adapted from
|
|||
|
||||
<extension
|
||||
point="org.eclipse.ui.exportWizards">
|
||||
|
||||
<category name="%newWizardCategoryName" id="org.eclipse.rse.importexport.exportWizards">
|
||||
</category>
|
||||
<wizard
|
||||
name="%RemoteFileSystemExportWizard.label"
|
||||
icon="icons/full/etool16/file_export.gif"
|
||||
category="org.eclipse.rse.importexport.exportWizards"
|
||||
class="org.eclipse.rse.internal.importexport.files.RemoteExportWizard"
|
||||
id="org.eclipse.rse.files.importexport.fileExportWizard">
|
||||
<description>
|
||||
|
|
Loading…
Add table
Reference in a new issue