Author: ieb
Date: Mon Dec 1 21:35:07 2008
New Revision: 722380
URL: http://svn.apache.org/viewvc?rev=722380&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/branches/0.8.1-x/java/server/src/main/webapp/WEB-INF/web.gadgets.xml
Modified:
incubator/shindig/branches/0.8.1-x/java/server/src/main/webapp/WEB-INF/web.gadgets.xml
URL:
http://svn.apache.org/viewvc/incubator/shindig/branches/0.8.1-x/java/server/src/main/webapp/WEB-INF/web.gadgets.xml?rev=722380&r1=722379&r2=722380&view=diff
==============================================================================
---
incubator/shindig/branches/0.8.1-x/java/server/src/main/webapp/WEB-INF/web.gadgets.xml
(original)
+++
incubator/shindig/branches/0.8.1-x/java/server/src/main/webapp/WEB-INF/web.gadgets.xml
Mon Dec 1 21:35:07 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>