]> git.argeo.org Git - gpl/argeo-slc.git/blob - eclipse/plugins/org.argeo.slc.client.ui/plugin.xml
Add Spring Security JSP tags as a dependency
[gpl/argeo-slc.git] / eclipse / plugins / org.argeo.slc.client.ui / plugin.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <?eclipse version="3.4"?>
3 <plugin>
4
5
6 <extension
7 point="org.eclipse.ui.views">
8 <view
9 id="org.argeo.slc.client.ui.executionModulesView"
10 class="org.argeo.eclipse.spring.SpringExtensionFactory"
11 name="Execution Modules"
12 restorable="true">
13 </view>
14 <view
15 id="org.argeo.slc.client.ui.resultListView"
16 class="org.argeo.eclipse.spring.SpringExtensionFactory"
17 name="Results"
18 restorable="true">
19 </view>
20 <view
21 id="org.argeo.slc.client.ui.resultDetailView"
22 class="org.argeo.eclipse.spring.SpringExtensionFactory"
23 name="Result Detail"
24 allowMultiple="true"
25 restorable="true">
26 </view>
27 <view
28 id="org.argeo.slc.client.ui.processListView"
29 class="org.argeo.eclipse.spring.SpringExtensionFactory"
30 name="Process List"
31 restorable="true">
32 </view>
33 <view
34 id="org.argeo.slc.client.ui.processDetailView"
35 class="org.argeo.eclipse.spring.SpringExtensionFactory"
36 name="Process Details"
37 allowMultiple="true"
38 restorable="true">
39 </view>
40 <view
41 id="org.argeo.slc.client.ui.processParametersView"
42 class="org.argeo.eclipse.spring.SpringExtensionFactory"
43 name="Process Parameters"
44 restorable="true">
45 </view>
46 <view
47 id="org.argeo.slc.client.ui.processBuilderView"
48 class="org.argeo.eclipse.spring.SpringExtensionFactory"
49 name="Process Builder"
50 restorable="true">
51 </view>
52 </extension>
53
54 <extension
55 point="org.eclipse.ui.commands">
56 <command
57 defaultHandler="org.argeo.eclipse.spring.SpringCommandHandler"
58 id="org.argeo.slc.client.ui.refreshResultList"
59 name="RefreshResultList">
60 </command>
61 <command
62 defaultHandler="org.argeo.eclipse.spring.SpringCommandHandler"
63 id="org.argeo.slc.client.ui.launchBatch"
64 name="LaunchBatch">
65 </command>
66 <command
67 defaultHandler="org.argeo.eclipse.spring.SpringCommandHandler"
68 id="org.argeo.slc.client.ui.removeSelectedFromBatch"
69 name="RemoveSelectedFromBatch">
70 </command>
71 <command
72 defaultHandler="org.argeo.eclipse.spring.SpringCommandHandler"
73 id="org.argeo.slc.client.ui.clearBatch"
74 name="ClearBatch">
75 </command>
76 <command
77 defaultHandler="org.argeo.eclipse.spring.SpringCommandHandler"
78 id="org.argeo.slc.client.ui.refreshProcessList"
79 name="RefreshProcessList ">
80 </command>
81 <command
82 defaultHandler="org.argeo.eclipse.spring.SpringCommandHandler"
83 id="org.argeo.slc.client.ui.displayProcessDetails"
84 name="DisplayProcessDetails">
85 <commandParameter
86 id="org.argeo.slc.client.commands.processUuid"
87 name="Process UUID">
88 </commandParameter>
89 </command>
90 <command
91 defaultHandler="org.argeo.eclipse.spring.SpringCommandHandler"
92 id="org.argeo.slc.client.ui.displayResultDetails"
93 name="DisplayResultDetails">
94 <commandParameter
95 id="org.argeo.slc.client.commands.resultUuid"
96 name="Result UUID">
97 </commandParameter>
98 </command>
99 <command
100 defaultHandler="org.argeo.eclipse.spring.SpringCommandHandler"
101 id="org.argeo.slc.client.ui.editRealizedFlowDetails"
102 name="EditRealizedFlowDetails">
103 <commandParameter
104 id="org.argeo.slc.client.commands.realizedFlowAsXml"
105 name="RealizedFlowAsXml">
106 </commandParameter>
107 <commandParameter
108 id="org.argeo.slc.client.commands.realizedFlowIndex"
109 name="realizedFlowIndex">
110 </commandParameter>
111 </command>
112 </extension>
113 <extension
114 point="org.eclipse.ui.bindings">
115 <key
116 commandId="org.argeo.slc.client.ui.refreshResultList"
117 schemeId="org.eclipse.ui.defaultAcceleratorConfiguration"
118 sequence="CTRL+R">
119 </key>
120 </extension>
121
122 <extension
123 id="menu:org.eclipse.ui.main.menu"
124 point="org.eclipse.ui.menus">
125 <menuContribution
126 locationURI="menu:org.eclipse.ui.main.menu?after=fileMenu">
127 <menu
128 id="slcMenu"
129 label="SLC">
130 <command
131 commandId="org.argeo.slc.client.ui.refreshResultList"
132 label="Refresh"
133 style="push"
134 tooltip="Refresh the result list">
135 </command>
136 </menu>
137 </menuContribution>
138 <menuContribution
139 locationURI="toolbar:org.eclipse.ui.main.toolbar">
140 <toolbar
141 id="org.argeo.slc.client.ui.ResultViewToolbar">
142 <command
143 commandId="org.argeo.slc.client.ui.refreshResultList"
144 icon="icons/refresh.png"
145 label="Refresh"
146 style="toggle"
147 tooltip="Refresh the result list">
148 </command>
149 <separator
150 name="resultListViewGroup">
151 </separator>
152 </toolbar>
153 </menuContribution>
154 <menuContribution
155 locationURI="toolbar:org.argeo.slc.client.ui.processBuilderView">
156 <command
157 commandId="org.argeo.slc.client.ui.launchBatch"
158 label="Launch Batch"
159 tooltip="Launch the batch built in the process builder view.">
160 </command>
161 <command
162 commandId="org.argeo.slc.client.ui.clearBatch"
163 label="Clear Batch"
164 tooltip="Clear the batch built in the process builder view.">
165 </command>
166 <command
167 commandId="org.argeo.slc.client.ui.removeSelectedFromBatch"
168 label="Remove Selected From Batch"
169 tooltip="Remove selected process from process builder view.">
170 </command>
171 </menuContribution>
172 </extension>
173 </plugin>