annotate src/test/conf/webdefault.xml @ 0:f4f8570d1c56

initial OTP form
author smith@nwoca.org
date Mon, 12 Nov 2012 16:29:11 +0000
parents
children
rev   line source
0
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
1 <?xml version="1.0" encoding="ISO-8859-1"?>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
2 <web-app
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
3 xmlns="http://java.sun.com/xml/ns/j2ee"
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
4 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
5 xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd"
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
6 version="2.4">
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
7
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
8 <description>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
9 Default web.xml file.
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
10 This file is applied to a Web application before it's own WEB_INF/web.xml file
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
11 </description>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
12
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
13
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
14 <!-- ==================================================================== -->
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
15 <!-- Context params to control Session Cookies -->
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
16 <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
17 <!-- UNCOMMENT TO ACTIVATE
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
18 <context-param>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
19 <param-name>org.mortbay.jetty.servlet.SessionDomain</param-name>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
20 <param-value>127.0.0.1</param-value>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
21 </context-param>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
22
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
23 <context-param>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
24 <param-name>org.mortbay.jetty.servlet.SessionPath</param-name>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
25 <param-value>/</param-value>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
26 </context-param>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
27
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
28 <context-param>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
29 <param-name>org.mortbay.jetty.servlet.MaxAge</param-name>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
30 <param-value>-1</param-value>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
31 </context-param>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
32 -->
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
33
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
34
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
35 <!-- ==================================================================== -->
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
36 <!-- The default servlet. -->
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
37 <!-- This servlet, normally mapped to /, provides the handling for static -->
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
38 <!-- content, OPTIONS and TRACE methods for the context. -->
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
39 <!-- The following initParameters are supported: -->
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
40 <!-- -->
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
41 <!-- acceptRanges If true, range requests and responses are -->
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
42 <!-- supported -->
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
43 <!-- -->
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
44 <!-- dirAllowed If true, directory listings are returned if no -->
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
45 <!-- welcome file is found. Else 403 Forbidden. -->
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
46 <!-- -->
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
47 <!-- putAllowed If true, the PUT method is allowed -->
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
48 <!-- -->
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
49 <!-- delAllowed If true, the DELETE method is allowed -->
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
50 <!-- -->
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
51 <!-- redirectWelcome If true, redirect welcome file requests -->
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
52 <!-- else use request dispatcher forwards -->
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
53 <!-- -->
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
54 <!-- minGzipLength If set to a positive integer, then static content -->
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
55 <!-- larger than this will be served as gzip content -->
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
56 <!-- encoded if a matching resource is found ending -->
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
57 <!-- with ".gz" -->
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
58 <!-- -->
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
59 <!-- resoureBase Can be set to replace the context resource base -->
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
60 <!-- -->
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
61 <!-- relativeResourceBase -->
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
62 <!-- Set with a pathname relative to the base of the -->
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
63 <!-- servlet context root. Useful for only serving -->
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
64 <!-- static content from only specific subdirectories. -->
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
65 <!-- -->
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
66 <!-- The MOVE method is allowed if PUT and DELETE are allowed -->
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
67 <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
68 <servlet>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
69 <servlet-name>default</servlet-name>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
70 <servlet-class>org.mortbay.jetty.servlet.Default</servlet-class>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
71 <init-param>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
72 <param-name>acceptRanges</param-name>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
73 <param-value>true</param-value>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
74 </init-param>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
75 <init-param>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
76 <param-name>dirAllowed</param-name>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
77 <param-value>true</param-value>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
78 </init-param>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
79 <init-param>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
80 <param-name>putAllowed</param-name>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
81 <param-value>false</param-value>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
82 </init-param>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
83 <init-param>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
84 <param-name>delAllowed</param-name>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
85 <param-value>false</param-value>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
86 </init-param>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
87 <init-param>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
88 <param-name>redirectWelcome</param-name>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
89 <param-value>false</param-value>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
90 </init-param>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
91 <init-param>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
92 <param-name>minGzipLength</param-name>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
93 <param-value>8192</param-value>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
94 </init-param>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
95 <load-on-startup>0</load-on-startup>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
96 </servlet>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
97
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
98
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
99 <servlet-mapping>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
100 <servlet-name>default</servlet-name>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
101 <url-pattern>/</url-pattern>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
102 </servlet-mapping>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
103
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
104 <!-- ==================================================================== -->
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
105 <session-config>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
106 <session-timeout>30</session-timeout>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
107 </session-config>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
108
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
109
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
110 <!-- ==================================================================== -->
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
111 <welcome-file-list>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
112 <welcome-file>index.html</welcome-file>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
113 <welcome-file>index.htm</welcome-file>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
114 </welcome-file-list>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
115
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
116 <!-- ==================================================================== -->
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
117 <locale-encoding-mapping-list>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
118 <locale-encoding-mapping>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
119 <locale>ar</locale>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
120 <encoding>ISO-8859-6</encoding>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
121 </locale-encoding-mapping>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
122 <locale-encoding-mapping>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
123 <locale>be</locale>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
124 <encoding>ISO-8859-5</encoding>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
125 </locale-encoding-mapping>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
126 <locale-encoding-mapping>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
127 <locale>bg</locale>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
128 <encoding>ISO-8859-5</encoding>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
129 </locale-encoding-mapping>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
130 <locale-encoding-mapping>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
131 <locale>ca</locale>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
132 <encoding>ISO-8859-1</encoding>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
133 </locale-encoding-mapping>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
134 <locale-encoding-mapping>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
135 <locale>cs</locale>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
136 <encoding>ISO-8859-2</encoding>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
137 </locale-encoding-mapping>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
138 <locale-encoding-mapping>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
139 <locale>da</locale>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
140 <encoding>ISO-8859-1</encoding>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
141 </locale-encoding-mapping>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
142 <locale-encoding-mapping>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
143 <locale>de</locale>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
144 <encoding>ISO-8859-1</encoding>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
145 </locale-encoding-mapping>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
146 <locale-encoding-mapping>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
147 <locale>el</locale>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
148 <encoding>ISO-8859-7</encoding>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
149 </locale-encoding-mapping>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
150 <locale-encoding-mapping>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
151 <locale>en</locale>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
152 <encoding>ISO-8859-1</encoding>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
153 </locale-encoding-mapping>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
154 <locale-encoding-mapping>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
155 <locale>es</locale>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
156 <encoding>ISO-8859-1</encoding>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
157 </locale-encoding-mapping>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
158 <locale-encoding-mapping>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
159 <locale>et</locale>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
160 <encoding>ISO-8859-1</encoding>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
161 </locale-encoding-mapping>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
162 <locale-encoding-mapping>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
163 <locale>fi</locale>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
164 <encoding>ISO-8859-1</encoding>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
165 </locale-encoding-mapping>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
166 <locale-encoding-mapping>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
167 <locale>fr</locale>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
168 <encoding>ISO-8859-1</encoding>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
169 </locale-encoding-mapping>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
170 <locale-encoding-mapping>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
171 <locale>hr</locale>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
172 <encoding>ISO-8859-2</encoding>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
173 </locale-encoding-mapping>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
174 <locale-encoding-mapping>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
175 <locale>hu</locale>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
176 <encoding>ISO-8859-2</encoding>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
177 </locale-encoding-mapping>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
178 <locale-encoding-mapping>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
179 <locale>is</locale>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
180 <encoding>ISO-8859-1</encoding>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
181 </locale-encoding-mapping>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
182 <locale-encoding-mapping>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
183 <locale>it</locale>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
184 <encoding>ISO-8859-1</encoding>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
185 </locale-encoding-mapping>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
186 <locale-encoding-mapping>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
187 <locale>iw</locale>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
188 <encoding>ISO-8859-8</encoding>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
189 </locale-encoding-mapping>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
190 <locale-encoding-mapping>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
191 <locale>ja</locale>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
192 <encoding>Shift_JIS</encoding>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
193 </locale-encoding-mapping>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
194 <locale-encoding-mapping>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
195 <locale>ko</locale>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
196 <encoding>EUC-KR</encoding>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
197 </locale-encoding-mapping>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
198 <locale-encoding-mapping>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
199 <locale>lt</locale>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
200 <encoding>ISO-8859-2</encoding>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
201 </locale-encoding-mapping>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
202 <locale-encoding-mapping>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
203 <locale>lv</locale>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
204 <encoding>ISO-8859-2</encoding>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
205 </locale-encoding-mapping>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
206 <locale-encoding-mapping>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
207 <locale>mk</locale>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
208 <encoding>ISO-8859-5</encoding>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
209 </locale-encoding-mapping>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
210 <locale-encoding-mapping>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
211 <locale>nl</locale>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
212 <encoding>ISO-8859-1</encoding>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
213 </locale-encoding-mapping>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
214 <locale-encoding-mapping>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
215 <locale>no</locale>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
216 <encoding>ISO-8859-1</encoding>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
217 </locale-encoding-mapping>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
218 <locale-encoding-mapping>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
219 <locale>pl</locale>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
220 <encoding>ISO-8859-2</encoding>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
221 </locale-encoding-mapping>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
222 <locale-encoding-mapping>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
223 <locale>pt</locale>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
224 <encoding>ISO-8859-1</encoding>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
225 </locale-encoding-mapping>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
226 <locale-encoding-mapping>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
227 <locale>ro</locale>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
228 <encoding>ISO-8859-2</encoding>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
229 </locale-encoding-mapping>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
230 <locale-encoding-mapping>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
231 <locale>ru</locale>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
232 <encoding>ISO-8859-5</encoding>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
233 </locale-encoding-mapping>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
234 <locale-encoding-mapping>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
235 <locale>sh</locale>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
236 <encoding>ISO-8859-5</encoding>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
237 </locale-encoding-mapping>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
238 <locale-encoding-mapping>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
239 <locale>sk</locale>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
240 <encoding>ISO-8859-2</encoding>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
241 </locale-encoding-mapping>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
242 <locale-encoding-mapping>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
243 <locale>sl</locale>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
244 <encoding>ISO-8859-2</encoding>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
245 </locale-encoding-mapping>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
246 <locale-encoding-mapping>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
247 <locale>sq</locale>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
248 <encoding>ISO-8859-2</encoding>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
249 </locale-encoding-mapping>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
250 <locale-encoding-mapping>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
251 <locale>sr</locale>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
252 <encoding>ISO-8859-5</encoding>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
253 </locale-encoding-mapping>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
254 <locale-encoding-mapping>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
255 <locale>sv</locale>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
256 <encoding>ISO-8859-1</encoding>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
257 </locale-encoding-mapping>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
258 <locale-encoding-mapping>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
259 <locale>tr</locale>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
260 <encoding>ISO-8859-9</encoding>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
261 </locale-encoding-mapping>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
262 <locale-encoding-mapping>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
263 <locale>uk</locale>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
264 <encoding>ISO-8859-5</encoding>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
265 </locale-encoding-mapping>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
266 <locale-encoding-mapping>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
267 <locale>zh</locale>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
268 <encoding>GB2312</encoding>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
269 </locale-encoding-mapping>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
270 <locale-encoding-mapping>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
271 <locale>zh_TW</locale>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
272 <encoding>Big5</encoding>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
273 </locale-encoding-mapping>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
274 </locale-encoding-mapping-list>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
275
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
276
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
277 </web-app>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
278