34 lines
1.2 KiB
XML
34 lines
1.2 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<web-app xmlns="http://java.sun.com/xml/ns/j2ee"
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd"
|
|
version="2.4">
|
|
|
|
<filter>
|
|
<filter-name>shortcuts</filter-name>
|
|
<filter-class>com.arsdigita.shortcuts.ShortcutFilter</filter-class>
|
|
</filter>
|
|
|
|
<filter-mapping>
|
|
<filter-name>shortcuts</filter-name>
|
|
<url-pattern>/*</url-pattern>
|
|
</filter-mapping>
|
|
|
|
<!-- module ccm-shortcuts - servlet definitions -->
|
|
<servlet>
|
|
<servlet-name>shortcuts-files</servlet-name>
|
|
<servlet-class>com.arsdigita.web.ApplicationFileServlet</servlet-class>
|
|
<init-param>
|
|
<param-name>template-path</param-name>
|
|
<param-value>/templates/ccm-shortcuts</param-value>
|
|
</init-param>
|
|
</servlet>
|
|
|
|
<!-- module ccm-shortcuts - servlet mappings -->
|
|
<servlet-mapping>
|
|
<servlet-name>shortcuts-files</servlet-name>
|
|
<url-pattern>/ccm-shortcuts/files/*</url-pattern>
|
|
</servlet-mapping>
|
|
|
|
</web-app>
|