Project

General

Profile

1
<%@ taglib uri="/tags/struts-bean" prefix="bean" %>
2
<%@ taglib uri="/tags/struts-html" prefix="html" %>
3
<%@ taglib uri="/tags/struts-logic" prefix="logic" %>
4

    
5
<table border=0 width=100%>
6
	<html:form action="/config/wfs/contentSubmit">
7
	
8
	<tr><td align="right">
9
		<span class="help" title="<bean:message key="help.enabled"/>">
10
			<bean:message key="label.enabled"/>:
11
		</span>
12
	</td><td colspan=2>
13
		<html:checkbox property="enabled"/>
14
	</td></tr>
15
	<tr><td align="right">
16
		<span class="help" title="<bean:message key="help.srsXmlStyle"/>">
17
			<bean:message key="label.srsXmlStyle"/>:
18
		</span>
19
	</td><td colspan=2>
20
		<html:checkbox property="srsXmlStyle"/>
21
	</td></tr>
22
	
23

    
24
	<tr><td align="right">
25
		<span class="help" title="<bean:message key="help.citeConformanceHacks"/>">
26
			<bean:message key="label.citeConformanceHacks"/>:
27
		</span>
28
	</td><td colspan=2>
29
		<html:checkbox property="citeConformanceHacks"/>
30
	</td></tr>
31
	
32

    
33
	<tr><td align="right">
34
		<span class="help" title="<bean:message key="help.featureBounding"/>">
35
			<bean:message key="label.featureBounding"/>:
36
		</span>
37
	</td><td colspan=2>
38
		<html:checkbox property="featureBounding"/>
39
	</td></tr>
40

    
41
	
42
	<tr><td align="right">
43
		<span class="help" title="<bean:message key="help.serviceLevel"/>">
44
			<bean:message key="label.serviceLevel"/>:
45
		</span>
46
	</td><td colspan=2>
47
		<html:select property="serviceLevel" size="2">
48
			<html:option key="label.serviceLevel.basic" value="<%= java.lang.Integer.toString(org.vfny.geoserver.global.dto.WFSDTO.BASIC) %>"/>
49
			<html:option key="label.serviceLevel.transactional" value="<%= java.lang.Integer.toString(org.vfny.geoserver.global.dto.WFSDTO.TRANSACTIONAL) %>"/>
50
			<html:option key="label.serviceLevel.complete" value="<%=java.lang.Integer.toString(org.vfny.geoserver.global.dto.WFSDTO.COMPLETE) %>"/>
51
		</html:select>
52
	</td></tr>	
53
	
54
	<tr><td align="right">
55
		<span class="help" title="<bean:message key="help.onlineResource_service"/>">
56
			<bean:message key="label.onlineResource"/>:
57
		</span>
58
	</td><td colspan=2>
59
		<html:text property="onlineResource" size="60"/>
60
	</td></tr>
61
	
62
	<tr><td align="right">&nbsp;</td><td>
63
		<html:submit>
64
			<bean:message key="label.submit"/>
65
		</html:submit>
66
		
67
		<html:reset>
68
			<bean:message key="label.reset"/>
69
		</html:reset>
70
	</td></tr>
71
	</html:form>
72
</table>
(1-1/5)