You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by bo...@apache.org on 2006/10/15 22:35:47 UTC

svn commit: r464273 - in /myfaces/tobago/trunk/example: security/pom.xml test/pom.xml test/src/main/webapp/WEB-INF/web.xml

Author: bommel
Date: Sun Oct 15 13:35:45 2006
New Revision: 464273

URL: http://svn.apache.org/viewvc?view=rev&rev=464273
Log:
moved fileupload from security to test

Modified:
    myfaces/tobago/trunk/example/security/pom.xml
    myfaces/tobago/trunk/example/test/pom.xml
    myfaces/tobago/trunk/example/test/src/main/webapp/WEB-INF/web.xml

Modified: myfaces/tobago/trunk/example/security/pom.xml
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/example/security/pom.xml?view=diff&rev=464273&r1=464272&r2=464273
==============================================================================
--- myfaces/tobago/trunk/example/security/pom.xml (original)
+++ myfaces/tobago/trunk/example/security/pom.xml Sun Oct 15 13:35:45 2006
@@ -51,11 +51,6 @@
   <dependencies>
     <dependency>
       <groupId>org.apache.myfaces.tobago</groupId>
-      <artifactId>tobago-fileupload</artifactId>
-      <version>${project.version}</version>
-    </dependency>
-    <dependency>
-      <groupId>org.apache.myfaces.tobago</groupId>
       <artifactId>tobago-security</artifactId>
       <version>${project.version}</version>
     </dependency>

Modified: myfaces/tobago/trunk/example/test/pom.xml
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/example/test/pom.xml?view=diff&rev=464273&r1=464272&r2=464273
==============================================================================
--- myfaces/tobago/trunk/example/test/pom.xml (original)
+++ myfaces/tobago/trunk/example/test/pom.xml Sun Oct 15 13:35:45 2006
@@ -56,6 +56,11 @@
   <dependencies>
     <dependency>
       <groupId>org.apache.myfaces.tobago</groupId>
+      <artifactId>tobago-fileupload</artifactId>
+      <version>${project.version}</version>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.myfaces.tobago</groupId>
       <artifactId>tobago-theme-scarborough</artifactId>
       <version>${project.version}</version>
     </dependency>

Modified: myfaces/tobago/trunk/example/test/src/main/webapp/WEB-INF/web.xml
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/example/test/src/main/webapp/WEB-INF/web.xml?view=diff&rev=464273&r1=464272&r2=464273
==============================================================================
--- myfaces/tobago/trunk/example/test/src/main/webapp/WEB-INF/web.xml (original)
+++ myfaces/tobago/trunk/example/test/src/main/webapp/WEB-INF/web.xml Sun Oct 15 13:35:45 2006
@@ -23,15 +23,6 @@
 
   <display-name>Test Tobago Application</display-name>
 
-  <filter>
-    <filter-name>multipartFormdataFilter</filter-name>
-    <filter-class>org.apache.myfaces.tobago.webapp.TobagoMultipartFormdataFilter</filter-class>
-  </filter>
-  <filter-mapping>
-    <filter-name>multipartFormdataFilter</filter-name>
-    <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>
@@ -99,10 +90,5 @@
     <welcome-file-list>
       <welcome-file>index.jsp</welcome-file>
     </welcome-file-list>
-
-  <error-page>
-    <exception-type>java.lang.Throwable</exception-type>
-    <location>/errorPage.jsp</location>
-  </error-page>
 
 </web-app>