Project

General

Profile

1
<?xml version="1.0"?>
2

    
3
<metadataConfig>
4
	<group>
5
		<index>1</index>
6
		<name>Database</name>
7
		<description>Database Configuration Values.</description>
8
	</group>
9
	<group>
10
		<index>2</index>
11
		<name>Server Configuration</name>
12
		<description>Server Configuration Values.</description>
13
	</group>
14
	<group>
15
		<index>3</index>
16
		<name>Application Configuration</name>
17
		<description>Application Configuration Values.</description>
18
	</group>
19

    
20
	<config>
21
		<key>database.user</key>
22
		<label>Database Username</label>
23
		<group>1</group>
24
		<index>1</index>
25
		<description>
26
			Name of database user to own all tables.
27
		</description>
28
	</config>
29

    
30
	<config>
31
		<key>database.password</key>
32
		<label>Database Password</label>
33
		<group>1</group>
34
		<fieldType>password</fieldType>
35
		<index>2</index>
36
		<description>Password for database user.</description>
37
	</config>
38

    
39
	<config>
40
		<key>database.type</key>
41
		<label>Database Type</label>
42
		<group>1</group>
43
		<fieldType>select</fieldType>
44
		<option>
45
			<name>PostgreSQL</name>
46
		</option>
47
		<option>
48
			<name>Oracle</name>
49
		</option>
50
		<option>
51
			<name>SQL Server</name>
52
		</option>
53
		<index>3</index>
54
		<description>What kind of database is running.</description>
55
	</config>
56

    
57
	<config>
58
		<key>database.driver</key>
59
		<label>Database Driver</label>
60
		<group>1</group>
61
		<fieldType>select</fieldType>
62
		<option>
63
			<name>org.postgresql.Driver</name>
64
		</option>
65
		<option>
66
			<name>oracle.jdbc.driver.OracleDriver</name>
67
		</option>
68
		<option>
69
			<name>com.microsoft.jdbc.sqlserver.SQLServerDriver</name>
70
		</option>
71
		<index>4</index>
72
		<description>
73
			Which driver is required. This should conform to your
74
			database type.
75
		</description>
76
	</config>
77

    
78
	<config>
79
		<key>database.adapter</key>
80
		<label>Database Adapter</label>
81
		<group>1</group>
82
		<fieldType>select</fieldType>
83
		<option>
84
			<name>edu.ucsb.nceas.dbadapter.PostgresqlAdapter</name>
85
		</option>
86
		<option>
87
			<name>edu.ucsb.nceas.dbadapter.OracleAdapter</name>
88
		</option>
89
		<option>
90
			<name>edu.ucsb.nceas.dbadapter.SqlserverAdapter</name>
91
		</option>
92
		<index>5</index>
93
		<description>
94
			Which adapter is required. This should conform to your
95
			database type.
96
		</description>
97
	</config>
98

    
99
	<config>
100
		<key>database.connectionURI</key>
101
		<label>JDBC Connection String</label>
102
		<group>1</group>
103
		<index>6</index>
104
		<description>Database connection string.</description>
105
	</config>
106

    
107
	<config>
108
		<key>server.name</key>
109
		<label>Server Name</label>
110
		<group>2</group>
111
		<index>1</index>
112
		<description>
113
			Name of the server where Metacat will be available.
114
		</description>
115
	</config>
116

    
117
	<config>
118
		<key>server.httpPort</key>
119
		<label>HTTP Port</label>
120
		<group>2</group>
121
		<index>2</index>
122
		<description>
123
			Non secure port where Metacat will be available.
124
		</description>
125
	</config>
126

    
127
	<config>
128
		<key>server.httpSSLPort</key>
129
		<label>HTTP SSL Port</label>
130
		<group>2</group>
131
		<index>3</index>
132
		<description>
133
			Secure port where Metacat will be available.
134
		</description>
135
	</config>
136

    
137
	<config>
138
		<key>application.tomcatDir</key>
139
		<label>Tomcat Location</label>
140
		<group>3</group>
141
		<index>1</index>
142
		<description>
143
			The directory where Tomcat is deployed.
144
		</description>
145
	</config>
146

    
147
	<config>
148
		<key>application.context</key>
149
		<label>Metacat Context</label>
150
		<group>3</group>
151
		<index>2</index>
152
		<description>
153
			Name of the context under which Metacat will run. This is
154
			the directory in which the Metacat war file is deployed.
155
		</description>
156
	</config>
157

    
158
	<config>
159
		<key>application.default-style</key>
160
		<label>Application Style</label>
161
		<group>3</group>
162
		<index>3</index>
163
		<description>
164
			Custom display style for Metacat. Use default if there is no
165
			custom style.
166
		</description>
167
	</config>
168

    
169
	<config>
170
		<key>application.knbSiteURL</key>
171
		<label>KNB Site URL</label>
172
		<group>3</group>
173
		<index>4</index>
174
		<description>
175
			Location of KNB website. Usually left as
176
			http://knb.ecoinformatics.org
177
		</description>
178
	</config>
179

    
180
	<config>
181
		<key>application.datafilepath</key>
182
		<label>Data File Path</label>
183
		<group>3</group>
184
		<index>5</index>
185
		<description>
186
			Where to store data. This should be some location outside
187
			the knb install direcories.
188
		</description>
189
	</config>
190

    
191
	<config>
192
		<key>application.inlinedatafilepath</key>
193
		<label>Inline Data File Path</label>
194
		<group>3</group>
195
		<index>6</index>
196
		<description>
197
			Where to store inline data. This should be some location
198
			outside the knb install direcories.
199
		</description>
200
	</config>
201

    
202
	<!--  
203
		<config>
204
		<key>application.cgiDir</key>
205
		<label>Relative CGI Directory</label>
206
		<group>Application Configuration</group>
207
		<index>7</index>
208
		<description>Relative path to the CGI bin directory.  For instance /cgi-bin.</description>
209
		</config>
210
		
211
		<config>
212
		<key>application.eml-version</key>
213
		<label>EML Version</label>
214
		<group>Application Configuration</group>
215
		<index>8</index>
216
		<description>Which version of EML is in use.</description>
217
		</config>
218
	-->
219

    
220
</metadataConfig>
(15-15/26)