forked from ontologyportal/sigmakee
-
Notifications
You must be signed in to change notification settings - Fork 0
/
web.xml
71 lines (57 loc) · 2.17 KB
/
web.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
<?xml version="1.0" encoding="ISO-8859-1"?>
<!DOCTYPE web-app
PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.2//EN"
"http://java.sun.com/j2ee/dtds/web-app_2_2.dtd">
<web-app>
<context-param>
<param-name>sigmaRoot</param-name>
<param-value>WEB-INF/sigma-rt</param-value>
<description>The local Sigma installation's root directory.</description>
</context-param>
<context-param>
<param-name>configFile</param-name>
<param-value>conf/sigma-config.xml</param-value>
<description>The local Sigma configuration file.</description>
</context-param>
<context-param>
<param-name>kbDefaultDir</param-name>
<param-value>kbs</param-value>
<description>Directory holding pre-load SKB files.</description>
</context-param>
<!-- New Sigma UA parameters below -->
<context-param>
<param-name>sigmaSiteName</param-name>
<param-value>TestSigma</param-value>
<description>Name of this Sigma "site"</description>
</context-param>
<context-param>
<param-name>sigmaBaseDir</param-name>
<param-value>WEB-INF/sigma-rt</param-value>
<description>Default base directory for all Sigma file storage</description>
</context-param>
<context-param>
<param-name>xsbPrefix</param-name>
<param-value>/tmp</param-value>
<description>Prefix added to path names when submitting them to XSB</description>
</context-param>
<context-param>
<param-name>sigmaConfigDir</param-name>
<param-value>conf</param-value>
<description>Default lead directory for all Sigma configuration and settings files</description>
</context-param>
<context-param>
<param-name>sigmaConfigFile</param-name>
<param-value>SigmaConfig.ser</param-value>
<description>Default file for all Sigma configuration and settings</description>
</context-param>
<context-param>
<param-name>sigmaKBSourceDir</param-name>
<param-value>kbs</param-value>
<description>Default lead directory for all Sigma knowledge base source files</description>
</context-param>
<context-param>
<param-name>sigmaKBOutDir</param-name>
<param-value>work</param-value>
<description>Default lead directory for all Sigma knowledge base out files</description>
</context-param>
</web-app>