]> git.argeo.org Git - lgpl/argeo-commons.git/blob - server/plugins/org.argeo.jcr.ui.explorer/plugin.xml
Allows to initialize Jackrabbit container in tests
[lgpl/argeo-commons.git] / server / 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.refresh"
47 name="Refresh">
48 </command>
49 <command
50 defaultHandler="org.argeo.eclipse.spring.SpringCommandHandler"
51 id="org.argeo.jcr.ui.explorer.deleteNode"
52 name="Delete node">
53 </command>
54 <command
55 defaultHandler="org.argeo.eclipse.spring.SpringCommandHandler"
56 id="org.argeo.jcr.ui.explorer.importFileSystem"
57 name="Import files...">
58 </command>
59 <!-- TEST -->
60 <command
61 defaultHandler="org.argeo.eclipse.spring.SpringCommandHandler"
62 id="org.argeo.jcr.ui.explorer.openFile"
63 name="Open current file">
64 </command>
65 <!-- TEST END -->
66
67 </extension>
68 <extension point="org.eclipse.ui.menus">
69 <menuContribution
70 locationURI="menu:org.argeo.jcr.ui.explorer.browserView">
71 <command
72 commandId="org.argeo.jcr.ui.explorer.openGenericJcrQueryEditor"
73 icon="icons/query.png"
74 style="push">
75 </command>
76 <command
77 commandId="org.argeo.jcr.ui.explorer.initUserHome"
78 style="push"
79 tooltip="Initializes the user specific area within this node">
80 </command>
81 </menuContribution>
82 <menuContribution
83 locationURI="popup:org.argeo.jcr.ui.explorer.browserView">
84 <command
85 commandId="org.argeo.jcr.ui.explorer.refresh"
86 icon="icons/refresh.png"
87 style="push">
88 </command>
89 <command
90 commandId="org.argeo.jcr.ui.explorer.addFileFolder"
91 icon="icons/add.gif"
92 style="push">
93 </command>
94 <command
95 commandId="org.argeo.jcr.ui.explorer.deleteNode"
96 icon="icons/remove.gif"
97 style="push">
98 </command>
99 <command
100 commandId="org.argeo.jcr.ui.explorer.importFileSystem"
101 icon="icons/import_fs.png"
102 style="push"
103 tooltip="Import files from the files sytem to the repository">
104 </command>
105 </menuContribution>
106 </extension>
107 </plugin>