1 |
<?xml version="1.0" encoding="ISO-8859-1"?> |
2 |
<!-- |
3 |
Licensed to the Apache Software Foundation (ASF) under one or more |
4 |
contributor license agreements. See the NOTICE file distributed with |
5 |
this work for additional information regarding copyright ownership. |
6 |
The ASF licenses this file to You under the Apache License, Version 2.0 |
7 |
(the "License"); you may not use this file except in compliance with |
8 |
the License. You may obtain a copy of the License at |
9 |
|
10 |
http://www.apache.org/licenses/LICENSE-2.0 |
11 |
|
12 |
Unless required by applicable law or agreed to in writing, software |
13 |
distributed under the License is distributed on an "AS IS" BASIS, |
14 |
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
15 |
See the License for the specific language governing permissions and |
16 |
limitations under the License. |
17 |
--> |
18 |
<web-app xmlns="http://java.sun.com/xml/ns/javaee" |
19 |
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
20 |
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" |
21 |
version="2.5"> |
22 |
|
23 |
<!-- ======================== Introduction ============================== --> |
24 |
<!-- This document defines default values for *all* web applications --> |
25 |
<!-- loaded into this instance of Tomcat. As each application is --> |
26 |
<!-- deployed, this file is processed, followed by the --> |
27 |
<!-- "/WEB-INF/web.xml" deployment descriptor from your own --> |
28 |
<!-- applications. --> |
29 |
<!-- --> |
30 |
<!-- WARNING: Do not configure application-specific resources here! --> |
31 |
<!-- They should go in the "/WEB-INF/web.xml" file in your application. --> |
32 |
|
33 |
|
34 |
<!-- ================== Built In Servlet Definitions ==================== --> |
35 |
|
36 |
|
37 |
<!-- The default servlet for all web applications, that serves static --> |
38 |
<!-- resources. It processes all requests that are not mapped to other --> |
39 |
<!-- servlets with servlet mappings (defined either here or in your own --> |
40 |
<!-- web.xml file. This servlet supports the following initialization --> |
41 |
<!-- parameters (default values are in square brackets): --> |
42 |
<!-- --> |
43 |
<!-- debug Debugging detail level for messages logged --> |
44 |
<!-- by this servlet. [0] --> |
45 |
<!-- --> |
46 |
<!-- fileEncoding Encoding to be used to read static resources --> |
47 |
<!-- [platform default] --> |
48 |
<!-- --> |
49 |
<!-- input Input buffer size (in bytes) when reading --> |
50 |
<!-- resources to be served. [2048] --> |
51 |
<!-- --> |
52 |
<!-- listings Should directory listings be produced if there --> |
53 |
<!-- is no welcome file in this directory? [false] --> |
54 |
<!-- WARNING: Listings for directories with many --> |
55 |
<!-- entries can be slow and may consume --> |
56 |
<!-- significant proportions of server resources. --> |
57 |
<!-- --> |
58 |
<!-- output Output buffer size (in bytes) when writing --> |
59 |
<!-- resources to be served. [2048] --> |
60 |
<!-- --> |
61 |
<!-- readonly Is this context "read only", so HTTP --> |
62 |
<!-- commands like PUT and DELETE are --> |
63 |
<!-- rejected? [true] --> |
64 |
<!-- --> |
65 |
<!-- readmeFile File name to display with the directory --> |
66 |
<!-- contents. [null] --> |
67 |
<!-- --> |
68 |
<!-- sendfileSize If the connector used supports sendfile, this --> |
69 |
<!-- represents the minimal file size in KB for --> |
70 |
<!-- which sendfile will be used. Use a negative --> |
71 |
<!-- value to always disable sendfile. [48] --> |
72 |
<!-- --> |
73 |
<!-- useAcceptRanges Should the Accept-Ranges header be included --> |
74 |
<!-- in responses where appropriate? [true] --> |
75 |
<!-- --> |
76 |
<!-- For directory listing customization. Checks localXsltFile, then --> |
77 |
<!-- globalXsltFile, then defaults to original behavior. --> |
78 |
<!-- --> |
79 |
<!-- localXsltFile Make directory listings an XML doc and --> |
80 |
<!-- pass the result to this style sheet residing --> |
81 |
<!-- in that directory. This overrides --> |
82 |
<!-- globalXsltFile[null] --> |
83 |
<!-- --> |
84 |
<!-- globalXsltFile Site wide configuration version of --> |
85 |
<!-- localXsltFile. This argument must either --> |
86 |
<!-- an aboslute or relative ( to either --> |
87 |
<!-- CATALINA_BASE/conf or CATALINA_HOME/conf --> |
88 |
<!-- path that points to the location below --> |
89 |
<!-- CATALINA_BASE/conf (checked first) or --> |
90 |
<!-- $CATLINA_HOME/conf (checked second). --> |
91 |
<!-- --> |
92 |
<!-- --> |
93 |
|
94 |
<servlet> |
95 |
<servlet-name>default</servlet-name> |
96 |
<servlet-class>org.apache.catalina.servlets.DefaultServlet</servlet-class> |
97 |
<init-param> |
98 |
<param-name>debug</param-name> |
99 |
<param-value>0</param-value> |
100 |
</init-param> |
101 |
<init-param> |
102 |
<param-name>listings</param-name> |
103 |
<param-value>false</param-value> |
104 |
</init-param> |
105 |
<load-on-startup>1</load-on-startup> |
106 |
</servlet> |
107 |
|
108 |
|
109 |
<!-- This servlet has been deprecated due to security concerns. Servlets --> |
110 |
<!-- should be explicitly mapped in web.xml --> |
111 |
<!-- --> |
112 |
<!-- The "invoker" servlet, which executes anonymous servlet classes --> |
113 |
<!-- that have not been defined in a web.xml file. Traditionally, this --> |
114 |
<!-- servlet is mapped to the URL pattern "/servlet/*", but you can map --> |
115 |
<!-- it to other patterns as well. The extra path info portion of such a --> |
116 |
<!-- request must be the fully qualified class name of a Java class that --> |
117 |
<!-- implements Servlet (or extends HttpServlet), or the servlet name --> |
118 |
<!-- of an existing servlet definition. This servlet supports the --> |
119 |
<!-- following initialization parameters (default values are in square --> |
120 |
<!-- brackets): --> |
121 |
<!-- --> |
122 |
<!-- debug Debugging detail level for messages logged --> |
123 |
<!-- by this servlet. [0] --> |
124 |
|
125 |
<!-- |
126 |
<servlet> |
127 |
<servlet-name>invoker</servlet-name> |
128 |
<servlet-class> |
129 |
org.apache.catalina.servlets.InvokerServlet |
130 |
</servlet-class> |
131 |
<init-param> |
132 |
<param-name>debug</param-name> |
133 |
<param-value>0</param-value> |
134 |
</init-param> |
135 |
<load-on-startup>2</load-on-startup> |
136 |
</servlet> |
137 |
--> |
138 |
|
139 |
|
140 |
<!-- The JSP page compiler and execution servlet, which is the mechanism --> |
141 |
<!-- used by Tomcat to support JSP pages. Traditionally, this servlet --> |
142 |
<!-- is mapped to the URL pattern "*.jsp". This servlet supports the --> |
143 |
<!-- following initialization parameters (default values are in square --> |
144 |
<!-- brackets): --> |
145 |
<!-- --> |
146 |
<!-- checkInterval If development is false and checkInterval is --> |
147 |
<!-- greater than zero, background compilations are --> |
148 |
<!-- enabled. checkInterval is the time in seconds --> |
149 |
<!-- between checks to see if a JSP page (and its --> |
150 |
<!-- dependent files) needs to be recompiled. [0] --> |
151 |
<!-- --> |
152 |
<!-- classdebuginfo Should the class file be compiled with --> |
153 |
<!-- debugging information? [true] --> |
154 |
<!-- --> |
155 |
<!-- classpath What class path should I use while compiling --> |
156 |
<!-- generated servlets? [Created dynamically --> |
157 |
<!-- based on the current web application] --> |
158 |
<!-- --> |
159 |
<!-- compiler Which compiler Ant should use to compile JSP --> |
160 |
<!-- pages. See the jasper documentation for more --> |
161 |
<!-- information. --> |
162 |
<!-- --> |
163 |
<!-- compilerSourceVM Compiler source VM. [1.5] --> |
164 |
<!-- --> |
165 |
<!-- compilerTargetVM Compiler target VM. [1.5] --> |
166 |
<!-- --> |
167 |
<!-- development Is Jasper used in development mode? If true, --> |
168 |
<!-- the frequency at which JSPs are checked for --> |
169 |
<!-- modification may be specified via the --> |
170 |
<!-- modificationTestInterval parameter. [true] --> |
171 |
<!-- --> |
172 |
<!-- displaySourceFragment --> |
173 |
<!-- Should a source fragment be included in --> |
174 |
<!-- exception messages? [true] --> |
175 |
<!-- --> |
176 |
<!-- dumpSmap Should the SMAP info for JSR45 debugging be --> |
177 |
<!-- dumped to a file? [false] --> |
178 |
<!-- False if suppressSmap is true --> |
179 |
<!-- --> |
180 |
<!-- enablePooling Determines whether tag handler pooling is --> |
181 |
<!-- enabled. This is a compilation option. It will --> |
182 |
<!-- not alter the behaviour of JSPs that have --> |
183 |
<!-- already been compiled. [true] --> |
184 |
<!-- --> |
185 |
<!-- engineOptionsClass Allows specifying the Options class used to --> |
186 |
<!-- configure Jasper. If not present, the default --> |
187 |
<!-- EmbeddedServletOptions will be used. --> |
188 |
<!-- --> |
189 |
<!-- errorOnUseBeanInvalidClassAttribute --> |
190 |
<!-- Should Jasper issue an error when the value of --> |
191 |
<!-- the class attribute in an useBean action is --> |
192 |
<!-- not a valid bean class? [true] --> |
193 |
<!-- --> |
194 |
<!-- fork Tell Ant to fork compiles of JSP pages so that --> |
195 |
<!-- a separate JVM is used for JSP page compiles --> |
196 |
<!-- from the one Tomcat is running in. [true] --> |
197 |
<!-- --> |
198 |
<!-- genStrAsCharArray Should text strings be generated as char --> |
199 |
<!-- arrays, to improve performance in some cases? --> |
200 |
<!-- [false] --> |
201 |
<!-- --> |
202 |
<!-- ieClassId The class-id value to be sent to Internet --> |
203 |
<!-- Explorer when using <jsp:plugin> tags. --> |
204 |
<!-- [clsid:8AD9C840-044E-11D1-B3E9-00805F499D93] --> |
205 |
<!-- --> |
206 |
<!-- javaEncoding Java file encoding to use for generating java --> |
207 |
<!-- source files. [UTF8] --> |
208 |
<!-- --> |
209 |
<!-- keepgenerated Should we keep the generated Java source code --> |
210 |
<!-- for each page instead of deleting it? [true] --> |
211 |
<!-- --> |
212 |
<!-- mappedfile Should we generate static content with one --> |
213 |
<!-- print statement per input line, to ease --> |
214 |
<!-- debugging? [true] --> |
215 |
<!-- --> |
216 |
<!-- modificationTestInterval --> |
217 |
<!-- Causes a JSP (and its dependent files) to not --> |
218 |
<!-- be checked for modification during the --> |
219 |
<!-- specified time interval (in seconds) from the --> |
220 |
<!-- last time the JSP was checked for --> |
221 |
<!-- modification. A value of 0 will cause the JSP --> |
222 |
<!-- to be checked on every access. --> |
223 |
<!-- Used in development mode only. [4] --> |
224 |
<!-- --> |
225 |
<!-- scratchdir What scratch directory should we use when --> |
226 |
<!-- compiling JSP pages? [default work directory --> |
227 |
<!-- for the current web application] --> |
228 |
<!-- --> |
229 |
<!-- suppressSmap Should the generation of SMAP info for JSR45 --> |
230 |
<!-- debugging be suppressed? [false] --> |
231 |
<!-- --> |
232 |
<!-- trimSpaces Should white spaces in template text between --> |
233 |
<!-- actions or directives be trimmed? [false] --> |
234 |
<!-- --> |
235 |
<!-- xpoweredBy Determines whether X-Powered-By response --> |
236 |
<!-- header is added by generated servlet [false] --> |
237 |
<!-- --> |
238 |
<!-- If you wish to use Jikes to compile JSP pages: --> |
239 |
<!-- Please see the "Using Jikes" section of the Jasper-HowTo --> |
240 |
<!-- page in the Tomcat documentation. --> |
241 |
|
242 |
<servlet> |
243 |
<servlet-name>jsp</servlet-name> |
244 |
<servlet-class>org.apache.jasper.servlet.JspServlet</servlet-class> |
245 |
<init-param> |
246 |
<param-name>fork</param-name> |
247 |
<param-value>false</param-value> |
248 |
</init-param> |
249 |
<init-param> |
250 |
<param-name>xpoweredBy</param-name> |
251 |
<param-value>false</param-value> |
252 |
</init-param> |
253 |
<load-on-startup>3</load-on-startup> |
254 |
</servlet> |
255 |
|
256 |
|
257 |
<!-- NOTE: An SSI Filter is also available as an alternative SSI --> |
258 |
<!-- implementation. Use either the Servlet or the Filter but NOT both. --> |
259 |
<!-- --> |
260 |
<!-- Server Side Includes processing servlet, which processes SSI --> |
261 |
<!-- directives in HTML pages consistent with similar support in web --> |
262 |
<!-- servers like Apache. Traditionally, this servlet is mapped to the --> |
263 |
<!-- URL pattern "*.shtml". This servlet supports the following --> |
264 |
<!-- initialization parameters (default values are in square brackets): --> |
265 |
<!-- --> |
266 |
<!-- buffered Should output from this servlet be buffered? --> |
267 |
<!-- (0=false, 1=true) [0] --> |
268 |
<!-- --> |
269 |
<!-- debug Debugging detail level for messages logged --> |
270 |
<!-- by this servlet. [0] --> |
271 |
<!-- --> |
272 |
<!-- expires The number of seconds before a page with SSI --> |
273 |
<!-- directives will expire. [No default] --> |
274 |
<!-- --> |
275 |
<!-- isVirtualWebappRelative --> |
276 |
<!-- Should "virtual" paths be interpreted as --> |
277 |
<!-- relative to the context root, instead of --> |
278 |
<!-- the server root? (0=false, 1=true) [0] --> |
279 |
<!-- --> |
280 |
<!-- inputEncoding The encoding to assume for SSI resources if --> |
281 |
<!-- one is not available from the resource. --> |
282 |
<!-- [Platform default] --> |
283 |
<!-- --> |
284 |
<!-- outputEncoding The encoding to use for the page that results --> |
285 |
<!-- from the SSI processing. [UTF-8] --> |
286 |
|
287 |
<!-- |
288 |
<servlet> |
289 |
<servlet-name>ssi</servlet-name> |
290 |
<servlet-class> |
291 |
org.apache.catalina.ssi.SSIServlet |
292 |
</servlet-class> |
293 |
<init-param> |
294 |
<param-name>buffered</param-name> |
295 |
<param-value>1</param-value> |
296 |
</init-param> |
297 |
<init-param> |
298 |
<param-name>debug</param-name> |
299 |
<param-value>0</param-value> |
300 |
</init-param> |
301 |
<init-param> |
302 |
<param-name>expires</param-name> |
303 |
<param-value>666</param-value> |
304 |
</init-param> |
305 |
<init-param> |
306 |
<param-name>isVirtualWebappRelative</param-name> |
307 |
<param-value>0</param-value> |
308 |
</init-param> |
309 |
<load-on-startup>4</load-on-startup> |
310 |
</servlet> |
311 |
--> |
312 |
|
313 |
|
314 |
<!-- Common Gateway Includes (CGI) processing servlet, which supports --> |
315 |
<!-- execution of external applications that conform to the CGI spec --> |
316 |
<!-- requirements. Typically, this servlet is mapped to the URL pattern --> |
317 |
<!-- "/cgi-bin/*", which means that any CGI applications that are --> |
318 |
<!-- executed must be present within the web application. This servlet --> |
319 |
<!-- supports the following initialization parameters (default values --> |
320 |
<!-- are in square brackets): --> |
321 |
<!-- --> |
322 |
<!-- cgiPathPrefix The CGI search path will start at --> |
323 |
<!-- webAppRootDir + File.separator + this prefix. --> |
324 |
<!-- [WEB-INF/cgi] --> |
325 |
<!-- --> |
326 |
<!-- debug Debugging detail level for messages logged --> |
327 |
<!-- by this servlet. [0] --> |
328 |
<!-- --> |
329 |
<!-- executable Name of the executable used to run the --> |
330 |
<!-- script. [perl] --> |
331 |
<!-- --> |
332 |
<!-- parameterEncoding Name of parameter encoding to be used with --> |
333 |
<!-- CGI servlet. --> |
334 |
<!-- [System.getProperty("file.encoding","UTF-8")] --> |
335 |
<!-- --> |
336 |
<!-- passShellEnvironment Should the shell environment variables (if --> |
337 |
<!-- any) be passed to the CGI script? [false] --> |
338 |
<!-- --> |
339 |
<!-- stderrTimeout The time (in milliseconds) to wait for the --> |
340 |
<!-- reading of stderr to complete before --> |
341 |
<!-- terminating the CGI process. [2000] --> |
342 |
|
343 |
<!-- |
344 |
<servlet> |
345 |
<servlet-name>cgi</servlet-name> |
346 |
<servlet-class>org.apache.catalina.servlets.CGIServlet</servlet-class> |
347 |
<init-param> |
348 |
<param-name>debug</param-name> |
349 |
<param-value>0</param-value> |
350 |
</init-param> |
351 |
<init-param> |
352 |
<param-name>cgiPathPrefix</param-name> |
353 |
<param-value>WEB-INF/cgi</param-value> |
354 |
</init-param> |
355 |
<load-on-startup>5</load-on-startup> |
356 |
</servlet> |
357 |
--> |
358 |
|
359 |
|
360 |
<!-- ================ Built In Servlet Mappings ========================= --> |
361 |
|
362 |
|
363 |
<!-- The servlet mappings for the built in servlets defined above. Note --> |
364 |
<!-- that, by default, the CGI and SSI servlets are *not* mapped. You --> |
365 |
<!-- must uncomment these mappings (or add them to your application's own --> |
366 |
<!-- web.xml deployment descriptor) to enable these services --> |
367 |
|
368 |
<!-- The mapping for the default servlet --> |
369 |
<servlet-mapping> |
370 |
<servlet-name>default</servlet-name> |
371 |
<url-pattern>/</url-pattern> |
372 |
</servlet-mapping> |
373 |
|
374 |
<!-- The mapping for the deprecated invoker servlet --> |
375 |
<!-- |
376 |
<servlet-mapping> |
377 |
<servlet-name>invoker</servlet-name> |
378 |
<url-pattern>/servlet/*</url-pattern> |
379 |
</servlet-mapping> |
380 |
--> |
381 |
|
382 |
<!-- The mapping for the JSP servlet --> |
383 |
<servlet-mapping> |
384 |
<servlet-name>jsp</servlet-name> |
385 |
<url-pattern>*.jsp</url-pattern> |
386 |
</servlet-mapping> |
387 |
|
388 |
<servlet-mapping> |
389 |
<servlet-name>jsp</servlet-name> |
390 |
<url-pattern>*.jspx</url-pattern> |
391 |
</servlet-mapping> |
392 |
|
393 |
<!-- The mapping for the SSI servlet --> |
394 |
<!-- |
395 |
<servlet-mapping> |
396 |
<servlet-name>ssi</servlet-name> |
397 |
<url-pattern>*.shtml</url-pattern> |
398 |
</servlet-mapping> |
399 |
--> |
400 |
|
401 |
<!-- The mapping for the CGI Gateway servlet --> |
402 |
|
403 |
<!-- |
404 |
<servlet-mapping> |
405 |
<servlet-name>cgi</servlet-name> |
406 |
<url-pattern>/cgi-bin/*</url-pattern> |
407 |
</servlet-mapping> |
408 |
--> |
409 |
|
410 |
|
411 |
<!-- ================== Built In Filter Definitions ===================== --> |
412 |
|
413 |
<!-- NOTE: An SSI Servlet is also available as an alternative SSI --> |
414 |
<!-- implementation. Use either the Servlet or the Filter but NOT both. --> |
415 |
<!-- --> |
416 |
<!-- Server Side Includes processing filter, which processes SSI --> |
417 |
<!-- directives in HTML pages consistent with similar support in web --> |
418 |
<!-- servers like Apache. Traditionally, this filter is mapped to the --> |
419 |
<!-- URL pattern "*.shtml", though it can be mapped to "*" as it will --> |
420 |
<!-- selectively enable/disable SSI processing based on mime types. For --> |
421 |
<!-- this to work you will need to uncomment the .shtml mime type --> |
422 |
<!-- definition towards the bottom of this file. --> |
423 |
<!-- The contentType init param allows you to apply SSI processing to JSP --> |
424 |
<!-- pages, javascript, or any other content you wish. This filter --> |
425 |
<!-- supports the following initialization parameters (default values are --> |
426 |
<!-- in square brackets): --> |
427 |
<!-- --> |
428 |
<!-- contentType A regex pattern that must be matched before --> |
429 |
<!-- SSI processing is applied. --> |
430 |
<!-- [text/x-server-parsed-html(;.*)?] --> |
431 |
<!-- --> |
432 |
<!-- debug Debugging detail level for messages logged --> |
433 |
<!-- by this servlet. [0] --> |
434 |
<!-- --> |
435 |
<!-- expires The number of seconds before a page with SSI --> |
436 |
<!-- directives will expire. [No default] --> |
437 |
<!-- --> |
438 |
<!-- isVirtualWebappRelative --> |
439 |
<!-- Should "virtual" paths be interpreted as --> |
440 |
<!-- relative to the context root, instead of --> |
441 |
<!-- the server root? (0=false, 1=true) [0] --> |
442 |
|
443 |
<!-- |
444 |
<filter> |
445 |
<filter-name>ssi</filter-name> |
446 |
<filter-class> |
447 |
org.apache.catalina.ssi.SSIFilter |
448 |
</filter-class> |
449 |
<init-param> |
450 |
<param-name>contentType</param-name> |
451 |
<param-value>text/x-server-parsed-html(;.*)?</param-value> |
452 |
</init-param> |
453 |
<init-param> |
454 |
<param-name>debug</param-name> |
455 |
<param-value>0</param-value> |
456 |
</init-param> |
457 |
<init-param> |
458 |
<param-name>expires</param-name> |
459 |
<param-value>666</param-value> |
460 |
</init-param> |
461 |
<init-param> |
462 |
<param-name>isVirtualWebappRelative</param-name> |
463 |
<param-value>0</param-value> |
464 |
</init-param> |
465 |
</filter> |
466 |
--> |
467 |
|
468 |
|
469 |
<!-- ==================== Built In Filter Mappings ====================== --> |
470 |
|
471 |
<!-- The mapping for the SSI Filter --> |
472 |
<!-- |
473 |
<filter-mapping> |
474 |
<filter-name>ssi</filter-name> |
475 |
<url-pattern>*.shtml</url-pattern> |
476 |
</filter-mapping> |
477 |
--> |
478 |
|
479 |
|
480 |
<!-- ==================== Default Session Configuration ================= --> |
481 |
<!-- You can set the default session timeout (in minutes) for all newly --> |
482 |
<!-- created sessions by modifying the value below. --> |
483 |
|
484 |
<session-config> |
485 |
<session-timeout>30</session-timeout> |
486 |
</session-config> |
487 |
|
488 |
|
489 |
<!-- ===================== Default MIME Type Mappings =================== --> |
490 |
<!-- When serving static resources, Tomcat will automatically generate --> |
491 |
<!-- a "Content-Type" header based on the resource's filename extension, --> |
492 |
<!-- based on these mappings. Additional mappings can be added here (to --> |
493 |
<!-- apply to all web applications), or in your own application's web.xml --> |
494 |
<!-- deployment descriptor. --> |
495 |
|
496 |
<mime-mapping> |
497 |
<extension>abs</extension> |
498 |
<mime-type>audio/x-mpeg</mime-type> |
499 |
</mime-mapping> |
500 |
<mime-mapping> |
501 |
<extension>ai</extension> |
502 |
<mime-type>application/postscript</mime-type> |
503 |
</mime-mapping> |
504 |
<mime-mapping> |
505 |
<extension>aif</extension> |
506 |
<mime-type>audio/x-aiff</mime-type> |
507 |
</mime-mapping> |
508 |
<mime-mapping> |
509 |
<extension>aifc</extension> |
510 |
<mime-type>audio/x-aiff</mime-type> |
511 |
</mime-mapping> |
512 |
<mime-mapping> |
513 |
<extension>aiff</extension> |
514 |
<mime-type>audio/x-aiff</mime-type> |
515 |
</mime-mapping> |
516 |
<mime-mapping> |
517 |
<extension>aim</extension> |
518 |
<mime-type>application/x-aim</mime-type> |
519 |
</mime-mapping> |
520 |
<mime-mapping> |
521 |
<extension>art</extension> |
522 |
<mime-type>image/x-jg</mime-type> |
523 |
</mime-mapping> |
524 |
<mime-mapping> |
525 |
<extension>asf</extension> |
526 |
<mime-type>video/x-ms-asf</mime-type> |
527 |
</mime-mapping> |
528 |
<mime-mapping> |
529 |
<extension>asx</extension> |
530 |
<mime-type>video/x-ms-asf</mime-type> |
531 |
</mime-mapping> |
532 |
<mime-mapping> |
533 |
<extension>au</extension> |
534 |
<mime-type>audio/basic</mime-type> |
535 |
</mime-mapping> |
536 |
<mime-mapping> |
537 |
<extension>avi</extension> |
538 |
<mime-type>video/x-msvideo</mime-type> |
539 |
</mime-mapping> |
540 |
<mime-mapping> |
541 |
<extension>avx</extension> |
542 |
<mime-type>video/x-rad-screenplay</mime-type> |
543 |
</mime-mapping> |
544 |
<mime-mapping> |
545 |
<extension>bcpio</extension> |
546 |
<mime-type>application/x-bcpio</mime-type> |
547 |
</mime-mapping> |
548 |
<mime-mapping> |
549 |
<extension>bin</extension> |
550 |
<mime-type>application/octet-stream</mime-type> |
551 |
</mime-mapping> |
552 |
<mime-mapping> |
553 |
<extension>bmp</extension> |
554 |
<mime-type>image/bmp</mime-type> |
555 |
</mime-mapping> |
556 |
<mime-mapping> |
557 |
<extension>body</extension> |
558 |
<mime-type>text/html</mime-type> |
559 |
</mime-mapping> |
560 |
<mime-mapping> |
561 |
<extension>cdf</extension> |
562 |
<mime-type>application/x-cdf</mime-type> |
563 |
</mime-mapping> |
564 |
<mime-mapping> |
565 |
<extension>cer</extension> |
566 |
<mime-type>application/x-x509-ca-cert</mime-type> |
567 |
</mime-mapping> |
568 |
<mime-mapping> |
569 |
<extension>class</extension> |
570 |
<mime-type>application/java</mime-type> |
571 |
</mime-mapping> |
572 |
<mime-mapping> |
573 |
<extension>cpio</extension> |
574 |
<mime-type>application/x-cpio</mime-type> |
575 |
</mime-mapping> |
576 |
<mime-mapping> |
577 |
<extension>csh</extension> |
578 |
<mime-type>application/x-csh</mime-type> |
579 |
</mime-mapping> |
580 |
<mime-mapping> |
581 |
<extension>css</extension> |
582 |
<mime-type>text/css</mime-type> |
583 |
</mime-mapping> |
584 |
<mime-mapping> |
585 |
<extension>dib</extension> |
586 |
<mime-type>image/bmp</mime-type> |
587 |
</mime-mapping> |
588 |
<mime-mapping> |
589 |
<extension>doc</extension> |
590 |
<mime-type>application/msword</mime-type> |
591 |
</mime-mapping> |
592 |
<mime-mapping> |
593 |
<extension>dtd</extension> |
594 |
<mime-type>application/xml-dtd</mime-type> |
595 |
</mime-mapping> |
596 |
<mime-mapping> |
597 |
<extension>dv</extension> |
598 |
<mime-type>video/x-dv</mime-type> |
599 |
</mime-mapping> |
600 |
<mime-mapping> |
601 |
<extension>dvi</extension> |
602 |
<mime-type>application/x-dvi</mime-type> |
603 |
</mime-mapping> |
604 |
<mime-mapping> |
605 |
<extension>eps</extension> |
606 |
<mime-type>application/postscript</mime-type> |
607 |
</mime-mapping> |
608 |
<mime-mapping> |
609 |
<extension>etx</extension> |
610 |
<mime-type>text/x-setext</mime-type> |
611 |
</mime-mapping> |
612 |
<mime-mapping> |
613 |
<extension>exe</extension> |
614 |
<mime-type>application/octet-stream</mime-type> |
615 |
</mime-mapping> |
616 |
<mime-mapping> |
617 |
<extension>gif</extension> |
618 |
<mime-type>image/gif</mime-type> |
619 |
</mime-mapping> |
620 |
<mime-mapping> |
621 |
<extension>gtar</extension> |
622 |
<mime-type>application/x-gtar</mime-type> |
623 |
</mime-mapping> |
624 |
<mime-mapping> |
625 |
<extension>gz</extension> |
626 |
<mime-type>application/x-gzip</mime-type> |
627 |
</mime-mapping> |
628 |
<mime-mapping> |
629 |
<extension>hdf</extension> |
630 |
<mime-type>application/x-hdf</mime-type> |
631 |
</mime-mapping> |
632 |
<mime-mapping> |
633 |
<extension>hqx</extension> |
634 |
<mime-type>application/mac-binhex40</mime-type> |
635 |
</mime-mapping> |
636 |
<mime-mapping> |
637 |
<extension>htc</extension> |
638 |
<mime-type>text/x-component</mime-type> |
639 |
</mime-mapping> |
640 |
<mime-mapping> |
641 |
<extension>htm</extension> |
642 |
<mime-type>text/html</mime-type> |
643 |
</mime-mapping> |
644 |
<mime-mapping> |
645 |
<extension>html</extension> |
646 |
<mime-type>text/html</mime-type> |
647 |
</mime-mapping> |
648 |
<mime-mapping> |
649 |
<extension>hqx</extension> |
650 |
<mime-type>application/mac-binhex40</mime-type> |
651 |
</mime-mapping> |
652 |
<mime-mapping> |
653 |
<extension>ief</extension> |
654 |
<mime-type>image/ief</mime-type> |
655 |
</mime-mapping> |
656 |
<mime-mapping> |
657 |
<extension>jad</extension> |
658 |
<mime-type>text/vnd.sun.j2me.app-descriptor</mime-type> |
659 |
</mime-mapping> |
660 |
<mime-mapping> |
661 |
<extension>jar</extension> |
662 |
<mime-type>application/java-archive</mime-type> |
663 |
</mime-mapping> |
664 |
<mime-mapping> |
665 |
<extension>java</extension> |
666 |
<mime-type>text/plain</mime-type> |
667 |
</mime-mapping> |
668 |
<mime-mapping> |
669 |
<extension>jnlp</extension> |
670 |
<mime-type>application/x-java-jnlp-file</mime-type> |
671 |
</mime-mapping> |
672 |
<mime-mapping> |
673 |
<extension>jpe</extension> |
674 |
<mime-type>image/jpeg</mime-type> |
675 |
</mime-mapping> |
676 |
<mime-mapping> |
677 |
<extension>jpeg</extension> |
678 |
<mime-type>image/jpeg</mime-type> |
679 |
</mime-mapping> |
680 |
<mime-mapping> |
681 |
<extension>jpg</extension> |
682 |
<mime-type>image/jpeg</mime-type> |
683 |
</mime-mapping> |
684 |
<mime-mapping> |
685 |
<extension>js</extension> |
686 |
<mime-type>text/javascript</mime-type> |
687 |
</mime-mapping> |
688 |
<mime-mapping> |
689 |
<extension>jsf</extension> |
690 |
<mime-type>text/plain</mime-type> |
691 |
</mime-mapping> |
692 |
<mime-mapping> |
693 |
<extension>jspf</extension> |
694 |
<mime-type>text/plain</mime-type> |
695 |
</mime-mapping> |
696 |
<mime-mapping> |
697 |
<extension>kar</extension> |
698 |
<mime-type>audio/x-midi</mime-type> |
699 |
</mime-mapping> |
700 |
<mime-mapping> |
701 |
<extension>latex</extension> |
702 |
<mime-type>application/x-latex</mime-type> |
703 |
</mime-mapping> |
704 |
<mime-mapping> |
705 |
<extension>m3u</extension> |
706 |
<mime-type>audio/x-mpegurl</mime-type> |
707 |
</mime-mapping> |
708 |
<mime-mapping> |
709 |
<extension>mac</extension> |
710 |
<mime-type>image/x-macpaint</mime-type> |
711 |
</mime-mapping> |
712 |
<mime-mapping> |
713 |
<extension>man</extension> |
714 |
<mime-type>application/x-troff-man</mime-type> |
715 |
</mime-mapping> |
716 |
<mime-mapping> |
717 |
<extension>mathml</extension> |
718 |
<mime-type>application/mathml+xml</mime-type> |
719 |
</mime-mapping> |
720 |
<mime-mapping> |
721 |
<extension>me</extension> |
722 |
<mime-type>application/x-troff-me</mime-type> |
723 |
</mime-mapping> |
724 |
<mime-mapping> |
725 |
<extension>mid</extension> |
726 |
<mime-type>audio/x-midi</mime-type> |
727 |
</mime-mapping> |
728 |
<mime-mapping> |
729 |
<extension>midi</extension> |
730 |
<mime-type>audio/x-midi</mime-type> |
731 |
</mime-mapping> |
732 |
<mime-mapping> |
733 |
<extension>mif</extension> |
734 |
<mime-type>application/x-mif</mime-type> |
735 |
</mime-mapping> |
736 |
<mime-mapping> |
737 |
<extension>mov</extension> |
738 |
<mime-type>video/quicktime</mime-type> |
739 |
</mime-mapping> |
740 |
<mime-mapping> |
741 |
<extension>movie</extension> |
742 |
<mime-type>video/x-sgi-movie</mime-type> |
743 |
</mime-mapping> |
744 |
<mime-mapping> |
745 |
<extension>mp1</extension> |
746 |
<mime-type>audio/x-mpeg</mime-type> |
747 |
</mime-mapping> |
748 |
<mime-mapping> |
749 |
<extension>mp2</extension> |
750 |
<mime-type>audio/x-mpeg</mime-type> |
751 |
</mime-mapping> |
752 |
<mime-mapping> |
753 |
<extension>mp3</extension> |
754 |
<mime-type>audio/x-mpeg</mime-type> |
755 |
</mime-mapping> |
756 |
<mime-mapping> |
757 |
<extension>mp4</extension> |
758 |
<mime-type>video/mp4</mime-type> |
759 |
</mime-mapping> |
760 |
<mime-mapping> |
761 |
<extension>mpa</extension> |
762 |
<mime-type>audio/x-mpeg</mime-type> |
763 |
</mime-mapping> |
764 |
<mime-mapping> |
765 |
<extension>mpe</extension> |
766 |
<mime-type>video/mpeg</mime-type> |
767 |
</mime-mapping> |
768 |
<mime-mapping> |
769 |
<extension>mpeg</extension> |
770 |
<mime-type>video/mpeg</mime-type> |
771 |
</mime-mapping> |
772 |
<mime-mapping> |
773 |
<extension>mpega</extension> |
774 |
<mime-type>audio/x-mpeg</mime-type> |
775 |
</mime-mapping> |
776 |
<mime-mapping> |
777 |
<extension>mpg</extension> |
778 |
<mime-type>video/mpeg</mime-type> |
779 |
</mime-mapping> |
780 |
<mime-mapping> |
781 |
<extension>mpv2</extension> |
782 |
<mime-type>video/mpeg2</mime-type> |
783 |
</mime-mapping> |
784 |
<mime-mapping> |
785 |
<extension>ms</extension> |
786 |
<mime-type>application/x-wais-source</mime-type> |
787 |
</mime-mapping> |
788 |
<mime-mapping> |
789 |
<extension>nc</extension> |
790 |
<mime-type>application/x-netcdf</mime-type> |
791 |
</mime-mapping> |
792 |
<mime-mapping> |
793 |
<extension>oda</extension> |
794 |
<mime-type>application/oda</mime-type> |
795 |
</mime-mapping> |
796 |
<mime-mapping> |
797 |
<!-- OpenDocument Database --> |
798 |
<extension>odb</extension> |
799 |
<mime-type>application/vnd.oasis.opendocument.database</mime-type> |
800 |
</mime-mapping> |
801 |
<mime-mapping> |
802 |
<!-- OpenDocument Chart --> |
803 |
<extension>odc</extension> |
804 |
<mime-type>application/vnd.oasis.opendocument.chart</mime-type> |
805 |
</mime-mapping> |
806 |
<mime-mapping> |
807 |
<!-- OpenDocument Formula --> |
808 |
<extension>odf</extension> |
809 |
<mime-type>application/vnd.oasis.opendocument.formula</mime-type> |
810 |
</mime-mapping> |
811 |
<mime-mapping> |
812 |
<!-- OpenDocument Drawing --> |
813 |
<extension>odg</extension> |
814 |
<mime-type>application/vnd.oasis.opendocument.graphics</mime-type> |
815 |
</mime-mapping> |
816 |
<mime-mapping> |
817 |
<!-- OpenDocument Image --> |
818 |
<extension>odi</extension> |
819 |
<mime-type>application/vnd.oasis.opendocument.image</mime-type> |
820 |
</mime-mapping> |
821 |
<mime-mapping> |
822 |
<!-- OpenDocument Master Document --> |
823 |
<extension>odm</extension> |
824 |
<mime-type>application/vnd.oasis.opendocument.text-master</mime-type> |
825 |
</mime-mapping> |
826 |
<mime-mapping> |
827 |
<!-- OpenDocument Presentation --> |
828 |
<extension>odp</extension> |
829 |
<mime-type>application/vnd.oasis.opendocument.presentation</mime-type> |
830 |
</mime-mapping> |
831 |
<mime-mapping> |
832 |
<!-- OpenDocument Spreadsheet --> |
833 |
<extension>ods</extension> |
834 |
<mime-type>application/vnd.oasis.opendocument.spreadsheet</mime-type> |
835 |
</mime-mapping> |
836 |
<mime-mapping> |
837 |
<!-- OpenDocument Text --> |
838 |
<extension>odt</extension> |
839 |
<mime-type>application/vnd.oasis.opendocument.text</mime-type> |
840 |
</mime-mapping> |
841 |
<mime-mapping> |
842 |
<extension>ogg</extension> |
843 |
<mime-type>application/ogg</mime-type> |
844 |
</mime-mapping> |
845 |
<mime-mapping> |
846 |
<!-- OpenDocument Drawing Template --> |
847 |
<extension>otg </extension> |
848 |
<mime-type>application/vnd.oasis.opendocument.graphics-template</mime-type> |
849 |
</mime-mapping> |
850 |
<mime-mapping> |
851 |
<!-- HTML Document Template --> |
852 |
<extension>oth</extension> |
853 |
<mime-type>application/vnd.oasis.opendocument.text-web</mime-type> |
854 |
</mime-mapping> |
855 |
<mime-mapping> |
856 |
<!-- OpenDocument Presentation Template --> |
857 |
<extension>otp</extension> |
858 |
<mime-type>application/vnd.oasis.opendocument.presentation-template</mime-type> |
859 |
</mime-mapping> |
860 |
<mime-mapping> |
861 |
<!-- OpenDocument Spreadsheet Template --> |
862 |
<extension>ots</extension> |
863 |
<mime-type>application/vnd.oasis.opendocument.spreadsheet-template </mime-type> |
864 |
</mime-mapping> |
865 |
<mime-mapping> |
866 |
<!-- OpenDocument Text Template --> |
867 |
<extension>ott</extension> |
868 |
<mime-type>application/vnd.oasis.opendocument.text-template</mime-type> |
869 |
</mime-mapping> |
870 |
<mime-mapping> |
871 |
<extension>pbm</extension> |
872 |
<mime-type>image/x-portable-bitmap</mime-type> |
873 |
</mime-mapping> |
874 |
<mime-mapping> |
875 |
<extension>pct</extension> |
876 |
<mime-type>image/pict</mime-type> |
877 |
</mime-mapping> |
878 |
<mime-mapping> |
879 |
<extension>pdf</extension> |
880 |
<mime-type>application/pdf</mime-type> |
881 |
</mime-mapping> |
882 |
<mime-mapping> |
883 |
<extension>pgm</extension> |
884 |
<mime-type>image/x-portable-graymap</mime-type> |
885 |
</mime-mapping> |
886 |
<mime-mapping> |
887 |
<extension>pic</extension> |
888 |
<mime-type>image/pict</mime-type> |
889 |
</mime-mapping> |
890 |
<mime-mapping> |
891 |
<extension>pict</extension> |
892 |
<mime-type>image/pict</mime-type> |
893 |
</mime-mapping> |
894 |
<mime-mapping> |
895 |
<extension>pls</extension> |
896 |
<mime-type>audio/x-scpls</mime-type> |
897 |
</mime-mapping> |
898 |
<mime-mapping> |
899 |
<extension>png</extension> |
900 |
<mime-type>image/png</mime-type> |
901 |
</mime-mapping> |
902 |
<mime-mapping> |
903 |
<extension>pnm</extension> |
904 |
<mime-type>image/x-portable-anymap</mime-type> |
905 |
</mime-mapping> |
906 |
<mime-mapping> |
907 |
<extension>pnt</extension> |
908 |
<mime-type>image/x-macpaint</mime-type> |
909 |
</mime-mapping> |
910 |
<mime-mapping> |
911 |
<extension>ppm</extension> |
912 |
<mime-type>image/x-portable-pixmap</mime-type> |
913 |
</mime-mapping> |
914 |
<mime-mapping> |
915 |
<extension>ppt</extension> |
916 |
<mime-type>application/vnd.ms-powerpoint</mime-type> |
917 |
</mime-mapping> |
918 |
<mime-mapping> |
919 |
<extension>pps</extension> |
920 |
<mime-type>application/vnd.ms-powerpoint</mime-type> |
921 |
</mime-mapping> |
922 |
<mime-mapping> |
923 |
<extension>ps</extension> |
924 |
<mime-type>application/postscript</mime-type> |
925 |
</mime-mapping> |
926 |
<mime-mapping> |
927 |
<extension>psd</extension> |
928 |
<mime-type>image/x-photoshop</mime-type> |
929 |
</mime-mapping> |
930 |
<mime-mapping> |
931 |
<extension>qt</extension> |
932 |
<mime-type>video/quicktime</mime-type> |
933 |
</mime-mapping> |
934 |
<mime-mapping> |
935 |
<extension>qti</extension> |
936 |
<mime-type>image/x-quicktime</mime-type> |
937 |
</mime-mapping> |
938 |
<mime-mapping> |
939 |
<extension>qtif</extension> |
940 |
<mime-type>image/x-quicktime</mime-type> |
941 |
</mime-mapping> |
942 |
<mime-mapping> |
943 |
<extension>ras</extension> |
944 |
<mime-type>image/x-cmu-raster</mime-type> |
945 |
</mime-mapping> |
946 |
<mime-mapping> |
947 |
<extension>rdf</extension> |
948 |
<mime-type>application/rdf+xml</mime-type> |
949 |
</mime-mapping> |
950 |
<mime-mapping> |
951 |
<extension>rgb</extension> |
952 |
<mime-type>image/x-rgb</mime-type> |
953 |
</mime-mapping> |
954 |
<mime-mapping> |
955 |
<extension>rm</extension> |
956 |
<mime-type>application/vnd.rn-realmedia</mime-type> |
957 |
</mime-mapping> |
958 |
<mime-mapping> |
959 |
<extension>roff</extension> |
960 |
<mime-type>application/x-troff</mime-type> |
961 |
</mime-mapping> |
962 |
<mime-mapping> |
963 |
<extension>rtf</extension> |
964 |
<mime-type>application/rtf</mime-type> |
965 |
</mime-mapping> |
966 |
<mime-mapping> |
967 |
<extension>rtx</extension> |
968 |
<mime-type>text/richtext</mime-type> |
969 |
</mime-mapping> |
970 |
<mime-mapping> |
971 |
<extension>sh</extension> |
972 |
<mime-type>application/x-sh</mime-type> |
973 |
</mime-mapping> |
974 |
<mime-mapping> |
975 |
<extension>shar</extension> |
976 |
<mime-type>application/x-shar</mime-type> |
977 |
</mime-mapping> |
978 |
<!-- |
979 |
<mime-mapping> |
980 |
<extension>shtml</extension> |
981 |
<mime-type>text/x-server-parsed-html</mime-type> |
982 |
</mime-mapping> |
983 |
--> |
984 |
<mime-mapping> |
985 |
<extension>smf</extension> |
986 |
<mime-type>audio/x-midi</mime-type> |
987 |
</mime-mapping> |
988 |
<mime-mapping> |
989 |
<extension>sit</extension> |
990 |
<mime-type>application/x-stuffit</mime-type> |
991 |
</mime-mapping> |
992 |
<mime-mapping> |
993 |
<extension>snd</extension> |
994 |
<mime-type>audio/basic</mime-type> |
995 |
</mime-mapping> |
996 |
<mime-mapping> |
997 |
<extension>src</extension> |
998 |
<mime-type>application/x-wais-source</mime-type> |
999 |
</mime-mapping> |
1000 |
<mime-mapping> |
1001 |
<extension>sv4cpio</extension> |
1002 |
<mime-type>application/x-sv4cpio</mime-type> |
1003 |
</mime-mapping> |
1004 |
<mime-mapping> |
1005 |
<extension>sv4crc</extension> |
1006 |
<mime-type>application/x-sv4crc</mime-type> |
1007 |
</mime-mapping> |
1008 |
<mime-mapping> |
1009 |
<extension>svg</extension> |
1010 |
<mime-type>image/svg+xml</mime-type> |
1011 |
</mime-mapping> |
1012 |
<mime-mapping> |
1013 |
<extension>svgz</extension> |
1014 |
<mime-type>image/svg+xml</mime-type> |
1015 |
</mime-mapping> |
1016 |
<mime-mapping> |
1017 |
<extension>swf</extension> |
1018 |
<mime-type>application/x-shockwave-flash</mime-type> |
1019 |
</mime-mapping> |
1020 |
<mime-mapping> |
1021 |
<extension>t</extension> |
1022 |
<mime-type>application/x-troff</mime-type> |
1023 |
</mime-mapping> |
1024 |
<mime-mapping> |
1025 |
<extension>tar</extension> |
1026 |
<mime-type>application/x-tar</mime-type> |
1027 |
</mime-mapping> |
1028 |
<mime-mapping> |
1029 |
<extension>tcl</extension> |
1030 |
<mime-type>application/x-tcl</mime-type> |
1031 |
</mime-mapping> |
1032 |
<mime-mapping> |
1033 |
<extension>tex</extension> |
1034 |
<mime-type>application/x-tex</mime-type> |
1035 |
</mime-mapping> |
1036 |
<mime-mapping> |
1037 |
<extension>texi</extension> |
1038 |
<mime-type>application/x-texinfo</mime-type> |
1039 |
</mime-mapping> |
1040 |
<mime-mapping> |
1041 |
<extension>texinfo</extension> |
1042 |
<mime-type>application/x-texinfo</mime-type> |
1043 |
</mime-mapping> |
1044 |
<mime-mapping> |
1045 |
<extension>tif</extension> |
1046 |
<mime-type>image/tiff</mime-type> |
1047 |
</mime-mapping> |
1048 |
<mime-mapping> |
1049 |
<extension>tiff</extension> |
1050 |
<mime-type>image/tiff</mime-type> |
1051 |
</mime-mapping> |
1052 |
<mime-mapping> |
1053 |
<extension>tr</extension> |
1054 |
<mime-type>application/x-troff</mime-type> |
1055 |
</mime-mapping> |
1056 |
<mime-mapping> |
1057 |
<extension>tsv</extension> |
1058 |
<mime-type>text/tab-separated-values</mime-type> |
1059 |
</mime-mapping> |
1060 |
<mime-mapping> |
1061 |
<extension>txt</extension> |
1062 |
<mime-type>text/plain</mime-type> |
1063 |
</mime-mapping> |
1064 |
<mime-mapping> |
1065 |
<extension>ulw</extension> |
1066 |
<mime-type>audio/basic</mime-type> |
1067 |
</mime-mapping> |
1068 |
<mime-mapping> |
1069 |
<extension>ustar</extension> |
1070 |
<mime-type>application/x-ustar</mime-type> |
1071 |
</mime-mapping> |
1072 |
<mime-mapping> |
1073 |
<extension>vxml</extension> |
1074 |
<mime-type>application/voicexml+xml</mime-type> |
1075 |
</mime-mapping> |
1076 |
<mime-mapping> |
1077 |
<extension>xbm</extension> |
1078 |
<mime-type>image/x-xbitmap</mime-type> |
1079 |
</mime-mapping> |
1080 |
<mime-mapping> |
1081 |
<extension>xht</extension> |
1082 |
<mime-type>application/xhtml+xml</mime-type> |
1083 |
</mime-mapping> |
1084 |
<mime-mapping> |
1085 |
<extension>xhtml</extension> |
1086 |
<mime-type>application/xhtml+xml</mime-type> |
1087 |
</mime-mapping> |
1088 |
<mime-mapping> |
1089 |
<extension>xls</extension> |
1090 |
<mime-type>application/vnd.ms-excel</mime-type> |
1091 |
</mime-mapping> |
1092 |
<mime-mapping> |
1093 |
<extension>xml</extension> |
1094 |
<mime-type>application/xml</mime-type> |
1095 |
</mime-mapping> |
1096 |
<mime-mapping> |
1097 |
<extension>xpm</extension> |
1098 |
<mime-type>image/x-xpixmap</mime-type> |
1099 |
</mime-mapping> |
1100 |
<mime-mapping> |
1101 |
<extension>xsl</extension> |
1102 |
<mime-type>application/xml</mime-type> |
1103 |
</mime-mapping> |
1104 |
<mime-mapping> |
1105 |
<extension>xslt</extension> |
1106 |
<mime-type>application/xslt+xml</mime-type> |
1107 |
</mime-mapping> |
1108 |
<mime-mapping> |
1109 |
<extension>xul</extension> |
1110 |
<mime-type>application/vnd.mozilla.xul+xml</mime-type> |
1111 |
</mime-mapping> |
1112 |
<mime-mapping> |
1113 |
<extension>xwd</extension> |
1114 |
<mime-type>image/x-xwindowdump</mime-type> |
1115 |
</mime-mapping> |
1116 |
<mime-mapping> |
1117 |
<extension>vsd</extension> |
1118 |
<mime-type>application/x-visio</mime-type> |
1119 |
</mime-mapping> |
1120 |
<mime-mapping> |
1121 |
<extension>wav</extension> |
1122 |
<mime-type>audio/x-wav</mime-type> |
1123 |
</mime-mapping> |
1124 |
<mime-mapping> |
1125 |
<!-- Wireless Bitmap --> |
1126 |
<extension>wbmp</extension> |
1127 |
<mime-type>image/vnd.wap.wbmp</mime-type> |
1128 |
</mime-mapping> |
1129 |
<mime-mapping> |
1130 |
<!-- WML Source --> |
1131 |
<extension>wml</extension> |
1132 |
<mime-type>text/vnd.wap.wml</mime-type> |
1133 |
</mime-mapping> |
1134 |
<mime-mapping> |
1135 |
<!-- Compiled WML --> |
1136 |
<extension>wmlc</extension> |
1137 |
<mime-type>application/vnd.wap.wmlc</mime-type> |
1138 |
</mime-mapping> |
1139 |
<mime-mapping> |
1140 |
<!-- WML Script Source --> |
1141 |
<extension>wmls</extension> |
1142 |
<mime-type>text/vnd.wap.wmlscript</mime-type> |
1143 |
</mime-mapping> |
1144 |
<mime-mapping> |
1145 |
<!-- Compiled WML Script --> |
1146 |
<extension>wmlscriptc</extension> |
1147 |
<mime-type>application/vnd.wap.wmlscriptc</mime-type> |
1148 |
</mime-mapping> |
1149 |
<mime-mapping> |
1150 |
<extension>wmv</extension> |
1151 |
<mime-type>video/x-ms-wmv</mime-type> |
1152 |
</mime-mapping> |
1153 |
<mime-mapping> |
1154 |
<extension>wrl</extension> |
1155 |
<mime-type>x-world/x-vrml</mime-type> |
1156 |
</mime-mapping> |
1157 |
<mime-mapping> |
1158 |
<extension>wspolicy</extension> |
1159 |
<mime-type>application/wspolicy+xml</mime-type> |
1160 |
</mime-mapping> |
1161 |
<mime-mapping> |
1162 |
<extension>Z</extension> |
1163 |
<mime-type>application/x-compress</mime-type> |
1164 |
</mime-mapping> |
1165 |
<mime-mapping> |
1166 |
<extension>z</extension> |
1167 |
<mime-type>application/x-compress</mime-type> |
1168 |
</mime-mapping> |
1169 |
<mime-mapping> |
1170 |
<extension>zip</extension> |
1171 |
<mime-type>application/zip</mime-type> |
1172 |
</mime-mapping> |
1173 |
|
1174 |
<!-- ==================== Default Welcome File List ===================== --> |
1175 |
<!-- When a request URI refers to a directory, the default servlet looks --> |
1176 |
<!-- for a "welcome file" within that directory and, if present, --> |
1177 |
<!-- to the corresponding resource URI for display. If no welcome file --> |
1178 |
<!-- is present, the default servlet either serves a directory listing, --> |
1179 |
<!-- or returns a 404 status, depending on how it is configured. --> |
1180 |
<!-- --> |
1181 |
<!-- If you define welcome files in your own application's web.xml --> |
1182 |
<!-- deployment descriptor, that list *replaces* the list configured --> |
1183 |
<!-- here, so be sure that you include any of the default values that --> |
1184 |
<!-- you wish to include. --> |
1185 |
|
1186 |
<welcome-file-list> |
1187 |
<welcome-file>index.html</welcome-file> |
1188 |
<welcome-file>index.htm</welcome-file> |
1189 |
<welcome-file>index.jsp</welcome-file> |
1190 |
</welcome-file-list> |
1191 |
|
1192 |
<context-param> |
1193 |
<param-name>oa4mp:mp-oa2.client.config.file</param-name> |
1194 |
<param-value>{{ mp_client_conf_file }}</param-value> |
1195 |
</context-param> |
1196 |
<context-param> |
1197 |
<param-name>oa4mp:mp-oa2.client.config.name</param-name> |
1198 |
<param-value>default</param-value> |
1199 |
</context-param> |
1200 |
|
1201 |
<context-param> |
1202 |
<param-name>oa4mp:mp-oa2.server.config.file</param-name> |
1203 |
<param-value>{{ mp_server_conf_file }}</param-value> |
1204 |
</context-param> |
1205 |
<context-param> |
1206 |
<param-name>oa4mp:mp-oa2.server.config.name</param-name> |
1207 |
<param-value>default</param-value> |
1208 |
</context-param> |
1209 |
|
1210 |
<context-param> |
1211 |
<param-name>oa4mp:vp-oa2.client.config.file</param-name> |
1212 |
<param-value>{{ vo_portal_conf_file }}</param-value> |
1213 |
</context-param> |
1214 |
<context-param> |
1215 |
<param-name>oa4mp:vp-oa2.client.config.name</param-name> |
1216 |
<param-value>default</param-value> |
1217 |
</context-param> |
1218 |
|
1219 |
</web-app> |