42 lines
1.1 KiB
XML
Executable File
42 lines
1.1 KiB
XML
Executable File
<!DOCTYPE web-app
|
|
PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
|
|
"http://java.sun.com/j2ee/dtds/web-app_2_3.dtd">
|
|
|
|
<web-app>
|
|
<servlet>
|
|
<servlet-name>reg</servlet-name>
|
|
<servlet-class>com.arsdigita.web.ContextRegistrationServlet</servlet-class>
|
|
<init-param>
|
|
<param-name>uri</param-name>
|
|
<param-value>/ccm-auth-http/</param-value>
|
|
</init-param>
|
|
<load-on-startup>1</load-on-startup>
|
|
</servlet>
|
|
|
|
<servlet>
|
|
<servlet-name>files</servlet-name>
|
|
<servlet-class>com.arsdigita.web.ApplicationFileServlet</servlet-class>
|
|
<init-param>
|
|
<param-name>template-path</param-name>
|
|
<param-value>/templates/ccm-auth-http</param-value>
|
|
</init-param>
|
|
</servlet>
|
|
|
|
<servlet-mapping>
|
|
<servlet-name>files</servlet-name>
|
|
<url-pattern>/files/*</url-pattern>
|
|
</servlet-mapping>
|
|
|
|
<!-- TAGLIBS -->
|
|
<taglib>
|
|
<taglib-uri>/WEB-INF/bebop-show.tld</taglib-uri>
|
|
<taglib-location>/WEB-INF/bebop-show.tld</taglib-location>
|
|
</taglib>
|
|
|
|
<taglib>
|
|
<taglib-uri>/WEB-INF/bebop-define.tld</taglib-uri>
|
|
<taglib-location>/WEB-INF/bebop-define.tld</taglib-location>
|
|
</taglib>
|
|
|
|
</web-app>
|