You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@wookie.apache.org by sc...@apache.org on 2011/02/24 09:22:33 UTC

svn commit: r1074066 - /incubator/wookie/trunk/WebContent/WEB-INF/web.xml

Author: scottbw
Date: Thu Feb 24 08:22:33 2011
New Revision: 1074066

URL: http://svn.apache.org/viewvc?rev=1074066&view=rev
Log:
Changed the URL pattern for the export servlet in web.xml - Jetty was fine with using an extension pattern, but Tomcat doesn't like it

Modified:
    incubator/wookie/trunk/WebContent/WEB-INF/web.xml

Modified: incubator/wookie/trunk/WebContent/WEB-INF/web.xml
URL: http://svn.apache.org/viewvc/incubator/wookie/trunk/WebContent/WEB-INF/web.xml?rev=1074066&r1=1074065&r2=1074066&view=diff
==============================================================================
--- incubator/wookie/trunk/WebContent/WEB-INF/web.xml (original)
+++ incubator/wookie/trunk/WebContent/WEB-INF/web.xml Thu Feb 24 08:22:33 2011
@@ -137,7 +137,7 @@
 	</servlet-mapping>
 	<servlet-mapping>
  		<servlet-name>default</servlet-name>
- 		<url-pattern>/export/*.wgt</url-pattern>
+ 		<url-pattern>/export/*</url-pattern>
  		<param-name>dirAllowed</param-name>
 		<param-value>false</param-value>
 	</servlet-mapping>