62 lines
2.1 KiB
XML
62 lines
2.1 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<web-app
|
|
xmlns="http://xmlns.jcp.org/xml/ns/javaee"
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd"
|
|
metadata-complete="false"
|
|
version="3.1">
|
|
<display-name>OpenRefine</display-name>
|
|
<description>OpenRefine Webapp</description>
|
|
|
|
<!--+
|
|
| This forces all the session cookies to default to the root path.
|
|
| to allow sessions to work even when butterfly is handling
|
|
| multiple zones.
|
|
| NOTE: this is jetty-specific, so other web-app servers
|
|
| might require different parameters.
|
|
+-->
|
|
<context-param>
|
|
<param-name>org.mortbay.jetty.servlet.SessionPath</param-name>
|
|
<param-value>/</param-value>
|
|
</context-param>
|
|
|
|
<filter>
|
|
<filter-name>GzipFilter</filter-name>
|
|
<filter-class>org.eclipse.jetty.servlets.GzipFilter</filter-class>
|
|
<init-param>
|
|
<param-name>mimeTypes</param-name>
|
|
<param-value>text/html,text/plain,text/xml,application/xhtml+xml,text/css,text/javascript,application/javascript,application/json,image/svg+xml</param-value>
|
|
</init-param>
|
|
</filter>
|
|
<filter-mapping>
|
|
<filter-name>GzipFilter</filter-name>
|
|
<url-pattern>/*</url-pattern>
|
|
</filter-mapping>
|
|
|
|
<servlet>
|
|
<servlet-name>refine</servlet-name>
|
|
<servlet-class>com.google.refine.RefineServlet</servlet-class>
|
|
<init-param>
|
|
<param-name>refine.version</param-name>
|
|
<param-value>$VERSION</param-value>
|
|
</init-param>
|
|
<init-param>
|
|
<param-name>refine.revision</param-name>
|
|
<param-value>$REVISION</param-value>
|
|
</init-param>
|
|
<!-- added by Wikier, unused by us
|
|
<init-param>
|
|
<param-name>refine.data</param-name>
|
|
<param-value>/tmp/refine</param-value>
|
|
</init-param>
|
|
-->
|
|
</servlet>
|
|
|
|
<servlet-mapping>
|
|
<servlet-name>refine</servlet-name>
|
|
<url-pattern>/*</url-pattern>
|
|
</servlet-mapping>
|
|
|
|
|
|
</web-app>
|