[weld-commits] Weld SVN: r5711 - core/trunk/tests/src/test/resources/org/jboss/weld/tests/contexts/errorpage.

weld-commits at lists.jboss.org weld-commits at lists.jboss.org
Tue Feb 2 11:24:10 EST 2010


Author: pete.muir at jboss.org
Date: 2010-02-02 11:24:09 -0500 (Tue, 02 Feb 2010)
New Revision: 5711

Modified:
   core/trunk/tests/src/test/resources/org/jboss/weld/tests/contexts/errorpage/web.xml
Log:
remove missing servlet

Modified: core/trunk/tests/src/test/resources/org/jboss/weld/tests/contexts/errorpage/web.xml
===================================================================
--- core/trunk/tests/src/test/resources/org/jboss/weld/tests/contexts/errorpage/web.xml	2010-02-02 14:12:21 UTC (rev 5710)
+++ core/trunk/tests/src/test/resources/org/jboss/weld/tests/contexts/errorpage/web.xml	2010-02-02 16:24:09 UTC (rev 5711)
@@ -1,37 +1,30 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <web-app version="2.5" xmlns="http://java.sun.com/xml/ns/javaee"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">
- <display-name>JSR-299 RI Core Tests</display-name>
- <context-param>
-  <param-name>javax.faces.DEFAULT_SUFFIX</param-name>
-  <param-value>.jspx</param-value>
- </context-param>
- <!-- JSF -->
- <servlet>
-  <servlet-name>Faces Servlet</servlet-name>
-  <servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
-  <load-on-startup>1</load-on-startup>
- </servlet>
- <servlet>
-  <servlet-name>Conversation Status Servlet</servlet-name>
-  <servlet-class>org.jboss.jsr299.tck.tests.context.conversation.client.ConversationStatusServlet</servlet-class>
- </servlet>
- <servlet-mapping>
-  <servlet-name>Faces Servlet</servlet-name>
-  <url-pattern>*.jsf</url-pattern>
- </servlet-mapping>
- <servlet-mapping>
-  <servlet-name>Conversation Status Servlet</servlet-name>
-  <url-pattern>/conversation-status</url-pattern>
- </servlet-mapping>
- <session-config>
-  <session-timeout>10</session-timeout>
- </session-config>
- <error-page>
-  <exception-type>java.lang.Exception</exception-type>
-  <location>/error.jspx</location>
- </error-page>
- <login-config>
-  <auth-method>BASIC</auth-method>
- </login-config>
+   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+   xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">
+   <display-name>JSR-299 RI Core Tests</display-name>
+   <context-param>
+      <param-name>javax.faces.DEFAULT_SUFFIX</param-name>
+      <param-value>.jspx</param-value>
+   </context-param>
+   <!-- JSF -->
+   <servlet>
+      <servlet-name>Faces Servlet</servlet-name>
+      <servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
+      <load-on-startup>1</load-on-startup>
+   </servlet>
+   <servlet-mapping>
+      <servlet-name>Faces Servlet</servlet-name>
+      <url-pattern>*.jsf</url-pattern>
+   </servlet-mapping>
+   <session-config>
+      <session-timeout>10</session-timeout>
+   </session-config>
+   <error-page>
+      <exception-type>java.lang.Exception</exception-type>
+      <location>/error.jspx</location>
+   </error-page>
+   <login-config>
+      <auth-method>BASIC</auth-method>
+   </login-config>
 </web-app>



More information about the weld-commits mailing list