You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by lo...@apache.org on 2014/09/03 13:50:17 UTC

svn commit: r1622229 - in /myfaces/tobago/branches/tobago-3.0.x/tobago-example: tobago-example-blank/src/main/webapp/WEB-INF/ tobago-example-demo/src/main/webapp/WEB-INF/ tobago-example-experimental/src/main/webapp/WEB-INF/ tobago-example-sandbox/src/m...

Author: lofwyr
Date: Wed Sep  3 11:50:16 2014
New Revision: 1622229

URL: http://svn.apache.org/r1622229
Log:
cleanup: listener is still in web-fragment.xml

Modified:
    myfaces/tobago/branches/tobago-3.0.x/tobago-example/tobago-example-blank/src/main/webapp/WEB-INF/web.xml
    myfaces/tobago/branches/tobago-3.0.x/tobago-example/tobago-example-demo/src/main/webapp/WEB-INF/web.xml
    myfaces/tobago/branches/tobago-3.0.x/tobago-example/tobago-example-experimental/src/main/webapp/WEB-INF/web.xml
    myfaces/tobago/branches/tobago-3.0.x/tobago-example/tobago-example-sandbox/src/main/webapp/WEB-INF/web.xml
    myfaces/tobago/branches/tobago-3.0.x/tobago-example/tobago-example-security/src/main/webapp/WEB-INF/web.xml

Modified: myfaces/tobago/branches/tobago-3.0.x/tobago-example/tobago-example-blank/src/main/webapp/WEB-INF/web.xml
URL: http://svn.apache.org/viewvc/myfaces/tobago/branches/tobago-3.0.x/tobago-example/tobago-example-blank/src/main/webapp/WEB-INF/web.xml?rev=1622229&r1=1622228&r2=1622229&view=diff
==============================================================================
--- myfaces/tobago/branches/tobago-3.0.x/tobago-example/tobago-example-blank/src/main/webapp/WEB-INF/web.xml (original)
+++ myfaces/tobago/branches/tobago-3.0.x/tobago-example/tobago-example-blank/src/main/webapp/WEB-INF/web.xml Wed Sep  3 11:50:16 2014
@@ -34,11 +34,6 @@
     <url-pattern>/faces/*</url-pattern>
   </filter-mapping>
 
-<!--  workaround (e.g. for Oracle AS 10.1.2.0.0)-->
-  <listener>
-    <listener-class>org.apache.myfaces.tobago.webapp.TobagoServletContextListener</listener-class>
-  </listener>
-
   <!-- servlet -->
   <servlet>
     <servlet-name>FacesServlet</servlet-name>

Modified: myfaces/tobago/branches/tobago-3.0.x/tobago-example/tobago-example-demo/src/main/webapp/WEB-INF/web.xml
URL: http://svn.apache.org/viewvc/myfaces/tobago/branches/tobago-3.0.x/tobago-example/tobago-example-demo/src/main/webapp/WEB-INF/web.xml?rev=1622229&r1=1622228&r2=1622229&view=diff
==============================================================================
--- myfaces/tobago/branches/tobago-3.0.x/tobago-example/tobago-example-demo/src/main/webapp/WEB-INF/web.xml (original)
+++ myfaces/tobago/branches/tobago-3.0.x/tobago-example/tobago-example-demo/src/main/webapp/WEB-INF/web.xml Wed Sep  3 11:50:16 2014
@@ -90,13 +90,6 @@
     <listener-class>org.apache.myfaces.tobago.example.demo.info.ActivitySessionListener</listener-class>
   </listener>
 
-  <!--  workaround (e.g. for Oracle AS 10.1.2.0.0)-->
-  <!--
-  <listener>
-    <listener-class>org.apache.myfaces.tobago.webapp.TobagoServletContextListener</listener-class>
-  </listener>
-  -->
-
   <!-- activate this for some containers -->
   <!--
   <listener>

Modified: myfaces/tobago/branches/tobago-3.0.x/tobago-example/tobago-example-experimental/src/main/webapp/WEB-INF/web.xml
URL: http://svn.apache.org/viewvc/myfaces/tobago/branches/tobago-3.0.x/tobago-example/tobago-example-experimental/src/main/webapp/WEB-INF/web.xml?rev=1622229&r1=1622228&r2=1622229&view=diff
==============================================================================
--- myfaces/tobago/branches/tobago-3.0.x/tobago-example/tobago-example-experimental/src/main/webapp/WEB-INF/web.xml (original)
+++ myfaces/tobago/branches/tobago-3.0.x/tobago-example/tobago-example-experimental/src/main/webapp/WEB-INF/web.xml Wed Sep  3 11:50:16 2014
@@ -47,11 +47,6 @@
     <url-pattern>/faces/myFacesExtensionResource/*</url-pattern>
 </filter-mapping>
 
-<!--  workaround (e.g. for Oracle AS 10.1.2.0.0)-->
-  <listener>
-    <listener-class>org.apache.myfaces.tobago.webapp.TobagoServletContextListener</listener-class>
-  </listener>
-
   <!-- servlet -->
   <servlet>
     <servlet-name>SolarServlet</servlet-name>

Modified: myfaces/tobago/branches/tobago-3.0.x/tobago-example/tobago-example-sandbox/src/main/webapp/WEB-INF/web.xml
URL: http://svn.apache.org/viewvc/myfaces/tobago/branches/tobago-3.0.x/tobago-example/tobago-example-sandbox/src/main/webapp/WEB-INF/web.xml?rev=1622229&r1=1622228&r2=1622229&view=diff
==============================================================================
--- myfaces/tobago/branches/tobago-3.0.x/tobago-example/tobago-example-sandbox/src/main/webapp/WEB-INF/web.xml (original)
+++ myfaces/tobago/branches/tobago-3.0.x/tobago-example/tobago-example-sandbox/src/main/webapp/WEB-INF/web.xml Wed Sep  3 11:50:16 2014
@@ -54,11 +54,6 @@
     <url-pattern>/faces/*</url-pattern>
   </filter-mapping>
 
-<!--  workaround (e.g. for Oracle AS 10.1.2.0.0)-->
-  <listener>
-    <listener-class>org.apache.myfaces.tobago.webapp.TobagoServletContextListener</listener-class>
-  </listener>
-
   <!-- servlet -->
   <servlet>
     <servlet-name>FacesServlet</servlet-name>

Modified: myfaces/tobago/branches/tobago-3.0.x/tobago-example/tobago-example-security/src/main/webapp/WEB-INF/web.xml
URL: http://svn.apache.org/viewvc/myfaces/tobago/branches/tobago-3.0.x/tobago-example/tobago-example-security/src/main/webapp/WEB-INF/web.xml?rev=1622229&r1=1622228&r2=1622229&view=diff
==============================================================================
--- myfaces/tobago/branches/tobago-3.0.x/tobago-example/tobago-example-security/src/main/webapp/WEB-INF/web.xml (original)
+++ myfaces/tobago/branches/tobago-3.0.x/tobago-example/tobago-example-security/src/main/webapp/WEB-INF/web.xml Wed Sep  3 11:50:16 2014
@@ -25,11 +25,6 @@
 
   <display-name>A simple security demo with Tobago</display-name>
 
-  <!--  workaround for a bug in Oracle AS (e.g. 10.1.2.0.0)-->
-  <listener>
-    <listener-class>org.apache.myfaces.tobago.webapp.TobagoServletContextListener</listener-class>
-  </listener>
-
   <!-- servlet -->
 
   <servlet>