]> git.argeo.org Git - lgpl/argeo-commons.git/blob - eclipse/plugins/org.argeo.jcr.ui.explorer/plugin.xml
Improve JCR remote
[lgpl/argeo-commons.git] / eclipse / plugins / org.argeo.jcr.ui.explorer / plugin.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <?eclipse version="3.4"?>
3 <plugin>
4 <extension
5 point="org.eclipse.ui.perspectives">
6 <perspective
7 class="org.argeo.eclipse.ui.jcr.explorer.JcrExplorerPerspective"
8 icon="icons/nodes.gif"
9 id="org.argeo.jcr.ui.explorer.perspective"
10 name="JCR Explorer">
11 </perspective>
12 </extension>
13 <extension
14 point="org.eclipse.ui.views">
15 <view
16 class="org.argeo.eclipse.spring.SpringExtensionFactory"
17 icon="icons/browser.gif"
18 id="org.argeo.jcr.ui.explorer.browserView"
19 name="JCR Browser">
20 </view>
21 </extension>
22 <extension
23 point="org.eclipse.ui.editors">
24 <editor
25 class="org.argeo.eclipse.spring.SpringExtensionFactory"
26 id="org.argeo.jcr.ui.explorer.genericJcrQueryEditor"
27 name="JCR Query"
28 icon="icons/query.png"
29 default="false">
30 </editor>
31 </extension>
32 <extension
33 point="org.eclipse.ui.commands">
34 <command
35 defaultHandler="org.argeo.eclipse.spring.SpringCommandHandler"
36 id="org.argeo.jcr.ui.explorer.openGenericJcrQueryEditor"
37 name="New generic JCR query">
38 </command>
39 <command
40 defaultHandler="org.argeo.eclipse.spring.SpringCommandHandler"
41 id="org.argeo.jcr.ui.explorer.addFileFolder"
42 name="Add file folder...">
43 </command>
44 <command
45 defaultHandler="org.argeo.eclipse.spring.SpringCommandHandler"
46 id="org.argeo.jcr.ui.explorer.initUserHome"
47 name="Initialize user home">
48 </command>
49 <command
50 defaultHandler="org.argeo.eclipse.spring.SpringCommandHandler"
51 id="org.argeo.jcr.ui.explorer.refresh"
52 name="Refresh">
53 </command>
54 <command
55 defaultHandler="org.argeo.eclipse.spring.SpringCommandHandler"
56 id="org.argeo.jcr.ui.explorer.deleteNode"
57 name="Delete node">
58 </command>
59 <command
60 defaultHandler="org.argeo.eclipse.spring.SpringCommandHandler"
61 id="org.argeo.jcr.ui.explorer.importFileSystem"
62 name="Import files...">
63 </command>
64 </extension>
65 <extension point="org.eclipse.ui.menus">
66 <menuContribution
67 allPopups="false"
68 locationURI="menu:org.argeo.jcr.ui.explorer.browserView">
69 <command
70 commandId="org.argeo.jcr.ui.explorer.openGenericJcrQueryEditor"
71 icon="icons/query.png"
72 style="push">
73 </command>
74 <command
75 commandId="org.argeo.jcr.ui.explorer.initUserHome"
76 style="push"
77 tooltip="Initializes the user specific area within this node">
78 </command>
79 </menuContribution>
80 <menuContribution
81 allPopups="false"
82 locationURI="popup:org.argeo.jcr.ui.explorer.browserView">
83 <command
84 commandId="org.argeo.jcr.ui.explorer.refresh"
85 icon="icons/refresh.png"
86 style="push">
87 </command>
88 <command
89 commandId="org.argeo.jcr.ui.explorer.addFileFolder"
90 icon="icons/add.gif"
91 style="push">
92 </command>
93 <command
94 commandId="org.argeo.jcr.ui.explorer.deleteNode"
95 icon="icons/remove.gif"
96 style="push">
97 </command>
98 <command
99 commandId="org.argeo.jcr.ui.explorer.importFileSystem"
100 icon="icons/import_fs.png"
101 style="push"
102 tooltip="Import files from the files sytem to the repository">
103 </command>
104 </menuContribution>
105 </extension>
106 </plugin>