File: plugin.xml

package info (click to toggle)
eclipse-rse 3.4.2-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 30,728 kB
  • ctags: 38,508
  • sloc: java: 247,535; xml: 7,271; perl: 294; sh: 50; makefile: 12
file content (259 lines) | stat: -rw-r--r-- 10,912 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
<?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright (c) 2002, 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 http://www.eclipse.org/legal/epl-v10.html

Initial Contributors:
The following IBM employees contributed to the Remote System Explorer
component that contains this file: David McKnight, Kushal Munir, 
Michael Berger, David Dykstal, Phil Coulthard, Don Yantzi, Eric Simpson, 
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"?>
<plugin>
   
<!-- ========================================================================= -->
<!-- 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.importWizards"
            class="org.eclipse.rse.internal.importexport.files.RemoteImportWizard"
            id="org.eclipse.rse.files.importexport.fileImportWizard">
         <description>
            %RemoteFileSystemImportWizard.description
         </description>
         <selection
               class="org.eclipse.core.resources.IResource">
         </selection>
      </wizard>
   </extension>
   
   <extension
         point="org.eclipse.ui.popupMenus">
      <objectContribution
            objectClass="org.eclipse.core.resources.IResource"
            nameFilter="*.rimpfd"
            id="org.eclipse.rse.files.importexport.runFileImport">
         <action
               label="%RemoteFileImportAction.label"
               tooltip="%RemoteFileImportAction.tooltip"
               class="org.eclipse.rse.internal.importexport.files.RemoteFileImportActionDelegate"
               menubarPath="additions"
               enablesFor="+"
               id="importRemoteFiles">
         </action>
      </objectContribution>
      <objectContribution
            objectClass="org.eclipse.core.resources.IResource"
            nameFilter="*.rimpfd"
            id="org.eclipse.rse.files.importexport.openFileImport">
         <action
               label="%OpenRemoteFileImport.label"
               tooltip="%OpenRemoteFileImport.tooltip"
               class="org.eclipse.rse.internal.importexport.files.RemoteFileOpenImportWizardActionDelegate"
               menubarPath="additions"
               enablesFor="1"
               id="openRemoteFileImport">
         </action>
      </objectContribution>
   </extension>
   
   <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>
            %RemoteFileSystemExportWizard.description
         </description>
         <selection
               class="org.eclipse.core.resources.IResource">
         </selection>
      </wizard>
   </extension>
   
   <extension
         point="org.eclipse.ui.popupMenus">
      <objectContribution
            objectClass="org.eclipse.core.resources.IResource"
            nameFilter="*.rexpfd"
            id="org.eclipse.rse.files.importexport.runFileExport">
         <action
               label="%RemoteFileExportAction.label"
               tooltip="%RemoteFileExportAction.tooltip"
               class="org.eclipse.rse.internal.importexport.files.RemoteFileExportActionDelegate"
               menubarPath="additions"
               enablesFor="+"
               id="exportRemoteFiles">
         </action>
      </objectContribution>
      <objectContribution
            objectClass="org.eclipse.core.resources.IResource"
            nameFilter="*.rexpfd"
            id="org.eclipse.rse.files.importexport.openFileExport">
         <action
               label="%OpenRemoteFileExport.label"
               tooltip="%OpenRemoteFileExport.tooltip"
               class="org.eclipse.rse.internal.importexport.files.RemoteFileOpenExportWizardActionDelegate"
               menubarPath="additions"
               enablesFor="1"
               id="openRemoteFileExport">
         </action>
      </objectContribution>
   </extension>
   
   <extension
         point="org.eclipse.ui.popupMenus">
      <objectContribution
            objectClass="org.eclipse.rse.subsystems.files.core.subsystems.IRemoteFile"   
            id="org.eclipse.rse.files.importexport.projectImportExport"> 
            <filter name="isDirectory" value="true"/>                            
         
         <action
               label="%ImportToProject.label" 
               tooltip="%ImportToProject.tooltip"
               class="org.eclipse.rse.internal.importexport.files.RemoteFileImportToProjectActionDelegate"
               menubarPath="group.importexport"
               enablesFor="1"                              
               id="importToProject">
               <enablement>
                <objectState name="offline" value="false"/>
               </enablement>
         </action>
         
         <action
               label="%ExportFromProject.label"
               tooltip="%ExportFromProject.tooltip"
               class="org.eclipse.rse.internal.importexport.files.RemoteFileExportFromProjectActionDelegate"
               menubarPath="group.importexport"
               enablesFor="1"
               id="exportFromProject">
               <enablement>
                <objectState name="offline" value="false"/>
               </enablement>
         </action>
      </objectContribution>
   </extension>

	<!-- ======================================= -->
	<!-- Synchronize Popup Menu Actions        -->
	<!-- ======================================= -->
<!--	<extension point="org.eclipse.ui.popupMenus">
	      <objectContribution
            objectClass="org.eclipse.rse.subsystems.files.core.subsystems.IRemoteFile"
            nameFilter="*.rexpfd"
            id="org.rse.synchronize.runResynchronization">
         <action
               label="ReSynchronize with"
               tooltip="Rerun synchronization which is alreay mapped to remote"
               class="org.eclipse.rse.internal.synchronize.ResynchronizeActionDelegate"
               menubarPath="additions"
               enablesFor="1"
               id="resynchronize">
         </action>
      </objectContribution>
	</extension>
	<extension point="org.eclipse.ui.popupMenus">
	      <objectContribution
            objectClass="org.eclipse.rse.subsystems.files.core.subsystems.IRemoteFile"
            nameFilter="*.rimpfd"
            id="org.rse.synchronize.runResynchronization">
         <action
               label="ReSynchronize with"
               tooltip="Rerun synchronization which is alreay mapped to remote"
               class="org.eclipse.rse.internal.synchronize.ResynchronizeActionDelegate"
               menubarPath="additions"
               enablesFor="1"
               id="resynchronize">
         </action>
      </objectContribution>
	</extension>-->
<!-- =================================================================================== -->
<!-- Repository Providers																 -->
<!-- =================================================================================== -->

<extension point="org.eclipse.team.core.repository">
	<repository
    	class="org.eclipse.rse.internal.synchronize.filesystem.FileSystemProvider"
		id="org.eclipse.rse.internal.synchronize.filesystem.FileSystemProvider">
	</repository>
</extension>

<!-- =================================================================================== -->
<!-- Synchronize Participants -->
<!-- =================================================================================== -->

 <extension
       point="org.eclipse.team.ui.synchronizeParticipants">
    <participant
          persistent="false"
          class="org.eclipse.rse.internal.synchronize.filesystem.ui.FileSystemSynchronizeParticipant"
          icon="icons/full/wizards/fsicon_wiz.gif"
          name="%RSESyncParticipant.name"
          id="org.eclipse.rse.internal.synchronize.filesystem.participant"/>
 </extension>

<!-- =================================================================================== -->
<!-- Common Navigator viewer for the file systen synchronizations						 -->
<!-- =================================================================================== -->
   <extension
         point="org.eclipse.ui.navigator.viewer">
       <viewer
           viewerId="org.eclipse.rse.internal.synchronize.filesystem.syncViewer">
           <popupMenu
                allowsPlatformContributions="false"
                id="org.eclipse.rse.synchronize.filesystem.syncViewer#PopupMenu">  
             <insertionPoint name="file"/>  
             <insertionPoint name="edit"/>          
             <insertionPoint name="synchronize"/>
             <insertionPoint
                   name="navigate"
                   separator="true"/>
             <insertionPoint
                   name="merge"
                   separator="true"/>
             <insertionPoint
                   name="put"
                   separator="false"/>
             <insertionPoint
                   name="get"
                   separator="false"/>      
             <insertionPoint
                   name="overwrite"
                   separator="true"/> 
             <insertionPoint
                   name="other"
                   separator="true"/> 
             <insertionPoint
                   name="sort"
                   separator="true"/>
             <insertionPoint
                   name="additions"
                   separator="true"/>              
             <insertionPoint
                   name="properties"
                   separator="true"/>
          </popupMenu>
       </viewer>
   </extension>
   
</plugin>