You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@rave.apache.org by mf...@apache.org on 2012/01/06 16:45:17 UTC

svn commit: r1228238 [2/2] - in /incubator/rave/trunk: ./ rave-components/rave-commons/ rave-components/rave-core/src/main/java/org/apache/rave/portal/security/util/ rave-components/rave-core/src/test/java/org/apache/rave/portal/security/impl/ rave-com...

Modified: incubator/rave/trunk/rave-portal-resources/src/main/webapp/WEB-INF/applicationContext-security.xml
URL: http://svn.apache.org/viewvc/incubator/rave/trunk/rave-portal-resources/src/main/webapp/WEB-INF/applicationContext-security.xml?rev=1228238&r1=1228237&r2=1228238&view=diff
==============================================================================
--- incubator/rave/trunk/rave-portal-resources/src/main/webapp/WEB-INF/applicationContext-security.xml (original)
+++ incubator/rave/trunk/rave-portal-resources/src/main/webapp/WEB-INF/applicationContext-security.xml Fri Jan  6 15:45:16 2012
@@ -24,13 +24,15 @@
 <beans xmlns="http://www.springframework.org/schema/beans"
        xmlns:security="http://www.springframework.org/schema/security"
        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
-       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
-                           http://www.springframework.org/schema/security http://www.springframework.org/schema/security/spring-security-3.0.xsd">
+       xsi:schemaLocation="http://www.springframework.org/schema/beans
+          http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
+          http://www.springframework.org/schema/security
+          http://www.springframework.org/schema/security/spring-security-3.1.xsd">
 
+    <security:http pattern="/login.jsp*" security="none"/>
     <security:http auto-config="true" use-expressions="true" disable-url-rewriting="true">
         <security:intercept-url pattern="/newaccount.jsp*" access="permitAll"/>
         <security:intercept-url pattern="/app/newaccount*" access="permitAll"/>
-        <security:intercept-url pattern="/login.jsp*" filters="none"/>
         <security:intercept-url pattern="/css/**" access="permitAll"/>
         <security:intercept-url pattern="/images/**" access="permitAll"/>
         <security:intercept-url pattern="/script/**" access="permitAll"/>

Modified: incubator/rave/trunk/rave-providers/rave-opensocial-provider/pom.xml
URL: http://svn.apache.org/viewvc/incubator/rave/trunk/rave-providers/rave-opensocial-provider/pom.xml?rev=1228238&r1=1228237&r2=1228238&view=diff
==============================================================================
--- incubator/rave/trunk/rave-providers/rave-opensocial-provider/pom.xml (original)
+++ incubator/rave/trunk/rave-providers/rave-opensocial-provider/pom.xml Fri Jan  6 15:45:16 2012
@@ -43,6 +43,10 @@
             <groupId>org.apache.rave</groupId>
             <artifactId>rave-core</artifactId>
         </dependency>
+        <dependency>
+            <groupId>org.springframework</groupId>
+            <artifactId>spring-web</artifactId>
+        </dependency>
         
         <dependency>
             <groupId>org.slf4j</groupId>