-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugin.xml
167 lines (166 loc) · 4.91 KB
/
plugin.xml
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
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
<plugin>
<extension
id="application"
point="org.eclipse.core.runtime.applications">
<application>
<run
class="codeOrchestra.lcs.Application">
</run>
</application>
</extension>
<extension
point="org.eclipse.ui.perspectives">
<perspective
name="LCS Perspective"
class="codeOrchestra.lcs.Perspective"
id="LCS.perspective">
</perspective>
</extension>
<extension
point="org.eclipse.ui.views">
<view
allowMultiple="true"
class="codeOrchestra.lcs.views.SourceSettingsView"
icon="icons/paths.png"
id="LCS.sourcesView"
name="Project Paths"
restorable="true">
</view>
<view
allowMultiple="true"
class="codeOrchestra.lcs.views.LiveCodingSettingsView"
icon="icons/liveResults.png"
id="LCS.liveCodingView"
name="Live Settings"
restorable="true">
</view>
<view
allowMultiple="true"
class="codeOrchestra.lcs.views.CompilerSettingsView"
icon="icons/compiler.png"
id="LCS.compilerView"
name="Compiler Settings"
restorable="true">
</view>
<view
allowMultiple="true"
class="codeOrchestra.lcs.views.MessagesView"
id="LCS.messages"
name="Messages"
restorable="true">
</view>
<view
allowMultiple="true"
class="codeOrchestra.lcs.views.FCSHConsoleView"
icon="icons/console.gif"
id="LCS.fcshConsole"
name="FCSH"
restorable="true">
</view>
<view
allowMultiple="true"
class="codeOrchestra.lcs.views.SessionView"
icon="icons/application.png"
id="LCS.session"
name="Session"
restorable="true">
</view>
</extension>
<extension
point="org.eclipse.ui.commands">
<category
name="LiveCodingConfiguration"
id="LCS.category">
</category>
<command
name="Open Live Coding Project"
description="Opens a Live Coding Project"
categoryId="LCS.category"
id="LCS.open">
</command>
<command
description="Saves current Live Coding Project"
id="LCS.save"
name="Saves current Live Coding Project">
</command>
<command
categoryId="LCS.category"
description="Creates a new Live Coding Project"
id="LCS.newProject"
name="Creates a new Live Coding Project">
</command>
<command
categoryId="LCS.category"
description="Start Live Coding Session"
id="LCS.sessionStart"
name="Start Live Coding Session">
</command>
<command
description="Clear Caches"
id="LCS.clearCaches"
name="Clear Caches">
</command>
<command
description="Browse to Logs Folder"
id="LCS.goToLogsFolder"
name="Browse to Logs Folder">
</command>
<command
description="Run build artifact again"
id="LCS.startPlus"
name="Run again">
</command>
<command
description="Enter Serial Number"
id="LCS.enterSerial"
name="Enter Serial Number">
</command>
<command
description="Closes current Live Coding Project"
id="LCS.close"
name="Closes current Live Coding Project">
</command>
<command
description="Build and Run for Production"
id="LCS.productionBuild"
name="Build and Run for Production">
</command>
</extension>
<extension
point="org.eclipse.ui.bindings">
<scheme
id="COLT.scheme"
name="COLT key scheme">
</scheme>
</extension>
<extension
id="product"
point="org.eclipse.core.runtime.products">
<product
application="code-orchestra-lcs.application"
name="Code Orchestra Livecoding Tool">
<property
name="aboutText"
value="Code Orchestra Live Coding Tool (COLT)">
</property>
<property
name="aboutImage"
value="icons/COLT.png">
</property>
<property
name="appName"
value="Code Orchestra Livecoding Tool">
</property>
<property
name="windowImages"
value="icons/colticon_128.png">
</property>
<property
name="preferenceCustomization"
value="plugin_customization.ini">
</property>
</product>
</extension>
</plugin>