[CONF] Confluence Changes in the last 24 hours
This is a daily summary of all recent changes in Confluence. - Updated Spaces: - Apache ActiveMQ CPP (https://cwiki.apache.org/confluence/display/AMQCPP) Pages - Navigation edited by tabish121 (09:30 AM) https://cwiki.apache.org/confluence/display/AMQCPP/Navigation ActiveMQ-CPP 3.2.5 Release edited by tabish121 (09:23 AM) https://cwiki.apache.org/confluence/display/AMQCPP/ActiveMQ-CPP+3.2.5+Release Download edited by tabish121 (09:21 AM) https://cwiki.apache.org/confluence/display/AMQCPP/Download Apache Camel (https://cwiki.apache.org/confluence/display/CAMEL) Pages - Camel 2.7.0 Release edited by davsclaus (10:28 AM) https://cwiki.apache.org/confluence/display/CAMEL/Camel+2.7.0+Release Camel 2.6.0 Release edited by davsclaus (10:22 AM) https://cwiki.apache.org/confluence/display/CAMEL/Camel+2.6.0+Release Hazelcast Component edited by davsclaus (07:53 AM) https://cwiki.apache.org/confluence/display/CAMEL/Hazelcast+Component Component List edited by clausstraube (06:15 AM) https://cwiki.apache.org/confluence/display/CAMEL/Component+List Apache CXF (https://cwiki.apache.org/confluence/display/CXF) Pages - Index edited by dkulp (02:48 PM) https://cwiki.apache.org/confluence/display/CXF/Index Apache CXF 2.3.3 Release Notes created by dkulp (02:47 PM) https://cwiki.apache.org/confluence/display/CXF/Apache+CXF+2.3.3+Release+Notes Download edited by dkulp (02:45 PM) https://cwiki.apache.org/confluence/display/CXF/Download Apache CXF Documentation (https://cwiki.apache.org/confluence/display/CXF20DOC) Pages - Generic Tracing component edited by christian schneider (11:49 AM) https://cwiki.apache.org/confluence/display/CXF20DOC/Generic+Tracing+component Client HTTP Transport (including SSL support) edited by dkulp (11:47 AM) https://cwiki.apache.org/confluence/display/CXF20DOC/Client+HTTP+Transport+%28including+SSL+support%29 Apache Isis (https://cwiki.apache.org/confluence/display/ISIS) Pages - SmokeTest edited by danhaywood (08:38 AM) https://cwiki.apache.org/confluence/display/ISIS/SmokeTest OFBiz (Open For Business) Project Open Wiki (https://cwiki.apache.org/confluence/display/OFBIZ) Pages - Main New Features edited by jacques.le.roux (08:05 AM) https://cwiki.apache.org/confluence/display/OFBIZ/Main+New+Features Apache OpenNLP (https://cwiki.apache.org/confluence/display/OPENNLP) Pages - TestPlan1.5.1 edited by joern (02:50 PM) https://cwiki.apache.org/confluence/display/OPENNLP/TestPlan1.5.1 Apache Shindig (https://cwiki.apache.org/confluence/display/SHINDIG) Pages - Common Container edited by mhermanto (02:22 PM) https://cwiki.apache.org/confluence/display/SHINDIG/Common+Container Apache Shiro (https://cwiki.apache.org/confluence/display/SHIRO) Pages - Java Authentication Guide edited by skipshot4 (06:53 PM) https://cwiki.apache.org/confluence/display/SHIRO/Java+Authentication+Guide Apache Shiro Integration for Grails 1.1.3 released edited by skipshot4 (06:50 PM) https://cwiki.apache.org/confluence/display/SHIRO/2011/02/09/Apache+Shiro+Integration+for+Grails+1.1.3+released Java Authorization Guide with Apache Shiro posted created by skipshot4 (06:38 PM) https://cwiki.apache.org/confluence/display/SHIRO/2011/02/28/Java+Authorization+Guide+with+Apache+Shiro+posted Index edited by skipshot4 (06:37 PM) https://cwiki.apache.org/confluence/display/SHIRO/Index Web Features edited by skipshot4 (10:34 AM) https://cwiki.apache.org/confluence/display/SHIRO/Web+Features Session Management Features edited by skipshot4 (10:34 AM) https://cwiki.apache.org/confluence/display/SHIRO/Session+Management+Features Cryptography Features edited by skipshot4 (10:34 AM) https://cwiki.apache.org/confluence/display/SHIRO/Cryptography+Features Authorization Features edited by skipshot4 (10:34 AM) https://cwiki.apache.org/confluence/display/SHIRO/Authorization+Features Authentication Features edited by skipshot4 (10:34 AM) https://cwiki.apache.org/confluence/display/SHIRO/Authentication+Features Getting Started Block edited by skipshot4 (10:28 AM) https://cwiki.apache.org/confluence/display/SHIRO/Getting+Started+Block Reference edited by skipshot4 (10:19 AM) https://cwiki.apache.org/confluence/displ
svn commit: r1075679 - /struts/struts2/trunk/core/src/main/java/org/apache/struts2/interceptor/TokenInterceptor.java
Author: lukaszlenart Date: Tue Mar 1 06:54:13 2011 New Revision: 1075679 URL: http://svn.apache.org/viewvc?rev=1075679&view=rev Log: Solves WW-3582 - moves in call to handleValidToken() method outside of lock on session object Modified: struts/struts2/trunk/core/src/main/java/org/apache/struts2/interceptor/TokenInterceptor.java Modified: struts/struts2/trunk/core/src/main/java/org/apache/struts2/interceptor/TokenInterceptor.java URL: http://svn.apache.org/viewvc/struts/struts2/trunk/core/src/main/java/org/apache/struts2/interceptor/TokenInterceptor.java?rev=1075679&r1=1075678&r2=1075679&view=diff == --- struts/struts2/trunk/core/src/main/java/org/apache/struts2/interceptor/TokenInterceptor.java (original) +++ struts/struts2/trunk/core/src/main/java/org/apache/struts2/interceptor/TokenInterceptor.java Tue Mar 1 06:54:13 2011 @@ -140,9 +140,8 @@ public class TokenInterceptor extends Me if (!TokenHelper.validToken()) { return handleInvalidToken(invocation); } - -return handleValidToken(invocation); } +return handleValidToken(invocation); } /**
svn commit: r1075681 - /struts/struts2/trunk/core/src/main/java/org/apache/struts2/interceptor/TokenInterceptor.java
Author: lukaszlenart Date: Tue Mar 1 06:56:27 2011 New Revision: 1075681 URL: http://svn.apache.org/viewvc?rev=1075681&view=rev Log: Solves WW-3582 - moves call to handleValidToken() method outside of lock on session object Modified: struts/struts2/trunk/core/src/main/java/org/apache/struts2/interceptor/TokenInterceptor.java Modified: struts/struts2/trunk/core/src/main/java/org/apache/struts2/interceptor/TokenInterceptor.java URL: http://svn.apache.org/viewvc/struts/struts2/trunk/core/src/main/java/org/apache/struts2/interceptor/TokenInterceptor.java?rev=1075681&r1=1075680&r2=1075681&view=diff == --- struts/struts2/trunk/core/src/main/java/org/apache/struts2/interceptor/TokenInterceptor.java (original) +++ struts/struts2/trunk/core/src/main/java/org/apache/struts2/interceptor/TokenInterceptor.java Tue Mar 1 06:56:27 2011 @@ -21,16 +21,12 @@ package org.apache.struts2.interceptor; -import java.util.Map; - -import org.apache.struts2.util.TokenHelper; -import org.apache.struts2.ServletActionContext; - -import com.opensymphony.xwork2.ActionContext; import com.opensymphony.xwork2.ActionInvocation; import com.opensymphony.xwork2.ValidationAware; import com.opensymphony.xwork2.interceptor.MethodFilterInterceptor; import com.opensymphony.xwork2.util.LocalizedTextUtil; +import org.apache.struts2.ServletActionContext; +import org.apache.struts2.util.TokenHelper; import javax.servlet.http.HttpSession;