Author: ieb
Date: Mon Dec 1 21:26:54 2008
New Revision: 722376
URL: http://svn.apache.org/viewvc?rev=722376&view=rev
Log:
SHINDIG-719
Patch from Henning Schmiedehausen
Fixes
the current web.gadgets.xml file in java/server/src/main/webapp/WEB-INF does not
comply to the web-2.3.dtd because it contains a listener before the filters.
Thanks
Modified:
incubator/shindig/trunk/java/server/src/main/webapp/WEB-INF/web.gadgets.xml
Modified:
incubator/shindig/trunk/java/server/src/main/webapp/WEB-INF/web.gadgets.xml
URL:
http://svn.apache.org/viewvc/incubator/shindig/trunk/java/server/src/main/webapp/WEB-INF/web.gadgets.xml?rev=722376&r1=722375&r2=722376&view=diff
==============================================================================
--- incubator/shindig/trunk/java/server/src/main/webapp/WEB-INF/web.gadgets.xml
(original)
+++ incubator/shindig/trunk/java/server/src/main/webapp/WEB-INF/web.gadgets.xml
Mon Dec 1 21:26:54 2008
@@ -35,10 +35,6 @@
</param-value>
</context-param>
- <listener>
-
<listener-class>org.apache.shindig.common.servlet.GuiceServletContextListener</listener-class>
- </listener>
-
<filter>
<filter-name>authFilter</filter-name>
<filter-class>org.apache.shindig.auth.AuthenticationServletFilter</filter-class>
@@ -54,6 +50,10 @@
<url-pattern>/gadgets/makeRequest</url-pattern>
</filter-mapping>
+ <listener>
+
<listener-class>org.apache.shindig.common.servlet.GuiceServletContextListener</listener-class>
+ </listener>
+
<!-- Render a Gadget -->
<servlet>
<servlet-name>xml-to-html</servlet-name>