-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmanifest.xml
80 lines (80 loc) · 2.95 KB
/
manifest.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
<?xml version='1.0' encoding='UTF-8'?>
<ExtensionManifest
ExtensionBundleId="com.atomic.cep-boilerplate"
ExtensionBundleVersion="1.0.0"
Version="7.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<ExtensionList>
<Extension Id="com.atomic.cep-boilerplate.panel" Version="1.0.0" />
<Extension Id="com.atomic.cep-boilerplate.server" Version="1.0.0" />
</ExtensionList>
<ExecutionEnvironment>
<HostList>
<!--
<Host Name="AEFT" Version="[13.0,17.9]" Port="8093" />
<Host Name="AEFX" Version="[13.0,17.9]" Port="8093" />
-->
<Host Name="ILST" Version="[19.0,99.9]" />
</HostList>
<LocaleList>
<Locale Code="All" />
</LocaleList>
<RequiredRuntimeList>
<RequiredRuntime Name="CSXS" Version="9.0" />
</RequiredRuntimeList>
</ExecutionEnvironment>
<DispatchInfoList>
<Extension Id="com.atomic.cep-boilerplate.panel">
<DispatchInfo>
<Resources>
<MainPath>./client/index.html</MainPath>
<ScriptPath>./host/Host.jsx</ScriptPath>
<CEFCommandLine>
<Parameter>--enable-nodejs</Parameter>
<Parameter>--mixed-context</Parameter>
</CEFCommandLine>
</Resources>
<Lifecycle>
<AutoVisible>true</AutoVisible>
</Lifecycle>
<UI>
<Type>Panel</Type>
<Menu>Boilerplate</Menu>
<Geometry>
<Size>
<Height>250</Height>
<Width>350</Width>
</Size>
<MaxSize>
<Height>250</Height>
<Width>350</Width>
</MaxSize>
<MinSize>
<Height>250</Height>
<Width>350</Width>
</MinSize>
</Geometry>
<Icons />
</UI>
</DispatchInfo>
</Extension>
<Extension Id="com.atomic.cep-boilerplate.server">
<DispatchInfo>
<Resources>
<MainPath>./client/server.html</MainPath>
<CEFCommandLine>
<Parameter>--enable-nodejs</Parameter>
<Parameter>--mixed-context</Parameter>
</CEFCommandLine>
</Resources>
<Lifecycle>
<AutoVisible>false</AutoVisible>
</Lifecycle>
<UI>
<Type>Custom</Type>
<Icons />
</UI>
</DispatchInfo>
</Extension>
</DispatchInfoList>
</ExtensionManifest>