From: <jbo...@li...> - 2005-11-04 19:53:06
|
Author: aron.gombas Date: 2005-11-04 14:52:56 -0500 (Fri, 04 Nov 2005) New Revision: 1514 Added: trunk/labs/kosmos/conf-portlet/exo/ trunk/labs/kosmos/conf-portlet/exo/web.xml Removed: trunk/labs/kosmos/conf-portlet/sun-portal-server/ Log: eXo config added, Sun removed Added: trunk/labs/kosmos/conf-portlet/exo/web.xml =================================================================== --- trunk/labs/kosmos/conf-portlet/exo/web.xml 2005-11-04 17:54:21 UTC (rev 1513) +++ trunk/labs/kosmos/conf-portlet/exo/web.xml 2005-11-04 19:52:56 UTC (rev 1514) @@ -0,0 +1,41 @@ +<?xml version="1.0"?> + +<!DOCTYPE web-app + PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" + "http://java.sun.com/dtd/web-app_2_3.dtd"> +<web-app> + + <display-name>Kosmos Portlet</display-name> + <description>Kosmos is a portlet-based web application. It can run only inside a portlet container.</description> + + <!-- JSTL configuration --> + <context-param> + <param-name>javax.servlet.jsp.jstl.fmt.locale</param-name> + <param-value>en</param-value> + </context-param> + + <!-- eXo-specific parts --> + <listener> + <listener-class>org.exoplatform.services.portletcontainer.impl.servlet.PortletApplicationListener</listener-class> + </listener> + + <servlet> + <servlet-name>PortletWrapper</servlet-name> + <servlet-class>org.exoplatform.services.portletcontainer.impl.servlet.ServletWrapper</servlet-class> + </servlet> + + <servlet-mapping> + <servlet-name>PortletWrapper</servlet-name> + <url-pattern>/PortletWrapper</url-pattern> + </servlet-mapping> + + <!-- JSP configuration --> + <taglib> + <taglib-uri>http://labs.jboss.com/projects/kosmos</taglib-uri> + <taglib-location>/WEB-INF/tld/kosmos-taglib.tld</taglib-location> + </taglib> + <taglib> + <taglib-uri>http://displaytag.sf.net/el</taglib-uri> + <taglib-location>/WEB-INF/tld/displaytag-el-12.tld</taglib-location> + </taglib> +</web-app> |