generated from intersystems-community/objectscript-docker-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
module.xml
executable file
·50 lines (48 loc) · 1.6 KB
/
module.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
<?xml version="1.0" encoding="UTF-8"?>
<Export generator="Cache" version="25">
<Document name="objectscript-package-template.ZPM">
<Module>
<Name>objectscript-package-template</Name>
<Version>1.0.5</Version>
<Packaging>module</Packaging>
<SourcesRoot>src</SourcesRoot>
<Resource Name="community.objectscript.PKG"/>
<Resource Name="community.objectscript.macroexample.INC"/>
<Resource Name="community.objectscript.MacExample.MAC"/>
<Resource Name="community.objectscript.settings.GBL"/>
<SystemSetting Name="CSP.DefaultFileCharset" Value="UTF-8"/>
<Invokes>
<Invoke Class="community.objectscript.PersistentClass" Method="CreateRecord"></Invoke>
<Invoke Class="community.objectscript.ClassExample" Method="SetToTheGlobal">
<Arg>42</Arg>
<Arg>Text Data</Arg>
</Invoke>
</Invokes>
<CSPApplication
Url="/hello"
SourcePath="/src/csp"
DeployPath="{$cspdir}/hello"
ServeFiles="1"
Recurse="1"
CookiePath="/hello"
UseCookies="2"
MatchRoles=":{$dbrole}"
PasswordAuthEnabled="1"
UnauthenticatedEnabled="0"
/>
<CSPApplication
Url="/rest-test"
SourcePath="/src/csp"
Recurse="1"
DeployPath="{$cspdir}/rest-test"
MatchRoles=":{$dbrole}"
PasswordAuthEnabled="1"
UnauthenticatedEnabled="0"
DispatchClass="community.objectscript.RESTExample"
ServeFiles="1"
CookiePath="/rest-test"
UseCookies="2"
/>
</Module>
</Document>
</Export>