564 lines
18 KiB
Plaintext
Executable File
564 lines
18 KiB
Plaintext
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>
|
|
|
|
<display-name>CCM ZeS</display-name>
|
|
<description>Content and Collaboration Management</description>
|
|
|
|
<!-- path and filename of the log4j user accessible config file
|
|
WEB-INF/conf/log4j.properties is the built-in default value -->
|
|
<context-param>
|
|
<param-name>log4j-conf-file</param-name>
|
|
<param-value>WEB-INF/conf/log4j.properties</param-value>
|
|
</context-param>
|
|
|
|
|
|
<!-- Require secure connection by redirect to host-port part
|
|
of parameter waf.web.secure_server
|
|
NOT USED with ZeS
|
|
<filter>
|
|
<filter-name>secured</filter-name>
|
|
<filter-class>com.arsdigita.web.SecureFilter</filter-class>
|
|
</filter>
|
|
-->
|
|
<!-- Initialize Profiler timers
|
|
NOT USED with ZeS standard / production
|
|
<filter>
|
|
<filter-name>profiler</filter-name>
|
|
<filter-class>com.arsdigita.profiler.ProfilerFilter</filter-class>
|
|
</filter>
|
|
-->
|
|
|
|
|
|
<filter>
|
|
<filter-name>shortcuts</filter-name>
|
|
<filter-class>com.arsdigita.london.shortcuts.ShortcutFilter</filter-class>
|
|
</filter>
|
|
|
|
<filter>
|
|
<filter-name>subsite</filter-name>
|
|
<filter-class>com.arsdigita.london.subsite.SubsiteFilter</filter-class>
|
|
</filter>
|
|
|
|
|
|
<!-- NOT USED HERE
|
|
<filter-mapping>
|
|
<filter-name>secured</filter-name>
|
|
<url-pattern>/*</url-pattern>
|
|
</filter-mapping>
|
|
|
|
<filter-mapping>
|
|
<filter-name>profiler</filter-name>
|
|
<url-pattern>/*</url-pattern>
|
|
</filter-mapping>
|
|
-->
|
|
|
|
|
|
<filter-mapping>
|
|
<filter-name>subsite</filter-name>
|
|
<url-pattern>/*</url-pattern>
|
|
</filter-mapping>
|
|
|
|
<filter-mapping>
|
|
<filter-name>shortcuts</filter-name>
|
|
<url-pattern>/*</url-pattern>
|
|
</filter-mapping>
|
|
|
|
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
Context Listener
|
|
required and used to initialize the runtime environment before any other
|
|
task is performed or any servlet initialized.
|
|
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
|
|
<listener>
|
|
<listener-class>com.arsdigita.web.CCMApplicationContextListener</listener-class>
|
|
</listener>
|
|
|
|
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
BASE SERVLET DECLARATIONS SECTION
|
|
basically requirred by ccm-core
|
|
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
|
|
|
|
<servlet>
|
|
<servlet-name>reg</servlet-name>
|
|
<servlet-class>com.arsdigita.web.ContextRegistrationServlet</servlet-class>
|
|
<init-param>
|
|
<param-name>uri</param-name>
|
|
<param-value>/</param-value>
|
|
</init-param>
|
|
<load-on-startup>1</load-on-startup>
|
|
</servlet>
|
|
|
|
<servlet>
|
|
<servlet-name>legacy-dispatcher</servlet-name>
|
|
<servlet-class>com.arsdigita.sitenode.SiteNodeDispatcher</servlet-class>
|
|
<load-on-startup>3</load-on-startup>
|
|
</servlet>
|
|
|
|
<servlet>
|
|
<servlet-name>ccm-dispatcher</servlet-name>
|
|
<servlet-class>com.arsdigita.web.DispatcherServlet</servlet-class>
|
|
<init-param>
|
|
<param-name>fallback-servlet</param-name>
|
|
<param-value>legacy-dispatcher</param-value>
|
|
</init-param>
|
|
<load-on-startup>2</load-on-startup>
|
|
</servlet>
|
|
|
|
<servlet>
|
|
<servlet-name>legacy-adapter</servlet-name>
|
|
<servlet-class>com.arsdigita.web.LegacyAdapterServlet</servlet-class>
|
|
</servlet>
|
|
|
|
<servlet>
|
|
<servlet-name>cache-manager</servlet-name>
|
|
<servlet-class>com.arsdigita.caching.CacheServlet</servlet-class>
|
|
</servlet>
|
|
|
|
<servlet>
|
|
<servlet-name>db-test</servlet-name>
|
|
<servlet-class>com.arsdigita.web.monitoring.DBTestServlet</servlet-class>
|
|
</servlet>
|
|
|
|
<servlet>
|
|
<servlet-name>versioning-log</servlet-name>
|
|
<servlet-class>com.arsdigita.versioning.VersioningServlet</servlet-class>
|
|
</servlet>
|
|
|
|
<servlet>
|
|
<servlet-name>oid-redirect</servlet-name>
|
|
<servlet-class>com.arsdigita.web.OIDRedirectServlet</servlet-class>
|
|
</servlet>
|
|
|
|
<servlet>
|
|
<servlet-name>resource-resolver</servlet-name>
|
|
<servlet-class>com.arsdigita.web.ResourceServlet</servlet-class>
|
|
</servlet>
|
|
|
|
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
ADDITIONAL SERVLET DECLARATIONS SECTION
|
|
basically requirred by ccm-cms
|
|
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
|
|
|
|
<servlet>
|
|
<servlet-name>content-section</servlet-name>
|
|
<servlet-class>com.arsdigita.cms.ContentSectionServlet</servlet-class>
|
|
</servlet>
|
|
|
|
<servlet>
|
|
<servlet-name>content-type-xsl</servlet-name>
|
|
<servlet-class>com.arsdigita.cms.dispatcher.ContentTypeXSLServlet</servlet-class>
|
|
</servlet>
|
|
|
|
<servlet>
|
|
<servlet-name>content-item-xsl</servlet-name>
|
|
<servlet-class>com.arsdigita.cms.dispatcher.ContentItemXSLServlet</servlet-class>
|
|
</servlet>
|
|
|
|
<servlet>
|
|
<servlet-name>template-xsl</servlet-name>
|
|
<servlet-class>com.arsdigita.cms.dispatcher.TemplateXSLServlet</servlet-class>
|
|
</servlet>
|
|
|
|
|
|
<servlet>
|
|
<servlet-name>TextOnlyServlet</servlet-name>
|
|
<display-name>Text Only Servlet</display-name>
|
|
<servlet-class>
|
|
com.arsdigita.web.InternalPrefixerServlet
|
|
</servlet-class>
|
|
<init-param>
|
|
<param-name>prefix</param-name>
|
|
<param-value>/text</param-value>
|
|
</init-param>
|
|
</servlet>
|
|
|
|
<servlet>
|
|
<servlet-name>PrintFriendlyServlet</servlet-name>
|
|
<display-name>Printer Friendly Output Servlet</display-name>
|
|
<servlet-class>
|
|
com.arsdigita.web.InternalPrefixerServlet
|
|
</servlet-class>
|
|
<init-param>
|
|
<param-name>prefix</param-name>
|
|
<param-value>/print</param-value>
|
|
</init-param>
|
|
</servlet>
|
|
|
|
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
MODULES SERVLET DECLARATIONS SECTION
|
|
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
|
|
|
|
<!-- module ccm-ldn-atoz - servlet definitions BEGIN
|
|
NOT USED with ZeS
|
|
<servlet>
|
|
<servlet-name>atoz-files</servlet-name>
|
|
<servlet-class>com.arsdigita.web.ApplicationFileServlet</servlet-class>
|
|
<init-param>
|
|
<param-name>template-path</param-name>
|
|
<param-value>/templates/ccm-ldn-atoz</param-value>
|
|
</init-param>
|
|
</servlet>
|
|
module ccm-ldn-atoz - servlet definitions END -->
|
|
|
|
<!-- module ccm-forum - servlet declarations BEGIN -->
|
|
<servlet>
|
|
<servlet-name>forum-main</servlet-name>
|
|
<servlet-class>com.arsdigita.forum.ForumServlet</servlet-class>
|
|
</servlet>
|
|
<!-- module ccm-forum - servlet declarations END -->
|
|
|
|
<servlet>
|
|
<servlet-name>portal-files</servlet-name>
|
|
<servlet-class>com.arsdigita.web.ApplicationFileServlet</servlet-class>
|
|
<init-param>
|
|
<param-name>template-path</param-name>
|
|
<param-value>/templates/ccm-ldn-portal</param-value>
|
|
</init-param>
|
|
</servlet>
|
|
|
|
<servlet>
|
|
<servlet-name>navigation-files</servlet-name>
|
|
<servlet-class>com.arsdigita.web.ApplicationFileServlet</servlet-class>
|
|
<init-param>
|
|
<param-name>template-path</param-name>
|
|
<param-value>/templates/ccm-ldn-navigation</param-value>
|
|
</init-param>
|
|
<init-param>
|
|
<param-name>file-resolver</param-name>
|
|
<param-value>com.arsdigita.london.navigation.NavigationFileResolver</param-value>
|
|
</init-param>
|
|
</servlet>
|
|
|
|
<servlet>
|
|
<servlet-name>portlet-type-xsl</servlet-name>
|
|
<servlet-class>com.arsdigita.dispatcher.PortletTypeXSLServlet</servlet-class>
|
|
</servlet>
|
|
|
|
<!-- module ccm-ldn-rss - servlet declaration BEGIN -->
|
|
<servlet>
|
|
<servlet-name>rss-files</servlet-name>
|
|
<servlet-class>com.arsdigita.web.ApplicationFileServlet</servlet-class>
|
|
<init-param>
|
|
<param-name>template-path</param-name>
|
|
<param-value>/templates/ccm-ldn-rss</param-value>
|
|
</init-param>
|
|
<init-param>
|
|
<param-name>file-resolver</param-name>
|
|
<param-value>com.arsdigita.london.rss.RSSFileResolver</param-value>
|
|
</init-param>
|
|
</servlet>
|
|
<!-- module ccm-ldn-rss - servlet declaration END -->
|
|
|
|
<!-- module ccm-ldn-search - servlet declarations BEGIN -->
|
|
<servlet>
|
|
<servlet-name>worker</servlet-name>
|
|
<servlet-class>com.arsdigita.london.search.SearchWorkerServlet</servlet-class>
|
|
<load-on-startup>4</load-on-startup>
|
|
</servlet>
|
|
|
|
<servlet>
|
|
<servlet-name>search-files</servlet-name>
|
|
<servlet-class>com.arsdigita.web.ApplicationFileServlet</servlet-class>
|
|
<init-param>
|
|
<param-name>template-path</param-name>
|
|
<param-value>/templates/ccm-ldn-search</param-value>
|
|
</init-param>
|
|
</servlet>
|
|
|
|
<servlet>
|
|
<servlet-name>AxisServlet</servlet-name>
|
|
<display-name>Apache-Axis Servlet</display-name>
|
|
<servlet-class>
|
|
org.apache.axis.transport.http.AxisServlet
|
|
</servlet-class>
|
|
</servlet>
|
|
<!-- module ccm-ldn-search - servlet declarations END -->
|
|
|
|
<!-- module ccm-ldn-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-ldn-shortcuts</param-value>
|
|
</init-param>
|
|
</servlet>
|
|
|
|
<!-- module ccm-ldn-subsite - servlet declarations BEGIN -->
|
|
<servlet>
|
|
<servlet-name>subsite-files</servlet-name>
|
|
<servlet-class>com.arsdigita.web.ApplicationFileServlet</servlet-class>
|
|
<init-param>
|
|
<param-name>template-path</param-name>
|
|
<param-value>/templates/ccm-ldn-subsite</param-value>
|
|
</init-param>
|
|
</servlet>
|
|
<!-- module ccm-ldn-subsite - servlet declarations END -->
|
|
|
|
<!-- module ccm-ldn-terms - servlet declarations BEGIN -->
|
|
<servlet>
|
|
<servlet-name>terms-files</servlet-name>
|
|
<servlet-class>com.arsdigita.web.ApplicationFileServlet</servlet-class>
|
|
<init-param>
|
|
<param-name>template-path</param-name>
|
|
<param-value>/templates/ccm-ldn-terms</param-value>
|
|
</init-param>
|
|
</servlet>
|
|
<!-- module ccm-ldn-terms - servlet declarations END -->
|
|
|
|
<!-- module ccm-ldn-themes - servlet declarations BEGIN -->
|
|
<servlet>
|
|
<servlet-name>theme-files</servlet-name>
|
|
<servlet-class>com.arsdigita.web.ApplicationFileServlet</servlet-class>
|
|
<init-param>
|
|
<param-name>template-path</param-name>
|
|
<param-value>/templates/ccm-ldn-theme</param-value>
|
|
</init-param>
|
|
</servlet>
|
|
|
|
<servlet>
|
|
<servlet-name>ThemeDownload</servlet-name>
|
|
<servlet-class>com.arsdigita.london.theme.dispatcher.ThemeDownloadServlet</servlet-class>
|
|
</servlet>
|
|
|
|
<servlet>
|
|
<servlet-name>ThemePreviewServlet</servlet-name>
|
|
<display-name>Servlet to allow admins to preview look/feel</display-name>
|
|
<servlet-class>
|
|
com.arsdigita.london.theme.dispatcher.InternalThemePrefixerServlet
|
|
</servlet-class>
|
|
<init-param>
|
|
<param-name>prefix</param-name>
|
|
<param-value>/theme</param-value>
|
|
</init-param>
|
|
</servlet>
|
|
<!-- module ccm-ldn-themes - servlet declarations END -->
|
|
|
|
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
MODULES SERVLET MAPPINGS SECTION
|
|
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
|
|
|
|
<!-- module ccm-ldn-atoz - servlet mappings BEGIN - - >
|
|
NOT USED HERE
|
|
<servlet-mapping>
|
|
<servlet-name>atoz-files</servlet-name>
|
|
<url-pattern>/ccm-ldn-atoz/files/*</url-pattern>
|
|
</servlet-mapping>
|
|
< ! - - module ccm-ldn-atoz - servlet mappings END -->
|
|
|
|
<!-- module ccm-forum - servlet mappings BEGIN -->
|
|
<servlet-mapping>
|
|
<servlet-name>forum-main</servlet-name>
|
|
<url-pattern>/forum-main/main/*</url-pattern>
|
|
</servlet-mapping>
|
|
<!-- module ccm-forum - servlet mappings END -->
|
|
|
|
<servlet-mapping>
|
|
<servlet-name>portlet-type-xsl</servlet-name>
|
|
<url-pattern>/__ccm__/servlet/portlet-type/*</url-pattern>
|
|
</servlet-mapping>
|
|
|
|
<servlet-mapping>
|
|
<servlet-name>portal-files</servlet-name>
|
|
<url-pattern>/ccm-ldn-portal/files/*</url-pattern>
|
|
</servlet-mapping>
|
|
|
|
<servlet-mapping>
|
|
<servlet-name>navigation-files</servlet-name>
|
|
<url-pattern>/ccm-ldn-navigation/files/*</url-pattern>
|
|
</servlet-mapping>
|
|
|
|
<!-- module ccm-ldn-rss - servlet mappings -->
|
|
<servlet-mapping>
|
|
<servlet-name>rss-files</servlet-name>
|
|
<url-pattern>/ccm-ldn-rss/files/*</url-pattern>
|
|
</servlet-mapping>
|
|
|
|
<!-- module ccm-ldn-search - servlet mappings BEGIN -->
|
|
<servlet-mapping>
|
|
<servlet-name>search-files</servlet-name>
|
|
<url-pattern>/ccm-ldn-search/files/*</url-pattern>
|
|
</servlet-mapping>
|
|
|
|
<servlet-mapping>
|
|
<servlet-name>AxisServlet</servlet-name>
|
|
<url-pattern>/services/*</url-pattern>
|
|
</servlet-mapping>
|
|
<!-- module ccm-ldn-search - servlet mappings END -->
|
|
|
|
<!-- module ccm-ldn-shortcuts - servlet mappings -->
|
|
<servlet-mapping>
|
|
<servlet-name>shortcuts-files</servlet-name>
|
|
<url-pattern>/ccm-ldn-shortcuts/files/*</url-pattern>
|
|
</servlet-mapping>
|
|
|
|
<!-- module ccm-ldn-subsite - servlet mappings BEGIN -->
|
|
<servlet-mapping>
|
|
<servlet-name>subsite-files</servlet-name>
|
|
<url-pattern>/ccm-ldn-subsite/files/*</url-pattern>
|
|
</servlet-mapping>
|
|
<!-- module ccm-ldn-subsite - servlet mappings END -->
|
|
|
|
<!-- module ccm-ldn-terms - servlet mappings BEGIN -->
|
|
<servlet-mapping>
|
|
<servlet-name>terms-files</servlet-name>
|
|
<url-pattern>/ccm-ldn-terms/files/*</url-pattern>
|
|
</servlet-mapping>
|
|
<!-- module ccm-ldn-terms - servlet mappings END -->
|
|
|
|
<!-- module ccm-ldn-theme - servlet mappings BEGIN -->
|
|
<servlet-mapping>
|
|
<servlet-name>theme-files</servlet-name>
|
|
<url-pattern>/theme-files/*</url-pattern>
|
|
</servlet-mapping>
|
|
|
|
<servlet-mapping>
|
|
<servlet-name>ThemeDownload</servlet-name>
|
|
<url-pattern>/theme-files/download/*</url-pattern>
|
|
</servlet-mapping>
|
|
|
|
<servlet-mapping>
|
|
<servlet-name>ThemePreviewServlet</servlet-name>
|
|
<url-pattern>/theme/*</url-pattern>
|
|
</servlet-mapping>
|
|
<!-- module ccm-ldn-themes - servlet mappings END -->
|
|
|
|
|
|
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
BASE SERVLET MAPPINGS SECTION
|
|
basically requirred by ccm-core
|
|
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
|
|
|
|
<servlet-mapping>
|
|
<servlet-name>reg</servlet-name>
|
|
<url-pattern>/__ccm__/null/reg/*</url-pattern>
|
|
</servlet-mapping>
|
|
|
|
<servlet-mapping>
|
|
<servlet-name>ccm-dispatcher</servlet-name>
|
|
<url-pattern>/ccm/*</url-pattern>
|
|
</servlet-mapping>
|
|
|
|
<servlet-mapping>
|
|
<servlet-name>legacy-adapter</servlet-name>
|
|
<url-pattern>/__ccm__/servlet/legacy-adapter/*</url-pattern>
|
|
</servlet-mapping>
|
|
|
|
<servlet-mapping>
|
|
<servlet-name>cache-manager</servlet-name>
|
|
<url-pattern>/expireCache/*</url-pattern>
|
|
</servlet-mapping>
|
|
|
|
<servlet-mapping>
|
|
<servlet-name>db-test</servlet-name>
|
|
<url-pattern>/dbtest</url-pattern>
|
|
</servlet-mapping>
|
|
|
|
<servlet-mapping>
|
|
<servlet-name>versioning-log</servlet-name>
|
|
<url-pattern>/versioning/*</url-pattern>
|
|
</servlet-mapping>
|
|
|
|
<servlet-mapping>
|
|
<servlet-name>oid-redirect</servlet-name>
|
|
<url-pattern>/redirect/*</url-pattern>
|
|
</servlet-mapping>
|
|
|
|
<servlet-mapping>
|
|
<servlet-name>resource-resolver</servlet-name>
|
|
<url-pattern>/resource/*</url-pattern>
|
|
</servlet-mapping>
|
|
|
|
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
ADDITIONAL SERVLET MAPPINGS SECTION
|
|
basically requirred by ccm-cms
|
|
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
|
|
|
|
<servlet-mapping>
|
|
<servlet-name>content-section</servlet-name>
|
|
<url-pattern>/__ccm__/servlet/content-section/*</url-pattern>
|
|
</servlet-mapping>
|
|
|
|
<servlet-mapping>
|
|
<servlet-name>content-item-xsl</servlet-name>
|
|
<url-pattern>/__ccm__/servlet/content-item/*</url-pattern>
|
|
</servlet-mapping>
|
|
|
|
<servlet-mapping>
|
|
<servlet-name>content-type-xsl</servlet-name>
|
|
<url-pattern>/__ccm__/servlet/content-type/*</url-pattern>
|
|
</servlet-mapping>
|
|
|
|
<servlet-mapping>
|
|
<servlet-name>template-xsl</servlet-name>
|
|
<url-pattern>/__ccm__/servlet/template/*</url-pattern>
|
|
</servlet-mapping>
|
|
|
|
<servlet-mapping>
|
|
<servlet-name>TextOnlyServlet</servlet-name>
|
|
<url-pattern>/text/*</url-pattern>
|
|
</servlet-mapping>
|
|
|
|
<servlet-mapping>
|
|
<servlet-name>PrintFriendlyServlet</servlet-name>
|
|
<url-pattern>/print/*</url-pattern>
|
|
</servlet-mapping>
|
|
|
|
|
|
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
ERROR PAGES
|
|
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
|
|
|
|
<error-page>
|
|
<exception-type>com.arsdigita.dispatcher.AccessDeniedException</exception-type>
|
|
<location>/error/access-denied.jsp</location>
|
|
</error-page>
|
|
|
|
<error-page>
|
|
<exception-type>com.arsdigita.dispatcher.ObjectNotFoundException</exception-type>
|
|
<location>/error/object-not-found.jsp</location>
|
|
</error-page>
|
|
|
|
<error-page>
|
|
<exception-type>com.arsdigita.kernel.permissions.PermissionException</exception-type>
|
|
<location>/error/permission-denied.jsp</location>
|
|
</error-page>
|
|
|
|
<error-page>
|
|
<exception-type>com.arsdigita.persistence.DbNotAvailableException</exception-type>
|
|
<location>/error/db-not-available.jsp</location>
|
|
</error-page>
|
|
|
|
<error-page>
|
|
<exception-type>com.arsdigita.db.DbNotAvailableException</exception-type>
|
|
<location>/error/db-not-available.jsp</location>
|
|
</error-page>
|
|
|
|
<error-page>
|
|
<exception-type>java.lang.Exception</exception-type>
|
|
<location>/error/general.jsp</location>
|
|
</error-page>
|
|
|
|
<error-page>
|
|
<exception-type>java.lang.Error</exception-type>
|
|
<location>/error/general.jsp</location>
|
|
</error-page>
|
|
|
|
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
TAG LIBS
|
|
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
|
|
|
|
<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>
|