root / tmp / org.txm.oriflamms.rcp / plugin.xml @ 476
History | View | Annotate | Download (4.7 kB)
1 |
<?xml version="1.0" encoding="UTF-8"?>
|
---|---|
2 |
<?eclipse version="3.4"?>
|
3 |
<plugin>
|
4 |
|
5 |
<extension
|
6 |
point="org.eclipse.ui.commands"> |
7 |
<category
|
8 |
name="Oriflamms" |
9 |
id="Oriflamms.commands.category"> |
10 |
</category>
|
11 |
<command
|
12 |
name="AbbreviationsAndLines" |
13 |
categoryId="Oriflamms.commands.category" |
14 |
id="Oriflamms.commands.AbbreviationsAndLines"> |
15 |
</command>
|
16 |
<command
|
17 |
categoryId="Oriflamms.commands.category" |
18 |
id="Oriflamms.commands.AbbreviationsAndSemantics" |
19 |
name="AbbreviationsAndSemantics"> |
20 |
</command>
|
21 |
<command
|
22 |
categoryId="Oriflamms.commands.category" |
23 |
id="Oriflamms.commands.Allographes" |
24 |
name="Allographes"> |
25 |
</command>
|
26 |
<command
|
27 |
categoryId="Oriflamms.commands.category" |
28 |
id="Oriflamms.commands.Project2XTZ" |
29 |
name="Project2XTZ"> |
30 |
</command>
|
31 |
<command
|
32 |
categoryId="Oriflamms.commands.category" |
33 |
id="Oriflamms.commands.TEI2Project" |
34 |
name="TEI2Project"> |
35 |
</command>
|
36 |
<command
|
37 |
categoryId="Oriflamms.commands.category" |
38 |
id="Oriflamms.commands.UpdateCorpusImages" |
39 |
name="UpdateImagePaths"> |
40 |
</command>
|
41 |
</extension>
|
42 |
<extension
|
43 |
point="org.eclipse.ui.handlers"> |
44 |
<handler
|
45 |
commandId="Oriflamms.commands.AbbreviationsAndLines" |
46 |
class="org.txm.oriflamms.commands.ComputeAbbreviationsAndLines"> |
47 |
</handler>
|
48 |
<handler
|
49 |
class="org.txm.oriflamms.commands.ComputeAbbreviationsAndSemantics" |
50 |
commandId="Oriflamms.commands.AbbreviationsAndSemantics"> |
51 |
</handler>
|
52 |
<handler
|
53 |
class="org.txm.oriflamms.commands.ComputeAllographs" |
54 |
commandId="Oriflamms.commands.Allographes"> |
55 |
</handler>
|
56 |
<handler
|
57 |
class="org.txm.oriflamms.commands.ComputeProject2XTZ" |
58 |
commandId="Oriflamms.commands.Project2XTZ"> |
59 |
</handler>
|
60 |
<handler
|
61 |
class="org.txm.oriflamms.commands.ComputeTEI2Project" |
62 |
commandId="Oriflamms.commands.TEI2Project"> |
63 |
</handler>
|
64 |
<handler
|
65 |
class="org.txm.oriflamms.commands.ComputeCorpusImagePath" |
66 |
commandId="Oriflamms.commands.UpdateCorpusImages"> |
67 |
</handler>
|
68 |
</extension>
|
69 |
<extension
|
70 |
point="org.eclipse.ui.menus"> |
71 |
<menuContribution
|
72 |
locationURI="menu:org.eclipse.ui.main.menu?after=menu.tools"> |
73 |
<menu
|
74 |
label="Oriflamms" |
75 |
mnemonic="O" |
76 |
id="Oriflamms.menus.sampleMenu"> |
77 |
<command
|
78 |
commandId="Oriflamms.commands.TEI2Project" |
79 |
label="TEI2Project" |
80 |
mnemonic="P"> |
81 |
</command>
|
82 |
<command
|
83 |
commandId="Oriflamms.commands.Project2XTZ" |
84 |
label="Project2XTZ" |
85 |
mnemonic="X"> |
86 |
</command>
|
87 |
<command
|
88 |
commandId="Oriflamms.commands.UpdateCorpusImages" |
89 |
label="UpdateCorpusImagePaths" |
90 |
mnemonic="U"> |
91 |
<visibleWhen
|
92 |
checkEnabled="false"> |
93 |
<reference
|
94 |
definitionId="OneMainCorpusSelected"> |
95 |
</reference>
|
96 |
</visibleWhen>
|
97 |
</command>
|
98 |
<separator
|
99 |
name="Oriflamms.separator1" |
100 |
visible="true"> |
101 |
</separator>
|
102 |
<command
|
103 |
commandId="Oriflamms.commands.AbbreviationsAndLines" |
104 |
label="AbbreviationsAndLines" |
105 |
mnemonic="L"> |
106 |
<visibleWhen
|
107 |
checkEnabled="false"> |
108 |
<reference
|
109 |
definitionId="OneCorpusSelected"> |
110 |
</reference>
|
111 |
</visibleWhen>
|
112 |
</command>
|
113 |
<command
|
114 |
commandId="Oriflamms.commands.AbbreviationsAndSemantics" |
115 |
label="AbbreviationsAndSemantics" |
116 |
mnemonic="S"> |
117 |
<visibleWhen
|
118 |
checkEnabled="false"> |
119 |
<reference
|
120 |
definitionId="OneCorpusSelected"> |
121 |
</reference>
|
122 |
</visibleWhen>
|
123 |
</command>
|
124 |
<command
|
125 |
commandId="Oriflamms.commands.Allographes" |
126 |
label="Allographes" |
127 |
mnemonic="A"> |
128 |
<visibleWhen
|
129 |
checkEnabled="false"> |
130 |
<reference
|
131 |
definitionId="OneCorpusSelected"> |
132 |
</reference>
|
133 |
</visibleWhen>
|
134 |
</command>
|
135 |
</menu>
|
136 |
</menuContribution>
|
137 |
</extension>
|
138 |
|
139 |
</plugin>
|